/* ============================================================================
   SOTEI Digital Marketing — Global stylesheet
   Palette derived from /UI/ reference + brand logo (monochrome) + asset accents.
   ============================================================================ */

:root {
    --sotei-bg:        #FFFDF9;   /* warm off-white */
    --sotei-bg-soft:   #FAF6F0;
    --sotei-card:      #FFFFFF;
    --sotei-ink:       #0F172A;   /* slate-900 */
    --sotei-ink-soft:  #475569;
    --sotei-muted:     #94A3B8;
    --sotei-border:    #ECE7DD;

    --sotei-primary:    #F26B4A;  /* coral accent (from Cashly ref) */
    --sotei-primary-2:  #E45A38;
    --sotei-primary-soft:#FFE9E0;
    --sotei-navy:       #0B2447;  /* deep navy from hero image blazer */
    --sotei-gold:       #F4B860;
    --sotei-success:    #10B981;
    --sotei-warning:    #F59E0B;
    --sotei-danger:     #EF4444;

    --radius-sm:  8px;
    --radius:     14px;
    --radius-lg:  22px;
    --shadow-sm:  0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
    --shadow:     0 8px 24px -8px rgba(15,23,42,.12), 0 2px 6px rgba(15,23,42,.06);
    --shadow-lg:  0 20px 50px -12px rgba(15,23,42,.18);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Plus Jakarta Sans', var(--font-sans);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--font-sans);
    color: var(--sotei-ink);
    background: var(--sotei-bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--sotei-primary); text-decoration: none; }
a:hover { color: var(--sotei-primary-2); }

h1,h2,h3,h4 { font-family: var(--font-display); letter-spacing: -.02em; line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p  { color: var(--sotei-ink-soft); margin: 0 0 1em; }

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

/* ---------- Buttons --------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: .95rem;
    cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s, color .2s;
    border: 1px solid transparent; text-decoration: none; line-height: 1;
}
.btn-primary { background: var(--sotei-primary); color: #fff; box-shadow: 0 8px 22px -8px rgba(242,107,74,.6); }
.btn-primary:hover { background: var(--sotei-primary-2); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--sotei-ink); border-color: var(--sotei-border); }
.btn-ghost:hover { background: var(--sotei-bg-soft); }
.btn-dark { background: var(--sotei-ink); color: #fff; }
.btn-dark:hover { background: #1e293b; color:#fff; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }

/* ---------- Header / Nav ---------------------------------------------------- */
.site-nav {
    position: sticky; top: 0; z-index: 60;
    background: rgba(255,253,249,.85); backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--sotei-border);
}
.site-nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--sotei-ink); font-weight: 800; letter-spacing: -.01em; }
.brand img { height: 36px; width: auto; }
.brand span { font-family: var(--font-display); font-size: 1.05rem; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--sotei-ink-soft); font-weight: 500; font-size: .95rem; }
.nav-links a:hover { color: var(--sotei-ink); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; background: none; border: 0; font-size: 22px; cursor: pointer; }
@media (max-width: 880px) {
    .nav-links { display: none; }
    .nav-toggle { display: inline-block; }
    .nav-cta .btn-ghost { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
        position: absolute; top: 100%; left: 0; right: 0; background: #fff;
        padding: 20px 24px; border-bottom: 1px solid var(--sotei-border);
        box-shadow: var(--shadow);
    }
}

/* ---------- Hero ------------------------------------------------------------ */
.hero {
    position: relative; padding: 80px 0 60px; overflow: hidden;
    background:
      radial-gradient(1100px 600px at -10% -10%, rgba(242,107,74,.10), transparent 60%),
      radial-gradient(900px 500px at 110% 30%, rgba(11,36,71,.08), transparent 60%);
}
#hero-three { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .65; }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 999px;
    background: var(--sotei-primary-soft); color: var(--sotei-primary-2);
    font-weight: 600; font-size: .82rem; margin-bottom: 18px;
}
.hero__eyebrow::before { content: ""; width: 8px; height: 8px; background: var(--sotei-primary); border-radius: 50%; }
.hero h1 .hl { color: var(--sotei-primary); }
.hero__lead { font-size: 1.1rem; max-width: 540px; }
.hero__cta { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero__art { position: relative; }
.hero__art img.lady { width: 100%; max-width: 480px; margin-left: auto; filter: drop-shadow(0 30px 50px rgba(11,36,71,.18)); }
.hero__floatcard {
    position: absolute; background: #fff; border-radius: var(--radius); padding: 14px 16px;
    box-shadow: var(--shadow-lg); display: flex; gap: 10px; align-items: center; font-size: .85rem;
}
.hero__floatcard .dot { width: 10px; height: 10px; border-radius: 50%; }
.hero__floatcard.fc1 { top: 6%;  left: -8%;  }
.hero__floatcard.fc2 { bottom: 12%; right: -4%; }
@media (max-width: 880px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__art { order: -1; }
    .hero__floatcard { display: none; }
}

/* ---------- Logo banner ----------------------------------------------------- */
.trust-strip { padding: 24px 0; border-top: 1px solid var(--sotei-border); border-bottom: 1px solid var(--sotei-border); background: #fff; }
.trust-strip__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px 50px; opacity: .7; }
.trust-strip__row span { font-weight: 600; color: var(--sotei-ink-soft); font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- Features -------------------------------------------------------- */
.section-heading { text-align: center; margin-bottom: 56px; }
.section-heading h2 .hl { color: var(--sotei-primary); }
.section-heading p { max-width: 640px; margin: 0 auto; }

.features { background: var(--sotei-bg-soft); }
.features__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.feature {
    background: var(--sotei-card); border: 1px solid var(--sotei-border); border-radius: var(--radius-lg);
    padding: 26px; transition: transform .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__ico {
    width: 48px; height: 48px; border-radius: 14px; background: var(--sotei-primary-soft);
    color: var(--sotei-primary); display: grid; place-items: center; margin-bottom: 16px;
    font-size: 22px;
}
.feature h3 { margin-bottom: 6px; font-size: 1.1rem; }
.feature p { font-size: .92rem; margin: 0; }

/* ---------- Stats ----------------------------------------------------------- */
.stats { background: var(--sotei-ink); color: #fff; }
.stats h2 { color: #fff; }
.stats p { color: rgba(255,255,255,.7); }
.stats__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.stat { text-align: center; padding: 28px 12px; border-radius: var(--radius-lg); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.stat__num { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--sotei-primary); }
.stat__lbl { font-size: .85rem; color: rgba(255,255,255,.75); letter-spacing: .05em; text-transform: uppercase; }
@media (max-width: 780px) { .stats__row { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Module sections ------------------------------------------------- */
.modules .module { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 60px 0; }
.modules .module.reverse { grid-template-columns: 1fr 1fr; }
.modules .module.reverse .module__art { order: 2; }
.modules .module__art img { width: 100%; max-width: 460px; margin: 0 auto; }
.modules .module h2 .hl { color: var(--sotei-primary); }
.modules .module ul { padding: 0; list-style: none; margin: 18px 0 24px; }
.modules .module ul li { display: flex; gap: 10px; padding: 6px 0; font-weight: 500; color: var(--sotei-ink); }
.modules .module ul li::before { content: "✓"; color: var(--sotei-primary); font-weight: 700; }
@media (max-width: 880px) {
    .modules .module, .modules .module.reverse { grid-template-columns: 1fr; }
    .modules .module.reverse .module__art { order: -1; }
}

/* ---------- Testimonials ---------------------------------------------------- */
.testimonials { background: var(--sotei-bg-soft); }
.testimonials__track { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.testimonial { background: #fff; padding: 26px; border-radius: var(--radius-lg); border: 1px solid var(--sotei-border); }
.testimonial p { font-size: .98rem; color: var(--sotei-ink); }
.testimonial__who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial__who img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.testimonial__who strong { display: block; }
.testimonial__who small { color: var(--sotei-muted); }

/* ---------- Pricing --------------------------------------------------------- */
.pricing__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.price-card {
    background: #fff; border: 1px solid var(--sotei-border); border-radius: var(--radius-lg);
    padding: 28px; display: flex; flex-direction: column; position: relative; transition: transform .2s, box-shadow .2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.featured { border-color: var(--sotei-primary); box-shadow: 0 20px 50px -16px rgba(242,107,74,.35); }
.price-card.featured::after {
    content: "Most Popular"; position: absolute; top: -12px; right: 24px;
    background: var(--sotei-primary); color: #fff; padding: 4px 12px; font-size: .75rem; border-radius: 999px; font-weight: 700;
}
.price-card h3 { font-size: 1.1rem; }
.price-card .amt { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; margin: 8px 0; color: var(--sotei-ink); }
.price-card .amt small { font-size: .9rem; color: var(--sotei-muted); font-weight: 500; }
.price-card ul { list-style: none; padding: 0; margin: 16px 0 24px; }
.price-card ul li { padding: 6px 0; color: var(--sotei-ink-soft); font-size: .92rem; display: flex; gap: 8px; }
.price-card ul li::before { content: "✓"; color: var(--sotei-primary); font-weight: 700; }
.price-card .btn { margin-top: auto; }

/* ---------- CTA strip ------------------------------------------------------- */
.cta-strip { padding: 80px 0; background: linear-gradient(135deg, var(--sotei-primary), #ff8a6b); color: #fff; text-align: center; }
.cta-strip h2 { color: #fff; }
.cta-strip p { color: rgba(255,255,255,.9); max-width: 600px; margin: 0 auto 24px; }
.cta-strip .btn-dark { background: var(--sotei-ink); }
.cta-strip .btn-dark:hover { background: #000; }

/* ---------- Footer ---------------------------------------------------------- */
.site-footer { background: var(--sotei-ink); color: #cbd5e1; padding: 64px 0 24px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid ul li { padding: 4px 0; font-size: .92rem; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; color: #94a3b8; flex-wrap: wrap; gap: 12px; }
.footer-brand img { height: 44px; filter: invert(1) brightness(2); margin-bottom: 14px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Auth pages ------------------------------------------------------ */
.auth {
    min-height: 100vh; display: grid; grid-template-columns: 1.05fr 1fr;
    background: var(--sotei-bg);
}
.auth__panel { padding: 48px; display: flex; flex-direction: column; justify-content: center; max-width: 520px; margin: 0 auto; width: 100%; }
.auth__panel h1 { font-size: 2rem; }
.auth__art {
    background: linear-gradient(160deg, #0B2447, #1e3a8a);
    color: #fff; position: relative; overflow: hidden;
    display: flex; align-items: flex-end; justify-content: center; padding: 60px;
}
.auth__art::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(600px 400px at 20% 20%, rgba(242,107,74,.35), transparent 60%);
}
.auth__art img { position: relative; z-index: 1; max-height: 80vh; }
.auth__art .badge {
    position: absolute; top: 40px; left: 40px; z-index: 2;
    background: rgba(255,255,255,.12); padding: 10px 18px; border-radius: 999px;
    backdrop-filter: blur(10px); color: #fff; font-weight: 600; font-size: .9rem;
}
.auth form .field { margin-bottom: 16px; }
.auth label { display: block; font-size: .85rem; font-weight: 600; color: var(--sotei-ink); margin-bottom: 6px; }
.auth input[type="text"], .auth input[type="tel"], .auth input[type="password"], .auth input[type="email"] {
    width: 100%; padding: 14px 16px; border: 1px solid var(--sotei-border); border-radius: var(--radius);
    font-size: 1rem; background: #fff; color: var(--sotei-ink);
    transition: border-color .15s, box-shadow .15s;
}
.auth input:focus { outline: 0; border-color: var(--sotei-primary); box-shadow: 0 0 0 4px rgba(242,107,74,.15); }
.auth .field small.help { color: var(--sotei-muted); font-size: .8rem; }
.auth .btn { width: 100%; margin-top: 6px; }
.auth .alt-line { text-align: center; margin-top: 18px; color: var(--sotei-ink-soft); font-size: .92rem; }
.auth .alert { padding: 12px 14px; border-radius: var(--radius); margin-bottom: 16px; font-size: .9rem; }
.auth .alert-error  { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.auth .alert-success{ background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
@media (max-width: 880px) { .auth { grid-template-columns: 1fr; } .auth__art { display: none; } }

/* ---------- Utilities ------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-4 { margin-top: 1rem; } .mt-8 { margin-top: 2rem; }
.no-scroll { overflow: hidden; }
