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

:root {
    --plum-deep: #2D0A2E;
    --plum: #4A1942;
    --plum-mid: #6B2158;
    --plum-light: #8B2E72;
    --plum-pale: #F3E5F5;
    --amber: #F5A623;
    --amber-light: #FFD080;
    --amber-dark: #D4891A;
    --cream: #FFFAF5;
    --white: #FFFFFF;
    --dark: #1A0A1C;
    --gray-100: #F7F3F9;
    --gray-200: #EDE5F0;
    --gray-300: #D4C8DC;
    --gray-600: #6B5E74;
    --gray-800: #3D3045;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(74, 25, 66, 0.08);
    --shadow-md: 0 8px 30px rgba(74, 25, 66, 0.12);
    --shadow-lg: 0 20px 60px rgba(74, 25, 66, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

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

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

/* ===== GEOMETRIC BACKGROUND ===== */
.geometric-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    opacity: 0.04;
}

.geo-circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--amber);
    top: -200px;
    right: -150px;
}

.geo-circle-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--plum);
    bottom: 20%;
    left: -100px;
}

.geo-rect-1 {
    width: 200px;
    height: 200px;
    background: var(--plum);
    top: 40%;
    right: 5%;
    transform: rotate(45deg);
}

.geo-rect-2 {
    width: 120px;
    height: 300px;
    background: var(--amber);
    top: 60%;
    left: 3%;
    transform: rotate(-15deg);
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid var(--plum-light);
    top: 75%;
    right: 15%;
    opacity: 0.03;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 250, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 25, 66, 0.08);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--amber);
    background: var(--plum);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    letter-spacing: -0.02em;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--plum);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.logo-text span {
    color: var(--gray-600);
    font-weight: 400;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-menu a {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-800);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}

.nav-menu a:hover {
    color: var(--plum);
    background: var(--plum-pale);
}

.header-cta {
    display: none;
}

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--plum);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.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;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-primary:hover {
    background: var(--plum-mid);
    box-shadow: 0 8px 30px rgba(74, 25, 66, 0.4);
}

.btn-cta {
    background: var(--amber);
    color: var(--plum-deep);
    font-size: 0.85rem;
    padding: 10px 20px;
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.4);
}

.btn-cta:hover {
    background: var(--amber-light);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.5);
}

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

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

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

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 18px 28px;
}

/* ===== HERO ===== */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 60%, var(--plum-mid) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 62%, 0 85%);
    z-index: -1;
}

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

.hero-content {
    color: var(--white);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber);
    margin-bottom: 24px;
}

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

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

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-headline .text-amber {
    color: var(--amber);
}

.hero-headline .hero-accent {
    color: var(--gray-300);
    font-weight: 400;
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin-bottom: 36px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    backdrop-filter: blur(10px);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

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

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 20px;
    flex-shrink: 0;
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
}

.hero-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 600/750;
    position: relative;
}

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

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 10, 46, 0.4) 0%, transparent 40%);
    border-radius: var(--radius-xl);
}

.hero-image-accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
    z-index: 2;
}

.hero-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accent-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--plum);
    box-shadow: var(--shadow-sm);
}

.hero-amber-block {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--amber);
    border-radius: var(--radius-lg);
    transform: rotate(12deg);
    z-index: -1;
    opacity: 0.6;
}

/* ===== SECTION COMMON ===== */
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber-dark);
    background: rgba(245, 166, 35, 0.15);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--plum-deep);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 560px;
}

.text-amber {
    color: var(--amber-dark);
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0 0;
    position: relative;
    z-index: 1;
}

.services .container {
    margin-bottom: 60px;
}

.section-header {
    margin-bottom: 56px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--plum);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

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

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

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

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--plum-deep);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--plum);
    transition: gap 0.2s, color 0.2s;
}

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

.services-accent-bar {
    display: flex;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 24px;
}

.accent-stripe {
    flex: 1;
}

.accent-stripe.amber { background: var(--amber); }
.accent-stripe.plum { background: var(--plum); }

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

.why-us::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--plum);
    opacity: 0.3;
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--amber);
    opacity: 0.08;
}

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

.why-content .section-tag {
    background: rgba(245, 166, 35, 0.2);
    color: var(--amber);
}

.why-content .section-title {
    color: var(--white);
}

.why-content .section-sub {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(245, 166, 35, 0.12);
    border: 1px solid rgba(245, 166, 35, 0.25);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
}

.why-item h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.why-item p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
}

.why-visual {
    position: relative;
}

.why-image-stack {
    position: relative;
}

.why-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.why-img-float {
    position: absolute;
    bottom: -40px;
    right: -20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--plum-deep);
    z-index: 2;
}

.why-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.float-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--white);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.float-badge-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--plum);
    line-height: 1;
}

.float-badge-label {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.why-amber-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--amber);
    border-radius: var(--radius-md);
    transform: rotate(20deg);
    z-index: -1;
    opacity: 0.5;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: var(--gray-100);
}

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

.about-visual {
    position: relative;
}

.about-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--amber);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.4;
}

.about-visual img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.about-content .section-tag {
    margin-bottom: 16px;
}

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

.about-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.value-tag {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    color: var(--plum);
    transition: background 0.2s, color 0.2s;
}

.value-tag:hover {
    background: var(--plum);
    color: var(--white);
    border-color: var(--plum);
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.contact-info .section-tag {
    margin-bottom: 16px;
}

.contact-info .section-title {
    margin-bottom: 16px;
}

.contact-info .section-sub {
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

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

.contact-item strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--plum-deep);
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-item a {
    color: var(--plum);
    font-weight: 500;
    transition: color 0.2s;
}

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

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plum-deep);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

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

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-800);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-800);
    background: var(--cream);
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--plum);
    box-shadow: 0 0 0 4px rgba(74, 25, 66, 0.1);
}

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

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

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: #E8F5E9;
    border: 1px solid #A5D6A7;
    border-radius: var(--radius-sm);
    color: #2E7D32;
    font-weight: 500;
}

.form-success svg {
    color: #4CAF50;
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--plum-deep);
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--plum), var(--amber), var(--plum));
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-mark {
    background: var(--amber);
    color: var(--plum-deep);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand .logo-text span {
    color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber);
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s, padding-left 0.2s;
}

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

.footer-contact p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
}

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

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        gap: 0;
    }

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

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        gap: 4px;
    }

    .header-cta {
        display: inline-flex;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 100px;
    }

    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
        align-items: stretch;
    }

    .hero-visual {
        position: relative;
    }

    .hero-image-accent {
        left: -60px;
        bottom: -40px;
    }

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

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

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

    .contact-form-wrap {
        padding: 48px 40px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-headline {
        font-size: clamp(2.8rem, 5vw, 4.5rem);
    }
}

@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: rgba(255, 250, 245, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px 24px;
        gap: 4px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
        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-menu a {
        padding: 14px 16px;
        font-size: 1rem;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero::before {
        clip-path: polygon(0 0, 100% 0, 100% 55%, 0 72%);
    }

    .hero-image-accent {
        left: -10px;
        bottom: -20px;
    }

    .hero-amber-block {
        width: 80px;
        height: 80px;
        top: -10px;
        right: -10px;
    }

    .why-img-float {
        right: 0;
        bottom: -30px;
    }

    .about-shape {
        top: -12px;
        left: -12px;
    }
}
