*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.08);
    --radius: 12px;
    --radius-sm: 8px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--slate-800);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--teal-600);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 100;
    font-size: 14px;
}
.skip-link:focus {
    top: 16px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 18px;
    color: var(--slate-900);
    letter-spacing: -0.02em;
}
.logo-icon {
    color: var(--teal-600);
}
.logo-text .accent {
    color: var(--teal-600);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-menu a {
    font-size: 14px;
    font-weight: 400;
    color: var(--slate-600);
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    position: relative;
}
.nav-menu a:not(.nav-cta):hover {
    color: var(--teal-600);
}
.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--teal-600);
    transition: width 0.25s ease;
}
.nav-menu a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--teal-600);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.15s ease;
}
.nav-cta:hover {
    background: var(--teal-700);
    transform: translateY(-1px);
}
.nav-cta::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--slate-700);
    position: relative;
    transition: background 0.2s ease;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--slate-700);
    left: 0;
    transition: transform 0.3s ease;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ─── Hero ─── */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--slate-50) 0%, var(--white) 50%, var(--teal-50) 100%);
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--teal-600);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.tag-line {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--teal-600);
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(36px, 4.5vw, 62px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--slate-900);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.accent-italic {
    font-style: italic;
    color: var(--teal-600);
}

.hero-sub {
    font-size: 17px;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 100px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}
.btn-primary {
    background: var(--teal-600);
    color: var(--white);
    border-color: var(--teal-600);
}
.btn-primary:hover {
    background: var(--teal-700);
    border-color: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.25);
}
.btn-ghost {
    background: transparent;
    color: var(--slate-700);
    border-color: var(--slate-300);
}
.btn-ghost:hover {
    border-color: var(--teal-600);
    color: var(--teal-600);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--teal-600);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}
.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Image */
.hero-image-wrap {
    position: relative;
}
.hero-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 5/6;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-100);
    z-index: 2;
}
.stat-card--1 {
    bottom: 60px;
    left: -40px;
}
.stat-card--2 {
    top: 40px;
    right: -30px;
}
.stat-card--3 {
    bottom: -10px;
    right: 20px;
}
.stat-number {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 500;
    color: var(--teal-600);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-suffix {
    font-size: 22px;
}
.stat-label {
    font-size: 13px;
    color: var(--slate-500);
    font-weight: 400;
}

/* ─── Section Shared ─── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .tag-line {
    margin: 0 auto 16px;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 500;
    color: var(--slate-900);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-sub {
    font-size: 17px;
    color: var(--slate-500);
    max-width: 520px;
    margin: 0 auto;
}

/* ─── Services ─── */
.services {
    padding: 100px 0;
    background: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    padding: 36px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--slate-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--teal-600);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    border-color: var(--teal-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--teal-50);
    color: var(--teal-600);
    margin-bottom: 20px;
    transition: background 0.2s ease;
}
.service-card:hover .service-icon {
    background: var(--teal-600);
    color: var(--white);
}
.service-title {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    color: var(--slate-900);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.service-desc {
    font-size: 15px;
    color: var(--slate-500);
    line-height: 1.7;
}

/* ─── About ─── */
.about {
    padding: 100px 0;
    background: var(--slate-50);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
}
.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 7/8;
    position: relative;
    z-index: 1;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--teal-200);
    border-radius: var(--radius);
    z-index: 0;
}
.about-content .tag-line {
    margin-bottom: 16px;
}
.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}
.about-body {
    font-size: 16px;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}
.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-700);
}
.badge svg {
    color: var(--teal-600);
    flex-shrink: 0;
}

/* ─── Process ─── */
.process {
    padding: 100px 0;
    background: var(--white);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.step {
    position: relative;
}
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -16px;
    width: 32px;
    height: 1px;
    background: var(--slate-300);
}
.step-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 500;
    color: var(--teal-100);
    line-height: 1;
    margin-bottom: 16px;
}
.step-title {
    font-size: 17px;
    font-weight: 500;
    color: var(--slate-900);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.step-desc {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.7;
}

/* ─── Testimonials ─── */
.testimonials {
    padding: 100px 0;
    background: var(--slate-900);
    color: var(--white);
}
.testimonials .section-title {
    color: var(--white);
}
.testimonials .section-sub {
    color: var(--slate-400);
}
.testimonials .tag-line {
    background: var(--teal-400);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}
.quote-mark {
    color: var(--teal-500);
    margin-bottom: 20px;
    opacity: 0.6;
}
.testimonial-text {
    font-size: 15px;
    color: var(--slate-300);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.author-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
}
.author-location {
    font-size: 13px;
    color: var(--slate-500);
}

/* ─── CTA ─── */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-700) 100%);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}
.cta::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.cta-content {
    flex: 1;
}
.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}
.cta-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 460px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ─── Contact ─── */
.contact {
    padding: 100px 0;
    background: var(--slate-50);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info .tag-line {
    margin-bottom: 16px;
}
.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}
.contact-sub {
    font-size: 16px;
    color: var(--slate-500);
    margin-bottom: 40px;
    line-height: 1.7;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.contact-item:hover {
    transform: translateX(4px);
}
.contact-item svg {
    color: var(--teal-600);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}
.contact-value {
    display: block;
    font-size: 16px;
    color: var(--slate-800);
    font-weight: 400;
}
.contact-item:hover .contact-value {
    color: var(--teal-600);
}

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-100);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--slate-700);
    letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--slate-900);
    background: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-400);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-success {
    text-align: center;
    padding: 48px 24px;
}
.form-success svg {
    color: var(--teal-600);
    margin-bottom: 16px;
}
.form-success h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--slate-900);
    margin-bottom: 8px;
}
.form-success p {
    font-size: 15px;
    color: var(--slate-500);
}

/* ─── Footer ─── */
.site-footer {
    background: var(--slate-900);
    color: var(--slate-400);
    padding: 64px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}
.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: var(--slate-500);
    max-width: 280px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 14px;
    color: var(--slate-400);
    transition: color 0.2s ease;
}
.footer-links a:hover {
    color: var(--teal-400);
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-contact a {
    font-size: 14px;
    color: var(--slate-400);
    transition: color 0.2s ease;
}
.footer-contact a:hover {
    color: var(--teal-400);
}
.footer-contact span {
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
}
.footer-bottom p {
    font-size: 13px;
    color: var(--slate-600);
    text-align: center;
}

/* ─── Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.6s ease forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.2s; }
.fade-up:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-image-wrap {
        max-width: 480px;
        margin: 0 auto;
    }
    .stat-card--1 { left: 0; }
    .stat-card--2 { right: 0; }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-content .section-title {
        text-align: center;
    }
    .about-content .tag-line {
        margin: 0 auto 16px;
    }
    .about-content .section-header {
        text-align: center;
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .step:not(:last-child)::after {
        display: none;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-actions {
        justify-content: center;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-info .section-title {
        text-align: center;
    }
    .contact-info .tag-line {
        margin: 0 auto 16px;
    }
    .contact-sub {
        text-align: center;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--slate-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-toggle {
        display: block;
    }
    .hero {
        padding: 120px 0 80px;
    }
    .hero-headline {
        font-size: clamp(32px, 8vw, 48px);
    }
    .stat-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    .hero-image-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .hero-image {
        grid-column: 1 / -1;
        aspect-ratio: 4/3;
    }
    .stat-card--1 { grid-column: 1; }
    .stat-card--2 { grid-column: 2; }
    .stat-card--3 { grid-column: 1 / -1; }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .about-image-wrap {
        max-width: 400px;
        margin: 0 auto;
    }
    .about-accent {
        display: none;
    }
    .about-badges {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .cta-actions .btn {
        justify-content: center;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrap {
        padding: 24px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        justify-content: center;
    }
}
