/* ========================================
   CSS Variables
   ======================================== */
:root {
    --primary: #2D8F7B;
    --primary-dark: #237A69;
    --primary-light: #3DBAA3;
    --primary-pale: #E6F5F1;
    --primary-subtle: #F0FAF7;
    --secondary: #E8826B;
    --secondary-dark: #D4694F;
    --secondary-pale: #FFF0EB;
    --bg: #FAFAF8;
    --bg-alt: #F5F3EF;
    --card: #FFFFFF;
    --text: #2D3436;
    --text-secondary: #555F63;
    --text-muted: #8E969A;
    --border: #E8E6E2;
    --border-light: #F0EEEA;
    --shadow-sm: 0 2px 8px rgba(45, 56, 58, 0.05);
    --shadow: 0 4px 24px rgba(45, 56, 58, 0.07);
    --shadow-lg: 0 12px 48px rgba(45, 56, 58, 0.1);
    --shadow-xl: 0 20px 60px rgba(45, 56, 58, 0.12);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease;
}

a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

ul, ol {
    list-style: none;
}

input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
}

/* ========================================
   Layout
   ======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   Top Accent Bar
   ======================================== */
.top-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--secondary), var(--primary-light), var(--primary));
    background-size: 300% 100%;
    animation: gradientSlide 8s ease infinite;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

/* ========================================
   Animations
   ======================================== */
@keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1.5deg); }
}

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

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(45, 143, 123, 0.35); }
    50% { box-shadow: 0 0 0 12px rgba(45, 143, 123, 0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

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

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 4px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 248, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(232, 230, 226, 0.5);
    animation: fadeInUp 0.6s ease both;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    line-height: 1.2;
}

.logo-text small {
    font-weight: 400;
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 2px;
}

.menu-toggle {
    display: none;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10;
    padding: 4px;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

.nav a {
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.25s ease;
    position: relative;
}

.nav a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav a:not(.nav-cta):hover { color: var(--primary); }
.nav a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13.5px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(45, 143, 123, 0.3);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 16px rgba(45, 143, 123, 0.25);
    animation: pulse 3s ease infinite;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(45, 143, 123, 0.35);
    animation: none;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
    border: 1.5px solid var(--border);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: white;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-full { width: 100%; }

/* ========================================
   Hero
   ======================================== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(165deg, #F5FBF9 0%, var(--bg) 40%, #FFF8F5 100%);
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(45, 143, 123, 0.08), transparent 70%);
    top: -200px; right: -100px;
    animation: float 10s ease-in-out infinite;
}

.hero-blob-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232, 130, 107, 0.07), transparent 70%);
    bottom: -100px; left: -50px;
    animation: floatReverse 8s ease-in-out infinite;
}

.hero-blob-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(45, 143, 123, 0.05), transparent 70%);
    top: 50%; left: 30%;
    animation: floatSlow 12s ease-in-out infinite;
}

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

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-pale);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
    letter-spacing: 0.3px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.2s both;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 520px;
    animation: fadeInUp 0.6s ease 0.35s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.5s both;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 520px;
    animation: scaleIn 0.8s ease 0.4s both;
}

.hero-image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: float 8s ease-in-out infinite;
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(45, 143, 123, 0.12) 100%);
    pointer-events: none;
}

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

.hero-floating-card {
    position: absolute;
    background: white;
    border-radius: var(--radius);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.hero-floating-card svg { flex-shrink: 0; }

.hero-floating-card-1 {
    bottom: 40px; left: -24px;
    color: var(--primary);
    animation: floatSlow 7s ease-in-out infinite;
}

.hero-floating-card-2 {
    top: 30px; right: -20px;
    color: var(--secondary);
    animation: floatReverse 9s ease-in-out infinite 1s;
}

.hero-dot {
    position: absolute;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--primary);
}

.hero-dot-1 {
    top: 10px; left: 10px;
    opacity: 0.3;
    animation: dotPulse 3s ease-in-out infinite;
}

.hero-dot-2 {
    bottom: 10px; right: 10px;
    width: 8px; height: 8px;
    background: var(--secondary);
    opacity: 0.4;
    animation: dotPulse 3s ease-in-out infinite 1.5s;
}

/* ========================================
   Stats Bar
   ======================================== */
.stats-bar {
    background: var(--card);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 16px;
    text-align: center;
    border-right: 1px solid var(--border-light);
    transition: background 0.3s ease;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--primary-subtle); }

.stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.2px;
}

/* ========================================
   Section Shared
   ======================================== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--primary-pale);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 12.5px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   About
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--bg);
}

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

.about-images {
    position: relative;
}

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

.about-img-main img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-main:hover img { transform: scale(1.04); }

.about-img-secondary {
    position: absolute;
    bottom: -30px; right: -30px;
    width: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid white;
}

.about-img-secondary img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-secondary:hover img { transform: scale(1.06); }

.about-badge-float {
    position: absolute;
    top: -16px; right: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 16px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: float 7s ease-in-out infinite;
}

.about-badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    opacity: 0.85;
    margin-top: 2px;
}

.about-content .section-tag { text-align: left; }
.about-content h2 { text-align: left; margin-bottom: 20px; }

.about-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text);
}

.about-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: var(--primary-pale);
    color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========================================
   Image Band
   ======================================== */
.image-band {
    padding: 20px 0;
    background: var(--bg-alt);
    overflow: hidden;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.image-band-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.image-band-track img {
    height: 140px;
    width: 280px;
    object-fit: cover;
    border-radius: var(--radius);
    opacity: 0.6;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.image-band-track img:hover { opacity: 1; }

/* ========================================
   Services
   ======================================== */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--primary-subtle) 50%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.services-blob {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 130, 107, 0.05), transparent 70%);
    filter: blur(60px);
    bottom: -150px; right: -100px;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

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

.service-card:hover::after { opacity: 1; }

.service-img-wrap {
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img { transform: scale(1.06); }

.service-body {
    padding: 24px 22px 28px;
}

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

.service-icon-alt {
    background: var(--secondary-pale);
    color: var(--secondary);
}

.service-card:hover .service-icon { transform: scale(1.08); }

.service-card h3 {
    font-family: var(--font-display);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ========================================
   Benefits
   ======================================== */
.benefits {
    padding: 100px 0;
    background: linear-gradient(160deg, #F5FBF9 0%, #FFF8F5 50%, #F5FBF9 100%);
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.35s ease;
}

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

.benefit-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: var(--primary-pale);
    color: var(--primary);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.benefit-icon-alt {
    background: var(--secondary-pale);
    color: var(--secondary);
}

.benefit-card:hover .benefit-icon-wrap { transform: rotate(-6deg) scale(1.08); }

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Benefits Image */
.benefits-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.benefits-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.benefits-image:hover img { transform: scale(1.03); }

.benefits-image-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefits-image-badge-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.benefits-image-badge-txt {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

/* ========================================
   Process
   ======================================== */
.process {
    padding: 100px 0;
    background: var(--bg);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 12.5%; right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--primary-pale), var(--secondary-pale), var(--border));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.process-step:hover .process-step-img {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.process-step-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.process-step:hover .process-step-img img { transform: scale(1.06); }

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.process-step:hover .step-number {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-color: transparent;
    transform: scale(1.12);
    box-shadow: 0 4px 20px rgba(45, 143, 123, 0.3);
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 240px;
    margin: 0 auto;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--primary-subtle) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-blob {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 143, 123, 0.06), transparent 70%);
    filter: blur(60px);
    top: -100px; left: -100px;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

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

.testimonial-stars {
    color: var(--secondary);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.testimonial-card blockquote {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border-light);
    transition: border-color 0.3s ease;
}

.testimonial-card:hover .author-avatar { border-color: var(--primary-pale); }

.author-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.author-info span {
    font-size: 12.5px;
    color: var(--text-muted);
}

/* ========================================
   Contact
   ======================================== */
.contact {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(30px) brightness(0.35);
    transform: scale(1.1);
}

.contact-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(250, 250, 248, 0.92), rgba(250, 250, 248, 0.95));
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group { margin-bottom: 16px; }
.form-row .form-group { margin-bottom: 0; }

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-input::placeholder { color: var(--text-muted); }

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-pale);
    background: white;
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238E969A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-primary { margin-top: 8px; animation: none; }
.contact-form .btn-primary:hover { animation: none; }

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.95);
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: var(--primary-pale);
    color: var(--primary);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-info-icon-alt {
    background: var(--secondary-pale);
    color: var(--secondary);
}

.contact-info-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-info-card a { color: var(--primary); }
.contact-info-card a:hover { color: var(--primary-dark); }

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 64px;
}

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

.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-mark { background: linear-gradient(135deg, var(--primary-light), var(--primary)); }
.footer-logo .logo-text { color: white; }
.footer-logo .logo-text small { color: rgba(255, 255, 255, 0.5); }

.footer-about {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.25s ease;
}

.footer-nav a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

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

.footer-contact a { color: rgba(255, 255, 255, 0.5); }
.footer-contact a:hover { color: var(--primary-light); }

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

.footer-bottom-inner { text-align: center; }

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

/* ========================================
   Vendor Page — Hero
   ======================================== */
.vendor-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(165deg, #F5FBF9 0%, var(--bg) 40%, #FFF8F5 100%);
    overflow: hidden;
    text-align: center;
}

.vendor-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.vendor-hero .hero-badge {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.vendor-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.2s both;
    letter-spacing: -0.02em;
}

.vendor-hero .hero-desc {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease 0.35s both;
}

.vendor-hero .hero-actions {
    justify-content: center;
    animation: fadeInUp 0.6s ease 0.5s both;
}

/* ========================================
   Vendor Page — Benefits
   ======================================== */
.vendor-support {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--primary-subtle) 50%, var(--bg) 100%);
    position: relative;
}

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

.vendor-benefit-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.vendor-benefit-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.vendor-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.vendor-benefit-card:hover::after {
    opacity: 1;
}

.vendor-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    background: var(--primary-pale);
    color: var(--primary);
    border-radius: 14px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.vendor-benefit-icon-alt {
    background: var(--secondary-pale);
    color: var(--secondary);
}

.vendor-benefit-card:hover .vendor-benefit-icon {
    transform: rotate(-6deg) scale(1.08);
}

.vendor-benefit-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.vendor-benefit-card p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Vendor Page — Onboarding
   ======================================== */
.vendor-onboarding {
    padding: 100px 0;
    background: var(--bg);
}

/* ========================================
   Vendor Page — Application Form
   ======================================== */
.vendor-application {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.vendor-application .container {
    position: relative;
    z-index: 1;
}

.vendor-form-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 36px;
    align-items: start;
}

.vendor-form {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.vendor-form-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
}

.vendor-form-section:last-of-type {
    margin-bottom: 28px;
    padding-bottom: 0;
    border-bottom: none;
}

.vendor-form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.vendor-form-section-title svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.vendor-form .required {
    color: var(--secondary);
    font-weight: 700;
}

.vendor-form .btn-primary {
    animation: none;
    font-size: 16px;
    padding: 16px 30px;
    gap: 10px;
}

.vendor-form .btn-primary:hover {
    animation: none;
}

/* Vendor Sidebar */
.vendor-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
}

.vendor-sidebar-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    color: white;
    margin-top: 8px;
}

.vendor-sidebar-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin-bottom: 16px;
}

.vendor-sidebar-cta h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.vendor-sidebar-cta p {
    font-size: 14px;
    line-height: 1.65;
    opacity: 0.85;
    margin-bottom: 20px;
}

.vendor-sidebar-cta .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    animation: none;
    font-size: 14px;
    padding: 12px 24px;
}

.vendor-sidebar-cta .btn-primary:hover {
    background: var(--primary-pale);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    animation: none;
}

/* Active nav link */
.nav a.active {
    color: var(--primary);
}

.nav a.active::after {
    width: 100%;
}

/* ========================================
   Responsive — Tablet
   ======================================== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }

    .hero-visual { max-width: 440px; margin: 0 auto; }
    .hero-image-frame img { height: 360px; }

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

    .benefits-inner { grid-template-columns: 1fr; gap: 48px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-image { max-width: 500px; margin: 0 auto; }
    .benefits-image img { height: 380px; }

    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-grid::before { display: none; }

    .about-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-images { max-width: 480px; margin: 0 auto; }
    .about-content .section-tag,
    .about-content h2 { text-align: center; }
    .about-text { text-align: center; }
    .about-features { align-items: center; }
    .about-img-main img { height: 380px; }

    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-inner { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }

    /* Vendor Page */
    .vendor-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .vendor-form-wrapper { grid-template-columns: 1fr; }
    .vendor-form-sidebar { position: static; }
}

/* ========================================
   Responsive — Mobile
   ======================================== */
@media (max-width: 768px) {
    .menu-btn { display: flex; }

    .nav {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 8px;
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 5;
    }

    .nav a:not(.nav-cta) { font-size: 16px; padding: 10px 0; width: 100%; }
    .nav-cta { margin-top: 16px; text-align: center; width: 100%; padding: 12px 24px; }

    .menu-toggle:checked ~ .nav { right: 0; }
    .menu-toggle:checked + .menu-btn span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .menu-toggle:checked + .menu-btn span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .menu-toggle:checked + .menu-btn span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero { padding: 130px 0 70px; }
    .hero h1 { font-size: 2rem; }
    .hero-desc { font-size: 15px; }
    .hero-visual { max-width: 100%; }
    .hero-image-frame img { height: 300px; }
    .hero-floating-card { display: none; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-number { font-size: 26px; }

    .about-img-main img { height: 300px; }
    .about-img-secondary { width: 160px; right: -10px; bottom: -20px; }
    .about-img-secondary img { height: 130px; }

    .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .service-img { height: 180px; }

    .benefits-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .benefits-image img { height: 300px; }

    .process-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; gap: 32px; }
    .process-step-img img { height: 180px; }
    .process-step p { max-width: 100%; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-grid .testimonial-card:last-child { max-width: 100%; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 24px; }

    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand { text-align: center; }
    .footer-about { max-width: 100%; }
    .footer-logo { justify-content: center; }

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

    .about, .services, .benefits, .process, .testimonials, .contact { padding: 72px 0; }
    .image-band { padding: 16px 0; }
    .image-band-track img { height: 100px; width: 200px; }

    /* Vendor Page */
    .vendor-hero { padding: 130px 0 70px; }
    .vendor-hero h1 { font-size: 2rem; }
    .vendor-support, .vendor-onboarding, .vendor-application { padding: 72px 0; }
    .vendor-benefits-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .vendor-form { padding: 28px 24px; }
    .vendor-sidebar-cta { padding: 24px 20px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero h1 { font-size: 1.75rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { text-align: center; }
    .logo-text { font-size: 13px; }
    .logo-text small { display: block; font-size: 11px; margin-left: 0; }
    .stat-item { padding: 24px 12px; }
    .about-img-main img { height: 240px; }
    .about-badge-float { top: -10px; right: 10px; padding: 12px 16px; }
    .about-badge-number { font-size: 22px; }
    .service-img { height: 160px; }
    .benefit-card { padding: 24px 20px; }
    .testimonial-card { padding: 24px 20px; }
    .contact-form { padding: 24px 20px; }

    /* Vendor Page */
    .vendor-hero h1 { font-size: 1.75rem; }
    .vendor-form { padding: 24px 18px; }
    .vendor-benefit-card { padding: 24px 20px; }
}

/* ========================================
   Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}