/* =====================================================
   Big Engage Marketing — Main Stylesheet
   ===================================================== */

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

:root {
    --navy:       #0d1b2a;
    --navy-mid:   #162236;
    --blue:       #F2BF05;
    --blue-light: #f5ca1e;
    --blue-pale:  #fefce8;
    --blue-border:#fde047;
    --link:       #2563eb;
    --gray-50:    #f8fafc;
    --gray-100:   #f1f5f9;
    --gray-200:   #e2e8f0;
    --gray-300:   #cbd5e1;
    --gray-400:   #94a3b8;
    --gray-500:   #64748b;
    --gray-600:   #475569;
    --gray-800:   #1e293b;
    --white:      #ffffff;
    --green:      #16a34a;
    --radius:     12px;
    --radius-lg:  20px;
    --shadow:     0 1px 3px rgba(0,0,0,.07), 0 4px 16px rgba(0,0,0,.06);
    --shadow-lg:  0 8px 40px rgba(0,0,0,.12);
    --transition: 0.22s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 14px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 10px;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--blue);
    color: #000;
    border-color: var(--blue);
}

.btn-primary:hover {
    background: var(--blue-light);
    border-color: var(--blue-light);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(242, 191, 5, .4);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-1px);
}

/* =====================================================
   SECTION HELPERS
   ===================================================== */

.section-tag {
    display: inline-block;
    background: var(--blue);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid transparent;
    margin-bottom: 18px;
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.18;
    letter-spacing: -.02em;
}

.section-header p {
    color: var(--gray-600);
    font-size: 17px;
    line-height: 1.7;
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* =====================================================
   NAVIGATION
   ===================================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    transition: box-shadow var(--transition);
}

.nav.scrolled {
    box-shadow: 0 2px 24px rgba(0, 0, 0, .5);
}

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

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

.nav-logo-text {
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    white-space: nowrap;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--blue);
    color: var(--white);
    font-weight: 800;
    font-size: 13px;
    border-radius: 8px;
    letter-spacing: -.03em;
    flex-shrink: 0;
}

.logo-text {
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
}

.nav-logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 34px;
    width: auto;
    display: block;
}

.footer-logo-text {
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
}

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

.nav-links a:not(.btn) {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    transition: color var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.2s;
}

/* =====================================================
   HERO
   ===================================================== */

.hero {
    padding: 140px 0 96px;
    background: linear-gradient(150deg, #fefce8 0%, #f9fafb 40%, #ffffff 70%);
    overflow: hidden;
}

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

.hero-badge {
    display: inline-block;
    background: var(--blue);
    color: #000;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid transparent;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -.025em;
}

.hero-content p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.75;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

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

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

.stat-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -.02em;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-400);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--gray-200);
}

/* Hero Card */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,.04);
    width: 100%;
    max-width: 380px;
    animation: floatCard 5s ease-in-out infinite;
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 22px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red    { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green  { background: #22c55e; }

.card-title {
    margin-left: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-400);
}

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

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

.card-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.card-stat-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.02em;
}

.card-stat-change {
    font-size: 12px;
    font-weight: 700;
}

.card-stat-change.up {
    color: var(--green);
}

.card-chart {
    background: var(--gray-50);
    border-radius: 10px;
    padding: 16px 16px 12px;
    margin-bottom: 18px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 72px;
}

.bar {
    flex: 1;
    background: var(--blue-pale);
    border-radius: 4px 4px 0 0;
    transition: background var(--transition);
}

.bar.active {
    background: var(--blue);
}

.card-feeds {
    display: flex;
    gap: 8px;
}

.feed-badge {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 6px;
}

.feed-bing   { background: #dbeafe; color: #1d4ed8; }
.feed-yahoo  { background: #f3e8ff; color: #7c3aed; }
.feed-google { background: #fee2e2; color: #dc2626; }

/* =====================================================
   SERVICES
   ===================================================== */

.services {
    padding: 104px 0;
    background: var(--gray-50);
}

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

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

.service-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 32px rgba(37, 99, 235, .1);
    transform: translateY(-3px);
}

.service-card.featured {
    border-color: var(--blue);
    background: linear-gradient(140deg, var(--blue-pale) 0%, var(--white) 60%);
}

.service-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--blue);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--blue);
    transition: background var(--transition);
}

.service-card:hover .service-icon {
    background: var(--blue);
    color: #000;
}

.service-icon svg {
    width: 22px;
    height: 22px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

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

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.service-features li {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 800;
    font-size: 12px;
}

/* =====================================================
   ABOUT
   ===================================================== */

.about {
    padding: 104px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
}

.about-content h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.18;
    margin-bottom: 24px;
    letter-spacing: -.02em;
}

.about-content p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.78;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--gray-200);
}

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

.value-icon {
    width: 36px;
    height: 36px;
    background: var(--blue-pale);
    color: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.value strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.value p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.55;
}

/* Timeline */
.about-timeline {
    padding-left: 8px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    padding-bottom: 28px;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 24px;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 2.5px solid var(--gray-300);
    flex-shrink: 0;
    margin-top: 3px;
    position: relative;
    z-index: 1;
    transition: border-color var(--transition), background var(--transition);
}

.timeline-item.visible .timeline-dot {
    border-color: var(--blue);
    background: var(--blue);
}

.timeline-content {
    padding-top: 0;
}

.timeline-year {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
    margin: 0;
}

/* =====================================================
   TEAM
   ===================================================== */

.team {
    padding: 104px 0;
    background: var(--gray-50);
}

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

.team-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 16px 24px;
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.team-card:hover {
    border-color: var(--blue);
    box-shadow: 0 6px 24px rgba(37, 99, 235, .1);
    transform: translateY(-3px);
}

.team-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: .02em;
}

.av-1  { background: linear-gradient(135deg, #2563eb, #7c3aed); }
.av-2  { background: linear-gradient(135deg, #0891b2, #2563eb); }
.av-3  { background: linear-gradient(135deg, #059669, #0891b2); }
.av-4  { background: linear-gradient(135deg, #d97706, #dc2626); }
.av-5  { background: linear-gradient(135deg, #7c3aed, #db2777); }
.av-6  { background: linear-gradient(135deg, #dc2626, #d97706); }
.av-7  { background: linear-gradient(135deg, #0891b2, #059669); }
.av-8  { background: linear-gradient(135deg, #db2777, #7c3aed); }
.av-9  { background: linear-gradient(135deg, #2563eb, #0891b2); }
.av-10 { background: linear-gradient(135deg, #059669, #2563eb); }

.team-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.team-role {
    display: block;
    font-size: 12px;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.team-location {
    display: block;
    font-size: 11px;
    color: var(--gray-400);
    font-weight: 500;
}

/* =====================================================
   CONTACT
   ===================================================== */

.contact {
    padding: 104px 0;
    background: var(--white);
}

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

.contact-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.18;
    letter-spacing: -.02em;
}

.contact-content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.78;
    margin-bottom: 36px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.55;
}

.contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--link);
    margin-top: 1px;
}

.contact-item a {
    color: var(--link);
    transition: color var(--transition);
}

.contact-item a:hover {
    color: var(--blue-light);
    text-decoration: underline;
}

.contact-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.trust-item strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
}

.trust-item span {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .07em;
}

/* Form */
.contact-form-wrap {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
}

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

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

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--link);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

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

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray-400);
    margin-top: -4px;
}

/* Form success state */
.form-success {
    text-align: center;
    padding: 48px 24px;
}

.success-icon {
    width: 56px;
    height: 56px;
    background: #dcfce7;
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.form-success h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.form-success p {
    font-size: 15px;
    color: var(--gray-600);
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: #000;
    color: rgba(255, 255, 255, .65);
    padding: 72px 0 32px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-brand .logo-mark {
    background: rgba(255, 255, 255, .12);
}

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

.footer-brand p {
    font-size: 14px;
    line-height: 1.65;
}

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

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

.footer-col strong {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    transition: color var(--transition);
}

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

.footer-bottom {
    text-align: center;
    font-size: 13px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

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

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

    .about-grid,
    .contact-grid,
    .footer-inner {
        gap: 56px;
    }
}

@media (max-width: 900px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #000;
        border-bottom: 1px solid rgba(255,255,255,.1);
        padding: 24px 24px 28px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        box-shadow: 0 8px 32px rgba(0,0,0,.4);
    }

    .nav-links.open {
        display: flex;
    }

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

    .nav-toggle {
        display: flex;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

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

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

    .hero {
        padding: 120px 0 80px;
    }

    .services,
    .about,
    .team,
    .contact {
        padding: 80px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 28px;
    }
}

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

    .hero-stats {
        gap: 16px;
    }

    .stat-value {
        font-size: 22px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

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

/* =====================================================
   DROPDOWN NAV
   ===================================================== */

.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    transition: color var(--transition);
    white-space: nowrap;
}

.nav-dropdown-btn:hover,
.nav-dropdown.open .nav-dropdown-btn {
    color: var(--white);
}

.caret {
    font-size: 10px;
    transition: transform var(--transition);
    display: inline-block;
}

.nav-dropdown.open .caret {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .6);
    padding: 8px;
    min-width: 230px;
    z-index: 200;
}

.nav-dropdown.open .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    border-radius: 6px;
    transition: background var(--transition), color var(--transition);
}

.nav-dropdown-menu a:hover {
    background: rgba(242, 191, 5, .15);
    color: var(--link);
}

/* =====================================================
   SERVICE LINK
   ===================================================== */

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--link);
    margin-top: 16px;
    transition: gap var(--transition);
}

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

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */

.page-hero {
    padding: 120px 0 72px;
    background: linear-gradient(150deg, #fefce8 0%, #f9fafb 50%, #ffffff 100%);
    text-align: center;
}

.page-hero .container {
    max-width: 760px;
}

.page-hero .section-tag {
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -.025em;
}

.page-hero p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.72;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero .hero-cta {
    justify-content: center;
    margin-bottom: 0;
}

/* =====================================================
   CONTENT SECTIONS (inner pages)
   ===================================================== */

.content-section {
    padding: 80px 0;
}

.content-section.alt {
    background: var(--gray-50);
}

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

.content-grid.wide {
    grid-template-columns: 1.3fr 1fr;
}

.content-body h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.18;
    margin-bottom: 20px;
    letter-spacing: -.02em;
}

.content-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin: 28px 0 10px;
}

.content-body h3:first-child {
    margin-top: 0;
}

.content-body p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.78;
    margin-bottom: 16px;
}

.content-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0;
}

.content-body ul li {
    font-size: 15px;
    color: var(--gray-600);
    padding-left: 22px;
    position: relative;
    line-height: 1.6;
}

.content-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 800;
    font-size: 13px;
}

/* =====================================================
   EARNINGS BOX
   ===================================================== */

.earnings-box {
    background: var(--blue-pale);
    border: 1px solid var(--blue-border);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin: 24px 0;
}

.earnings-box h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--navy);
    margin-bottom: 14px;
}

.earnings-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.earnings-item {
    font-size: 15px;
    color: var(--gray-800);
    padding: 12px 16px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--blue-border);
    line-height: 1.5;
}

.earnings-item strong {
    color: var(--navy);
    font-weight: 700;
}

/* =====================================================
   STEPS LIST
   ===================================================== */

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

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

.step-num {
    width: 40px;
    height: 40px;
    background: var(--blue);
    color: #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.65;
    margin: 0;
}

/* =====================================================
   WHY WORK WITH US
   ===================================================== */

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

.why-us .section-header h2 {
    color: var(--white);
}

.why-us .section-header p {
    color: rgba(255,255,255,.65);
}

.why-us .section-tag {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.9);
    border-color: rgba(255,255,255,.2);
}

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

.why-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 32px;
    transition: background var(--transition);
}

.why-card:hover {
    background: rgba(255,255,255,.1);
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: rgba(255,255,255,.65);
    line-height: 1.65;
}

/* =====================================================
   CTA BANNER
   ===================================================== */

.cta-banner {
    padding: 80px 0;
    background: var(--blue-pale);
    text-align: center;
    border-top: 1px solid var(--blue-border);
    border-bottom: 1px solid var(--blue-border);
}

.cta-banner h2 {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

.cta-banner p {
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 28px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.cta-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 32px;
    margin-bottom: 32px;
    padding: 0;
}

.cta-list li {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    padding-left: 20px;
    position: relative;
}

.cta-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 800;
}

/* =====================================================
   FAQ
   ===================================================== */

.faq {
    padding: 80px 0;
}

.faq.alt {
    background: var(--gray-50);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question:hover {
    color: var(--blue);
}

.faq-icon {
    font-size: 22px;
    color: var(--blue);
    flex-shrink: 0;
    transition: transform var(--transition);
    font-weight: 300;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.75;
    padding-bottom: 20px;
}

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-item.open .faq-answer {
    display: block;
}

/* =====================================================
   TESTIMONIAL
   ===================================================== */

.testimonial-block {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    position: relative;
    margin-top: 8px;
}

.testimonial-block::before {
    content: '\201C';
    position: absolute;
    top: 4px;
    left: 28px;
    font-size: 72px;
    color: var(--blue);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: .4;
}

.testimonial-block p {
    font-size: 16px;
    color: var(--gray-700, var(--gray-600));
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

/* =====================================================
   PLATFORM CARDS
   ===================================================== */

.platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.platform-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    transition: all var(--transition);
}

.platform-card:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */

.legal-body {
    padding: 64px 0 96px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin: 36px 0 10px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.78;
    margin-bottom: 14px;
}

.legal-content ul, .legal-content ol {
    margin: 0 0 16px 20px;
}

.legal-content li {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 8px;
}

/* =====================================================
   ARTICLE PAGE
   ===================================================== */

.article-body {
    padding: 80px 0;
}

.article-content {
    max-width: 760px;
    margin: 0 auto;
}

.article-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin: 40px 0 14px;
    letter-spacing: -.01em;
}

.article-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin: 28px 0 10px;
}

.article-content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.82;
    margin-bottom: 18px;
}

.article-content ul, .article-content ol {
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
}

.article-content ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.65;
}

.article-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

.article-content ol {
    counter-reset: artlist;
}

.article-content ol li {
    counter-increment: artlist;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.65;
}

.article-content ol li::before {
    content: counter(artlist) '.';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--blue);
}

.article-content blockquote {
    background: var(--blue-pale);
    border-left: 4px solid var(--blue);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 28px 0;
}

.article-content blockquote p {
    margin: 0;
    font-weight: 600;
    color: var(--navy);
    font-style: normal;
}

.article-cta {
    background: var(--blue-pale);
    border: 1px solid var(--blue-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    margin-top: 48px;
}

.article-cta h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.article-cta p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 24px;
}

/* =====================================================
   RESPONSIVE ADDITIONS
   ===================================================== */

@media (max-width: 768px) {
    .content-grid,
    .content-grid.wide {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(255,255,255,.1);
        background: rgba(255,255,255,.06);
        padding: 8px 0 8px 16px;
        border-radius: 8px;
        min-width: 0;
        margin-top: 8px;
    }

    .nav-dropdown-menu a {
        padding: 8px 10px;
        color: rgba(255,255,255,.7);
    }

    .nav-dropdown-menu a:hover {
        background: rgba(255,255,255,.1);
        color: var(--white);
    }

    .page-hero {
        padding: 100px 0 60px;
    }

    .faq .faq-question {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .platform-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-block {
        padding: 28px 24px;
    }
}
