/* =========================================================
   FUTURE DIRECTIONS — MODERN STYLESHEET
   ========================================================= */

:root {
    --primary: #6C63FF;
    --primary-dark: #5A52D5;
    --primary-light: #EEF2FF;
    --accent: #F59E0B;
    --dark: #0F172A;
    --dark-2: #1E293B;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --light: #F8FAFC;
    --border: #E2E8F0;
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 2px 8px rgba(15,23,42,0.06);
    --shadow: 0 8px 30px rgba(15,23,42,0.08);
    --shadow-lg: 0 20px 50px rgba(15,23,42,0.12);
    --shadow-primary: 0 12px 30px rgba(108,99,255,0.35);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============ HEADER ============ */
.site-header {
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.site-logo { height: 46px; width: auto; }
.main-nav { display: flex; gap: 32px; align-items: center; }
.main-nav a {
    color: var(--dark-2);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}
.main-nav a:hover { color: var(--primary); }
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.main-nav a:hover::after { width: 100%; }

/* ============ BUTTONS ============ */
.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(108,99,255,0.25);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}
.btn-primary-sm {
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}
.btn-outline { color: var(--dark-2); font-weight: 600; }
.btn-outline-lg {
    padding: 12px 24px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}
.btn-outline-lg:hover { border-color: var(--primary); color: var(--primary); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ============ HERO ============ */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background: #fff;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}
.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #A5B4FC, transparent);
    top: -150px; right: -100px;
}
.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #FBCFE8, transparent);
    bottom: -150px; left: -100px;
}
.orb-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, #BAE6FD, transparent);
    top: 30%; left: 40%;
}
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15,23,42,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
}
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-2);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.pulse-dot {
    width: 8px; height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16,185,129,0.7);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.7); }
    70% { box-shadow: 0 0 0 12px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
.hero h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
    color: var(--dark);
}
.gradient-text {
    background: linear-gradient(135deg, #6C63FF 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 560px;
    line-height: 1.7;
}
.hero-desc strong { color: var(--dark-2); font-weight: 600; }

/* Hero Search */
.hero-search {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 6px;
    max-width: 600px;
    margin-bottom: 18px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.hero-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(108,99,255,0.1);
}
.search-icon {
    padding: 0 12px;
    font-size: 18px;
    color: var(--gray-light);
}
.hero-search input {
    flex: 1;
    padding: 14px 8px;
    border: none;
    outline: none;
    font-size: 15px;
    background: transparent;
    font-family: inherit;
    color: var(--dark);
}
.hero-search button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}
.hero-search button:hover { background: var(--primary-dark); }

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 40px;
}
.hero-tags span { font-weight: 600; margin-right: 4px; }
.hero-tags a {
    padding: 5px 12px;
    background: var(--light);
    border-radius: 20px;
    color: var(--dark-2);
    font-weight: 500;
    transition: var(--transition);
    font-size: 12.5px;
}
.hero-tags a:hover { background: var(--primary-light); color: var(--primary); }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}
.stat h3 {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
}
.stat p {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Right Mockup */
.hero-right {
    position: relative;
    height: 500px;
}
.hero-mockup {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    position: absolute;
    top: 20px; left: 20px; right: 20px; bottom: 20px;
    transform: perspective(1000px) rotateY(-6deg) rotateX(4deg);
    transition: var(--transition);
}
.hero-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}
.mockup-header {
    background: #F1F5F9;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green { background: #28C840; }
.mockup-url {
    margin-left: 12px;
    background: #fff;
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 11px;
    color: var(--gray);
    flex: 1;
    text-align: center;
}
.mockup-body {
    display: flex;
    height: calc(100% - 41px);
}
.mockup-sidebar {
    width: 30%;
    background: #F8FAFC;
    padding: 20px 14px;
    border-right: 1px solid var(--border);
}
.mock-line {
    height: 8px;
    background: #E2E8F0;
    border-radius: 4px;
    margin-bottom: 14px;
}
.w-70 { width: 70%; }
.w-50 { width: 50%; }
.w-80 { width: 80%; background: var(--primary); opacity: 0.6; }
.w-60 { width: 60%; }
.mockup-main {
    flex: 1;
    padding: 20px;
}
.mock-card-lg {
    height: 120px;
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    border-radius: 12px;
    margin-bottom: 16px;
}
.mock-row { display: flex; gap: 12px; }
.mock-card-sm {
    flex: 1;
    height: 100px;
    background: #F1F5F9;
    border-radius: 12px;
}

/* Floating cards */
.float-card {
    position: absolute;
    background: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}
.float-card strong { display: block; font-size: 14px; color: var(--dark); }
.float-card span { font-size: 12px; color: var(--gray); }
.fc-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.fc-1 { top: 0; left: -10px; animation-delay: 0s; }
.fc-2 { bottom: 40px; right: -20px; animation-delay: 1.5s; }
.fc-3 { top: 45%; left: -30px; animation-delay: 3s; }
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--light);
}
.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}
.trust-inner > p {
    font-size: 13px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.trust-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.trust-tags span {
    background: #fff;
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark-2);
    transition: var(--transition);
}
.trust-tags span:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ============ SECTION HEADINGS ============ */
section { padding: 90px 0; }
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.section-head .eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
}
.section-head h2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--dark);
}
.section-head p {
    color: var(--gray);
    font-size: 16.5px;
    line-height: 1.7;
}
.row-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    max-width: none;
    margin-bottom: 50px;
}
.row-head > div { max-width: 600px; }

/* ============ OFFERINGS GRID ============ */
.offerings { background: var(--light); }
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.offer-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.offer-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 30px rgba(108,99,255,0.12);
}
.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}
.offer-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.offer-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    letter-spacing: -0.01em;
}
.offer-card > p {
    color: var(--gray);
    font-size: 14.5px;
    margin-bottom: 18px;
    line-height: 1.6;
}
.offer-card ul {
    list-style: none;
    margin-bottom: 22px;
}
.offer-card ul li {
    font-size: 13.5px;
    color: var(--dark-2);
    padding: 5px 0 5px 24px;
    position: relative;
    font-weight: 500;
}
.offer-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 800;
    font-size: 13px;
}
.offer-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
    transition: var(--transition);
    display: inline-block;
}
.offer-link:hover { color: var(--primary-dark); transform: translateX(4px); }
.custom-offer {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: #fff;
    border-color: transparent;
}
.custom-offer h3 { color: #fff; }
.custom-offer > p { color: #94A3B8; }
.custom-offer .offer-link { color: #A5B4FC; }

/* ============ FEATURED TEMPLATES ============ */
.template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.template-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.template-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.card-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: var(--light);
}
.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.template-card:hover .card-img-wrap img { transform: scale(1.08); }
.card-cat {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(255,255,255,0.95);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
}
.card-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.9), rgba(15,23,42,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}
.template-card:hover .card-hover-overlay { opacity: 1; }
.btn-hover-demo, .btn-hover-view {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-hover-demo {
    background: var(--primary);
    color: #fff;
}
.btn-hover-demo:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-hover-view {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}
.btn-hover-view:hover { background: #fff; color: var(--dark); }
.card-body { padding: 22px; }
.card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
    letter-spacing: -0.01em;
}
.card-body p {
    font-size: 13.5px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 18px;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}
.btn-mini {
    background: var(--dark);
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-mini:hover { background: var(--primary); }
.empty-featured {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 20px;
    background: var(--light);
    border-radius: var(--radius);
}
.empty-featured p { color: var(--gray); margin-bottom: 20px; }

/* ============ HOW IT WORKS ============ */
.how-it-works { background: var(--light); }
.steps-grid {
    display: flex;
    align-items: stretch;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.step-card {
    flex: 1;
    min-width: 220px;
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.step-num {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    letter-spacing: -0.04em;
}
.step-icon {
    font-size: 32px;
    margin-bottom: 16px;
}
.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    position: relative;
}
.step-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
    position: relative;
}
.step-card p strong { color: var(--primary); }
.step-arrow {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
    opacity: 0.5;
}

/* ============ WHY US ============ */
.why-us { background: #fff; }
.why-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-left .eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 14px;
    text-transform: uppercase;
}
.why-left h2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--dark);
}
.why-desc {
    color: var(--gray);
    font-size: 16.5px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.why-points {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 36px;
}
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-check {
    width: 32px; height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
}
.why-point h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}
.why-point p {
    font-size: 14.5px;
    color: var(--gray);
    line-height: 1.6;
}

.why-visual {
    position: relative;
    height: 480px;
}
.why-blob {
    position: absolute;
    inset: 20px;
    background: linear-gradient(135deg, #EEF2FF, #FCE7F3);
    border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
    animation: morphBlob 12s ease-in-out infinite;
}
@keyframes morphBlob {
    0%,100% { border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%; }
    50% { border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%; }
}
.why-card {
    position: absolute;
    background: #fff;
    padding: 16px 22px;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border);
    animation: float 7s ease-in-out infinite;
}
.why-card strong { display: block; font-size: 15px; color: var(--dark); font-weight: 700; }
.why-card span { font-size: 12.5px; color: var(--gray); }
.why-card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.card-a { top: 8%; left: 5%; animation-delay: 0s; }
.card-b { top: 32%; right: 2%; animation-delay: 1s; }
.card-c { bottom: 28%; left: 0%; animation-delay: 2s; }
.card-d { bottom: 6%; right: 8%; animation-delay: 3s; }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--light); }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.stars {
    color: #F59E0B;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 18px;
}
.testimonial-card > p {
    font-size: 15px;
    color: var(--dark-2);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6C63FF, #EC4899);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}
.testimonial-author strong { display: block; font-size: 14.5px; color: var(--dark); }
.testimonial-author span { font-size: 12.5px; color: var(--gray); }

/* ============ FINAL CTA ============ */
.final-cta { background: #fff; padding-bottom: 100px; }
.cta-box {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: 28px;
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
}
.cta-decoration {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108,99,255,0.4), transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -150px;
    pointer-events: none;
}
.cta-decoration::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236,72,153,0.3), transparent 70%);
    border-radius: 50%;
    bottom: -300px;
    left: -200px;
}
.cta-content { position: relative; z-index: 1; }
.cta-box h2 {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.cta-box p {
    font-size: 17px;
    color: #CBD5E1;
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-white {
    background: #fff;
    color: var(--dark);
    padding: 16px 34px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,255,255,0.25);
}
.btn-ghost {
    padding: 16px 34px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-sm);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--dark);
    color: #CBD5E1;
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
}
.footer-col h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 700;
}
.footer-col p {
    font-size: 14px;
    line-height: 1.75;
    color: #94A3B8;
    margin-bottom: 8px;
}
.footer-col a {
    display: block;
    color: #94A3B8;
    padding: 6px 0;
    font-size: 14px;
    transition: var(--transition);
}
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-col:first-child p { margin-top: 16px; max-width: 340px; }
.footer-bottom {
    border-top: 1px solid #1E293B;
    padding: 24px 0;
    text-align: center;
    font-size: 13.5px;
    color: #64748B;
}

/* ============ ALERTS ============ */
.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 14.5px;
}
.alert-error { background: #FEE2E2; color: #991B1B; }
.alert-success { background: #D1FAE5; color: #065F46; }

/* ============ FORMS (for other pages) ============ */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    transition: 0.2s;
    font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ============ STATUS BADGES (for dashboard) ============ */
.status { padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.status-pending { background: #FEF3C7; color: #92400E; }
.status-confirmed { background: #D1FAE5; color: #065F46; }
.status-negotiation { background: #DBEAFE; color: #1E40AF; }
.status-completed { background: #D1FAE5; color: #065F46; }
.status-cancelled { background: #FEE2E2; color: #991B1B; }

/* ============ MOBILE TOGGLE ============ */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.6rem; }
    .hero-inner { grid-template-columns: 1fr; gap: 50px; }
    .hero-right { height: 420px; max-width: 560px; margin: 0 auto; width: 100%; }
    .offer-grid { grid-template-columns: repeat(2, 1fr); }
    .why-inner { grid-template-columns: 1fr; gap: 50px; }
    .why-visual { height: 420px; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .step-arrow { display: none; }
    .steps-grid { flex-direction: column; }
    .step-card { width: 100%; }
}

@media (max-width: 768px) {
    .container { padding: 0 18px; }
    section { padding: 60px 0; }
    .hero { padding: 50px 0 70px; }
    .hero h1 { font-size: 2rem; }
    .hero-desc { font-size: 15.5px; }
    .hero-search { flex-direction: column; padding: 10px; }
    .hero-search input { width: 100%; text-align: center; padding: 12px; }
    .hero-search button { width: 100%; }
    .search-icon { display: none; }
    .hero-stats { gap: 18px; }
    .stat h3 { font-size: 1.5rem; }
    .section-head h2 { font-size: 1.85rem; }
    .row-head { flex-direction: column; align-items: flex-start; gap: 16px; }
    .offer-grid { grid-template-columns: 1fr; }
    .offer-card { padding: 26px 22px; }
    .why-left h2 { font-size: 1.85rem; }
    .why-visual { height: 340px; }
    .why-card { padding: 12px 16px; }
    .why-card strong { font-size: 13px; }
    .why-card span { font-size: 11px; }
    .cta-box { padding: 50px 26px; border-radius: 20px; }
    .cta-box h2 { font-size: 1.75rem; }
    .cta-box p { font-size: 15px; }
    .btn-white, .btn-ghost { padding: 14px 24px; font-size: 14px; width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .main-nav {
        display: none;
        position: absolute;
        top: 76px; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        gap: 18px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
    }
    .main-nav.open { display: flex; }
    .main-nav a::after { display: none; }
    .mobile-toggle { display: block; }
    .float-card { transform: scale(0.85); }
    .fc-1 { left: -20px; }
    .fc-2 { right: -20px; }
    .fc-3 { display: none; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.7rem; }
    .hero-stats { flex-wrap: wrap; gap: 14px; }
    .stat-divider { display: none; }
    .hero-tags { font-size: 12px; }
    .hero-tags a { font-size: 11.5px; padding: 4px 10px; }
    .trust-tags span { font-size: 12px; padding: 6px 14px; }
    .card-body h3 { font-size: 1rem; }
}