/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --plum: #5B2C6F;
    --plum-deep: #3D1D4A;
    --plum-light: #7D3C98;
    --plum-pale: #F3E8F9;
    --amber: #F59E0B;
    --amber-deep: #D97706;
    --amber-light: #FCD34D;
    --stone-50: #FAFAF9;
    --stone-100: #F5F5F4;
    --stone-200: #E7E5E4;
    --stone-300: #D6D3D1;
    --stone-600: #57534E;
    --stone-700: #44403C;
    --stone-800: #292524;
    --stone-900: #1C1917;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--stone-800);
    background: var(--stone-50);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 249, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out);
}

.nav.scrolled {
    border-bottom-color: var(--stone-200);
    background: rgba(250, 250, 249, 0.95);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--plum);
    letter-spacing: -0.02em;
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--stone-600);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--plum);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--plum);
    background: var(--plum-pale);
    padding: 8px 16px;
    border-radius: 100px;
    transition: background 0.3s ease, transform 0.2s var(--ease-spring);
}

.nav-cta:hover {
    background: var(--plum);
    color: white;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--stone-700);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--stone-50);
    padding: 40px 24px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 400px;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--stone-800);
    padding: 12px 0;
    border-bottom: 1px solid var(--stone-200);
    transition: color 0.3s ease, padding-left 0.3s var(--ease-out);
}

.mobile-menu-link:hover {
    color: var(--plum);
    padding-left: 12px;
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--plum);
    border-bottom: none;
    padding-bottom: 0;
}

.mobile-menu-cta:hover {
    padding-left: 12px;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
    background: linear-gradient(135deg, var(--stone-50) 0%, var(--plum-pale) 50%, var(--stone-100) 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 2px 2px, var(--plum) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-left {
    max-width: 540px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--plum);
    margin-bottom: 24px;
    padding: 8px 16px;
    background: rgba(91, 44, 111, 0.08);
    border-radius: 100px;
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--stone-900);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-headline .serif-italic {
    font-style: italic;
    font-weight: 600;
    color: var(--plum);
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--stone-600);
    margin-bottom: 36px;
    max-width: 460px;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 14px 28px;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--plum);
    color: white;
    box-shadow: 0 4px 20px rgba(91, 44, 111, 0.3);
}

.btn-primary:hover {
    background: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(91, 44, 111, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--stone-800);
    border: 2px solid var(--stone-300);
}

.btn-outline:hover {
    border-color: var(--plum);
    color: var(--plum);
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: var(--plum);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.0625rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plum);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--stone-600);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--stone-300);
}

/* ===== HERO IMAGE STACK ===== */
.hero-right {
    position: relative;
}

.hero-image-stack {
    position: relative;
    height: 600px;
}

.hero-img {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(91, 44, 111, 0.2);
}

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

.hero-img-main {
    width: 380px;
    height: 480px;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero-img-accent {
    width: 260px;
    height: 320px;
    bottom: 0;
    left: 0;
    z-index: 3;
    border: 4px solid white;
}

.hero-badge {
    position: absolute;
    bottom: 180px;
    right: -10px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--plum);
    animation: float-badge 4s ease-in-out infinite;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-badge svg {
    color: var(--amber);
}

/* ===== HERO SCROLL ===== */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--stone-400);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SECTION COMMON ===== */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--plum);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: var(--plum-pale);
    border-radius: 100px;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--amber-light);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--stone-900);
    margin-bottom: 20px;
}

.section-title-light {
    color: white;
}

.section-title .serif-italic {
    font-style: italic;
    font-weight: 600;
}

.section-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--stone-600);
    max-width: 520px;
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--stone-50);
}

.services .section-header {
    margin-bottom: 64px;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid var(--stone-200);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(91, 44, 111, 0.12);
    border-color: transparent;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-pale);
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--plum);
    transition: background 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--plum);
    color: white;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.service-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--stone-600);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--plum);
    transition: gap 0.3s var(--ease-out);
}

.service-link:hover {
    gap: 10px;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: white;
}

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

.about-images {
    position: relative;
    height: 640px;
}

.about-img-main {
    width: 100%;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(91, 44, 111, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: -40px;
    width: 260px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-accent-bar {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--amber), var(--amber-deep));
    border-radius: 20px;
    z-index: -1;
}

.about-content {
    max-width: 480px;
}

.about-title {
    margin-bottom: 24px;
}

.about-body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--stone-600);
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

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

.value-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amber);
    border-radius: 10px;
    color: white;
}

.about-value strong {
    display: block;
    font-size: 1rem;
    color: var(--stone-900);
    margin-bottom: 2px;
}

.value-desc {
    font-size: 0.875rem;
    color: var(--stone-600);
    line-height: 1.5;
}

/* ===== WHY US ===== */
.why-us {
    padding: 120px 0;
    background: var(--plum);
    position: relative;
    overflow: hidden;
}

.why-bg {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
}

.why-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 1;
}

.why-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.why-stat {
    text-align: center;
}

.why-stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 8px;
}

.why-stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.why-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.why-cta-note {
    margin-top: 16px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: var(--stone-50);
}

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

.contact-title {
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--stone-600);
    margin-bottom: 36px;
}

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

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

.detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-pale);
    border-radius: 12px;
    color: var(--plum);
}

.contact-detail strong {
    display: block;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--stone-400);
    margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
    font-size: 1rem;
    color: var(--stone-800);
    font-weight: 500;
}

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

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 40px rgba(91, 44, 111, 0.08);
    border: 1px solid var(--stone-200);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.form-sub {
    font-size: 0.9375rem;
    color: var(--stone-600);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--stone-500);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--stone-800);
    background: var(--stone-50);
    border: 2px solid var(--stone-200);
    border-radius: 12px;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    background: white;
    box-shadow: 0 0 0 4px rgba(91, 44, 111, 0.1);
}

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

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    border-radius: 12px;
    color: #065F46;
    font-weight: 500;
    font-size: 0.9375rem;
    margin-top: 16px;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    color: #10B981;
    min-width: 24px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--stone-900);
    color: white;
    padding: 64px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 260px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease, padding-left 0.3s var(--ease-out);
}

.footer-links a:hover {
    color: var(--amber);
    padding-left: 6px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-aos].aos-visible:nth-child(2) { transition-delay: 0.1s; }
[data-aos].aos-visible:nth-child(3) { transition-delay: 0.2s; }
[data-aos].aos-visible:nth-child(4) { transition-delay: 0.3s; }
[data-aos].aos-visible:nth-child(5) { transition-delay: 0.4s; }
[data-aos].aos-visible:nth-child(6) { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-right {
        display: none;
    }

    .hero-left {
        max-width: 100%;
        text-align: center;
    }

    .hero-sub {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-images {
        height: 480px;
        max-width: 560px;
        margin: 0 auto;
    }

    .about-content {
        max-width: 100%;
    }

    .why-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 80px;
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-scroll {
        display: none;
    }

    .services {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about {
        padding: 80px 0;
    }

    .about-images {
        height: 400px;
    }

    .about-img-main {
        height: 360px;
    }

    .about-img-secondary {
        width: 200px;
        height: 160px;
        right: -20px;
    }

    .about-accent-bar {
        width: 80px;
        height: 80px;
        top: -12px;
        left: -12px;
    }

    .why-us {
        padding: 80px 0;
    }

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

    .contact {
        padding: 80px 0;
    }

    .contact-form-wrap {
        padding: 32px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .why-stats {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
