/* ===== DESIGN VARIABLES ===== */
:root {
    --color-navy: #0f172a;
    --color-navy-light: #1e293b;
    --color-gold: #38bdf8;
    --color-gold-light: #a7f3d0;
    --color-cream: #eef6fb;
    --color-emerald: #14b8a6;
    --color-burgundy: #8b5cf6;
    --color-ink: #151515;
    --color-white: #FFFFFF;
    --glass-light: #ffffff;
    --glass-bright: #ffffff;
    --glass-dark: #0f172a;
    --glass-border: #dbeafe;
    --glass-shadow: 0 18px 54px rgba(15, 23, 42, 0.14);
    
    --font-sans: 'Poppins', sans-serif;
    --font-serif: 'Poppins', sans-serif;
    
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET & GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: #dcecf6;
}

body {
    font-family: var(--font-sans);
    color: var(--color-navy);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #e7f3f8;
    background-image: none;
}

section,
footer {
    position: relative;
}

.about-section,
.services-section,
.why-us-section,
.contact-section {
    isolation: isolate;
}

.about-section,
.services-section,
.why-us-section,
.contact-section,
.footer {
    overflow: hidden;
}

.about-section,
.services-section,
.why-us-section,
.contact-section {
    border-top: 0;
}

.about-section::before,
.services-section::before,
.why-us-section::before,
.contact-section::before,
.footer::before {
    display: none;
}

.about-section::after,
.services-section::after,
.why-us-section::after,
.contact-section::after {
    display: none;
}

.section-subtitle,
.section-title,
.services-header,
.about-shell,
.why-shell,
.why-metrics,
.contact-grid {
    position: relative;
    z-index: 2;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.relative {
    position: relative;
    z-index: 2;
}

/* Typography Utilities */
.section-subtitle {
    display: block;
    color: #0f766e;
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-navy);
    max-width: 860px;
}

.text-center { text-align: center; }
.text-light { color: var(--color-white); }
.text-light-muted { color: rgba(255, 255, 255, 0.8); }
.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn::after {
    display: none;
}

.btn-primary {
    background: var(--color-white);
    color: var(--color-navy);
    box-shadow: var(--glass-shadow);
}

.btn-primary:hover {
    background: #dbeafe;
    transform: translateY(-2px);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
}

.btn-outline {
    background-color: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-navy);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: background-color var(--transition-fast), padding var(--transition-fast);
}

.navbar.scrolled {
    background-color: rgba(15, 23, 42, 0.38);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(calc(100% - 2rem), 1400px);
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
    min-height: 64px;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: rgba(191, 219, 254, 0.96);
    transition: width var(--transition-fast);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.btn-outline-nav {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--color-white);
    color: var(--color-white) !important;
    background-color: transparent;
}

.btn-outline-nav:hover {
    background-color: var(--color-white);
    color: var(--color-navy) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-fast);
}

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: transparent;
    border-bottom: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav a {
    color: var(--color-white);
    font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(calc(100% - 4rem), 1200px);
    max-width: 1200px;
    text-align: left;
    padding: 2.25rem;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: none;
}

.hero-content::before {
    display: none;
}

.hero-content h1 {
    color: var(--color-white);
    font-size: 3.65rem;
    margin-bottom: 1.5rem;
    line-height: 1.04;
    max-width: 820px;
    text-shadow: 0 18px 34px rgba(15, 23, 42, 0.42);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: 0;
    margin-right: 0;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
}

.hero-ctas .btn {
    min-width: 190px;
    border: 2px solid transparent;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.22);
}

.hero-ctas .btn-primary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.hero-ctas .btn-primary:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-navy);
}

.hero-ctas .btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.hero-ctas .btn-outline:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-navy);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    margin-top: 0;
    padding: 4.5rem 0;
    background-color: #f8fafc;
    background-image: url('assets/real-estate-excited-business-man-suit-holding-paper-house-cutout-looking-amazed-camera-buy.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-section::after,
.why-us-section::after,
.contact-section::after {
    display: none;
}

.services-section::before,
.contact-section::before {
    display: none;
}

.services-section::after,
.contact-section::after {
    display: none;
}

.why-us-section::before {
    display: block;
}

.about-shell {
    display: grid;
    grid-template-columns: minmax(0, 760px);
    gap: 1.5rem;
    align-items: center;
}

.about-visual {
    min-height: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 18px 54px rgba(15, 23, 42, 0.14);
}

.about-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
    object-position: center;
}

.about-copy {
    position: relative;
    min-height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 0;
    overflow: visible;
    background: none;
    box-shadow: none;
}

.about-copy .section-subtitle,
.about-copy .section-title,
.about-copy p {
    position: relative;
    z-index: 1;
}

.about-copy .section-subtitle {
    color: #0f766e;
}

.about-copy .section-title {
    color: var(--color-navy);
    max-width: 720px;
    margin-bottom: 1rem;
}

.about-copy p {
    color: #475569;
    max-width: 760px;
    margin-bottom: 1rem;
}

.about-copy .about-lead {
    color: var(--color-navy);
    font-size: 1.08rem;
    font-weight: 600;
}

.about-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.about-stats div {
    min-height: 86px;
    padding: 0.9rem;
    border-radius: 8px;
    background: var(--color-white);
    border: 1px solid #dbeafe;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.about-stats strong {
    display: block;
    color: var(--color-navy);
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 0.45rem;
}

.about-stats span {
    color: #475569;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.35;
}

.about-system {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 0.75rem;
}

.about-system-header {
    padding: 1.35rem;
    border-radius: 8px;
    background: var(--color-navy);
    color: var(--color-white);
    box-shadow: var(--glass-shadow);
}

.about-system-header span {
    display: block;
    margin-bottom: 0.5rem;
    color: #7dd3fc;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.about-system-header strong {
    display: block;
    max-width: 440px;
    font-size: 1.2rem;
    line-height: 1.2;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 0;
}

.about-points div {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0.85rem;
    align-items: center;
    min-height: auto;
    padding: 0.9rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.about-points strong {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: #0369a1;
    background: #dbeafe;
    border: 1px solid var(--glass-border);
    font-size: 0.92rem;
}

.about-points span {
    color: #334155;
    font-size: 0.93rem;
    font-weight: 700;
    line-height: 1.45;
}

.about-workflow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.about-workflow span {
    display: grid;
    min-height: 48px;
    place-items: center;
    padding: 0.65rem;
    border-radius: 8px;
    color: var(--color-navy);
    background: #dbeafe;
    border: 1px solid #bfdbfe;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    margin-top: 0;
    padding: 8rem 0;
    background-color: #0f172a;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.services-section::before {
    display: none;
}

.services-section::after {
    display: none;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    transition: var(--transition-fast);
    overflow: hidden;
    box-shadow: 0 24px 76px rgba(0, 0, 0, 0.18);
}

.service-card::before {
    display: none;
}

.service-card:hover {
    background-color: #f8fafc;
    transform: translateY(-5px);
    border-color: #bfdbfe;
}

.service-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: #0369a1;
    opacity: 1;
    line-height: 1;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--color-navy);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-subtitle {
    color: #0369a1;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    min-height: 2.4em;
}

.service-card p {
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-coverage {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    color: #475569;
    font-size: 0.875rem;
}

.service-coverage strong {
    color: #0f766e;
    display: block;
    margin-bottom: 0.5rem;
}

/* ===== WHY CHOOSE US ===== */
.why-us-section {
    margin-top: 0;
    padding: 7rem 0;
    position: relative;
    background-color: #f8fafc;
    background-image: none;
}

.why-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: stretch;
}

.why-intro {
    padding: 2.5rem;
    border-radius: 8px;
    background: var(--color-navy);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.why-intro .section-subtitle {
    color: #7dd3fc;
}

.why-intro .section-title {
    color: var(--color-white);
    margin-bottom: 1.25rem;
}

.why-intro p {
    max-width: 620px;
    color: #cbd5e1;
    margin-bottom: 0;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.why-list div {
    padding: 1.5rem;
    background: var(--color-white);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    box-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
}

.why-list span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 8px;
    color: #0369a1;
    background: #dbeafe;
    font-weight: 700;
    font-size: 0.85rem;
}

.why-list strong {
    display: block;
    color: var(--color-navy);
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 0.65rem;
}

.why-list p {
    color: #475569;
    font-size: 0.92rem;
    margin-bottom: 0;
}

.why-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.why-metrics div {
    padding: 1.25rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
}

.why-metrics strong {
    display: block;
    color: var(--color-navy);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.why-metrics span {
    color: #475569;
    font-size: 0.9rem;
    font-weight: 700;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    margin-top: 0;
    padding: 8rem 0;
    background-color: var(--color-navy);
    background-image: url('assets/contact_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-direct {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.direct-link {
    display: inline-block;
    color: rgba(191, 219, 254, 0.96);
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.direct-link:hover {
    color: var(--color-white);
}

.contact-form {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    box-shadow: var(--glass-shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    min-height: 48px;
    padding: 0.85rem 1rem;
    border: 2px solid #94a3b8;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: #f8fafc;
    color: var(--color-navy);
    box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.04);
}

.form-group textarea {
    min-height: 132px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0284c7;
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.18);
}

.submit-btn {
    grid-column: span 2;
    width: 100%;
    margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-navy);
    color: var(--color-white);
    margin-top: 0;
    padding: 5rem 0 2rem;
    border-top: 1px solid #334155;
}

.footer-panel {
    display: grid;
    grid-template-columns: minmax(280px, 1.4fr) 0.7fr 0.85fr;
    gap: 2rem;
    align-items: stretch;
    padding-bottom: 3rem;
}

.footer-logo {
    display: inline-block;
    color: var(--color-white);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #cbd5e1;
    margin: 0;
    max-width: 440px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.45rem 0.7rem;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #e0f2fe;
    background: #1e293b;
    font-size: 0.78rem;
    font-weight: 700;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-column h3 {
    margin: 0;
    color: var(--color-white);
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

.footer-column a {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-column a:hover,
.legal-links a:hover {
    color: #7dd3fc;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid #334155;
    border-radius: 8px;
    background: #111827;
}

.footer-cta span {
    color: #7dd3fc;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.footer-cta strong {
    color: var(--color-white);
    font-size: 1.2rem;
    line-height: 1.35;
}

.footer-cta a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--color-navy);
    background: var(--color-white);
    font-weight: 700;
}

.footer-cta a:hover {
    background: #dbeafe;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.875rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #94a3b8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-shell,
    .contact-grid,
    .footer-panel,
    .why-shell {
        grid-template-columns: 1fr;
    }

    .about-section {
        margin-top: 0;
        padding: 4rem 0;
    }

    .services-section,
    .why-us-section,
    .contact-section {
        margin-top: 0;
        padding-top: 6rem;
    }

    .why-metrics {
        grid-template-columns: 1fr;
    }

    .about-copy {
        min-height: auto;
    }

    .about-visual img {
        height: 420px;
        min-height: 0;
        object-position: center 18%;
    }

    .about-system {
        grid-template-rows: auto;
    }

    .hero-content {
        width: min(calc(100% - 2rem), 1200px);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .container,
    .nav-container,
    .hero-content {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .nav-container {
        width: min(calc(100% - 1rem), 1400px);
    }

    .nav-links {
        display: none;
    }

    .about-section,
    .services-section,
    .why-us-section,
    .contact-section {
        background-attachment: scroll;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

    .about-section {
        margin-top: 0;
        padding: 3.5rem 0;
    }

    .services-section,
    .why-us-section,
    .contact-section {
        margin-top: 0;
        padding-top: 5rem;
    }

    .why-list {
        grid-template-columns: 1fr;
    }

    .why-intro {
        padding: 1.5rem;
    }

    .about-shell {
        gap: 1.5rem;
    }

    .about-visual img {
        height: 320px;
    }

    .about-copy,
    .about-system-header,
    .contact-form {
        padding: 1.25rem;
    }

    .about-copy {
        min-height: auto;
        padding: 0;
    }

    .about-copy .section-title {
        font-size: 1.85rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .about-points div {
        grid-template-columns: 48px 1fr;
    }

    .about-points strong {
        width: 40px;
        height: 40px;
    }

    .about-workflow {
        grid-template-columns: 1fr 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: 1;
    }
    
    .submit-btn {
        grid-column: 1;
    }
    
    .footer-panel {
        gap: 2.5rem;
    }

    .footer-column {
        gap: 0.85rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}
