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

:root {
    --plum-deep: #3D1A36;
    --plum-mid: #6B2D5B;
    --plum-light: #9B4D86;
    --plum-pale: #C97BAD;
    --amber-deep: #A07510;
    --amber-mid: #D4A017;
    --amber-light: #E8C04A;
    --amber-pale: #F5D98A;
    --cream: #FAF8F5;
    --white: #FFFFFF;
    --off-white: #F5F3F0;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --shadow-sm: 0 1px 2px rgba(61, 26, 54, 0.04);
    --shadow-md: 0 4px 16px rgba(61, 26, 54, 0.06);
    --shadow-lg: 0 8px 32px rgba(61, 26, 54, 0.08);
    --shadow-xl: 0 16px 48px rgba(61, 26, 54, 0.1);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--gray-800);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

.page-wrapper {
    position: relative;
}

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

/* ─── Typography ─── */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--gray-900);
}

.text-accent {
    color: var(--plum-mid);
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 45, 91, 0.06);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1001;
}

.nav-logo-mark {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--plum-mid), var(--amber-mid));
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav.scrolled .nav-logo-mark {
    color: var(--white);
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.nav.scrolled .nav-logo-text {
    color: var(--gray-900);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav.scrolled .nav-links a {
    color: var(--gray-600);
}

.nav-links a:hover {
    color: var(--white);
}

.nav.scrolled .nav-links a:hover {
    color: var(--plum-mid);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber-mid);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--plum-mid), var(--plum-light));
    padding: 8px 18px;
    border-radius: 100px;
    letter-spacing: 0.06em !important;
    transition: var(--transition) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 45, 91, 0.3);
}

.nav.scrolled .nav-cta {
    color: var(--white) !important;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-line {
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: var(--transition);
    transform-origin: center;
}

.nav.scrolled .nav-toggle-line {
    background: var(--gray-800);
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, var(--plum-deep) 0%, var(--plum-mid) 35%, #8B4580 55%, var(--amber-deep) 80%, var(--amber-mid) 100%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(107, 45, 91, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212, 160, 23, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(155, 77, 134, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 120px 24px 80px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-pale);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5.5vw, 68px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

.hero-accent {
    font-style: italic;
    font-weight: 300;
    color: var(--amber-pale);
}

.hero-sub {
    font-family: var(--font-sans);
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber-mid), transparent);
    margin: 0 auto 48px;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.8s 1s forwards;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-stat-num {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
}

.hero-stat-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeUp 0.8s 1.2s forwards;
    opacity: 0;
}

.hero-scroll svg {
    width: 16px;
    height: 16px;
    animation: scrollBounce 2s infinite;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--plum-mid), var(--plum-light));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(107, 45, 91, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 45, 91, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-full {
    width: 100%;
}

/* ─── Section labels ─── */
.section-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--plum-mid);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--gray-900);
}

/* ─── Services ─── */
.services {
    padding: 120px 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--plum-mid), var(--amber-mid));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--plum-mid);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.service-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.service-link {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--plum-mid);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--plum-deep);
    gap: 10px;
}

.service-arrow {
    transition: var(--transition);
}

/* ─── About ─── */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--plum-mid), var(--amber-mid));
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.15;
}

.about-content {
    padding: 20px 0;
}

.about-body {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-value-icon {
    width: 20px;
    height: 20px;
    color: var(--plum-mid);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-value-icon svg {
    width: 100%;
    height: 100%;
}

.about-value span {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-700);
    line-height: 1.5;
}

/* ─── Approach ─── */
.approach {
    padding: 120px 0;
    background: var(--cream);
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.approach-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--plum-mid);
    margin-bottom: 16px;
}

.approach-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 64px;
    color: var(--gray-900);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: left;
}

.approach-step {
    position: relative;
}

.approach-step-num {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 300;
    color: var(--plum-pale);
    line-height: 1;
    margin-bottom: 16px;
    display: block;
}

.approach-step-title {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.approach-step-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--gray-600);
}

/* ─── CTA Strip ─── */
.cta-strip {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--plum-deep), var(--plum-mid));
}

.cta-strip-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.cta-strip-text {
    font-family: var(--font-serif);
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
}

/* ─── Contact ─── */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 20px;
    height: 20px;
    color: var(--plum-mid);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail-icon svg {
    width: 100%;
    height: 100%;
}

.contact-detail-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 15px;
    color: var(--gray-800);
    text-decoration: none;
    line-height: 1.6;
    transition: var(--transition);
}

.contact-detail-value:hover {
    color: var(--plum-mid);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ─── Contact Form ─── */
.contact-form-wrap {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-600);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--gray-900);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum-mid);
    box-shadow: 0 0 0 3px rgba(107, 45, 91, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

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

.form-privacy {
    font-size: 12px;
    color: var(--gray-500);
    text-align: center;
    line-height: 1.6;
}

/* Form success */
.form-success {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.form-success-icon {
    width: 56px;
    height: 56px;
    color: var(--plum-mid);
    background: rgba(107, 45, 91, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success-icon svg {
    width: 28px;
    height: 28px;
}

.form-success-title {
    font-size: 24px;
    font-weight: 400;
    color: var(--gray-900);
}

.form-success-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 320px;
}

/* ─── Footer ─── */
.footer {
    padding: 80px 0 0;
    background: var(--gray-900);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-mark {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--plum-mid), var(--amber-mid));
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
}

.footer-tagline {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 13px;
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.5;
}

.footer-col a:hover {
    color: var(--amber-mid);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 12px;
    color: var(--gray-600);
}

.footer-legal {
    font-size: 11px;
    color: var(--gray-700);
    max-width: 500px;
    line-height: 1.6;
    text-align: right;
}

/* ─── Animations ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .about-grid {
        gap: 48px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(61, 26, 54, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .nav-links a:hover {
        color: var(--white) !important;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        padding: 100px 24px 80px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .hero-stat-num {
        font-size: 22px;
    }
    
    .services {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrap img {
        height: 400px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .approach {
        padding: 80px 0;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form-wrap {
        padding: 32px 24px;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-legal {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}
