/* ==========================================================================
   Stella Overseas Trading — light premium design system
   ========================================================================== */

:root {
    --ivory: #FAF7F1;
    --ink: #16242C;
    --ink-2: #2E4756;
    --gold: #B98A2F;
    --gold-2: #C9A24B;
    --gold-3: #EED9A4;
    --gold-d: #8A6420;
    --muted: #4A5B64;
    --muted-2: #7A8891;
    --line: rgba(22, 36, 44, 0.08);
    --radius: 22px;
    --shadow-card: 0 30px 60px -20px rgba(22, 36, 44, 0.18), 0 12px 24px -12px rgba(185, 138, 47, 0.18);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: "Exo 2", system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
::selection { background: rgba(185, 138, 47, 0.25); }

.sot-wrap { max-width: 1280px; margin: 0 auto; padding-left: 20px; padding-right: 20px; position: relative; }
@media (min-width: 768px) { .sot-wrap { padding-left: 32px; padding-right: 32px; } }

.font-display, .sot-h1, .sot-h2, .sot-card h3, .dp-head h3, .div-pane h3, .sot-case h3,
.sot-cta h2, .footer-cta h2, .cc-name, .cc-doc-v, .stat-v, .step-n, .city,
.form-card h2, .fp-head h2, .sot-success h2, .fs-t, .geo-head h3 {
    font-family: "Exo 2", system-ui, -apple-system, sans-serif;
}

/* grain texture */
.grain { position: relative; }
.grain::after {
    content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5; z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.grain > * { position: relative; z-index: 1; }

/* glows */
.sot-glow { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.glow-gold-tr { top: -160px; right: -160px; width: 42rem; height: 42rem; background: radial-gradient(circle, rgba(201,162,75,0.20), transparent 65%); }
.glow-ink-l { top: 260px; left: -208px; width: 36rem; height: 36rem; background: radial-gradient(circle, rgba(46,71,86,0.10), transparent 65%); }
.glow-cream-b { bottom: 0; right: 25%; width: 26rem; height: 26rem; background: radial-gradient(circle, rgba(238,217,164,0.35), transparent 70%); }
.glow-gold-f { top: -160px; left: 33%; width: 30rem; height: 30rem; background: radial-gradient(circle, rgba(201,162,75,0.16), transparent 65%); }
.glow-cream-f { bottom: 0; right: -128px; width: 24rem; height: 24rem; background: radial-gradient(circle, rgba(238,217,164,0.10), transparent 65%); }

/* gold gradient text */
.gold-grad {
    background: linear-gradient(105deg, #8a6420 0%, #c9a24b 38%, #eed9a4 52%, #b98a2f 68%, #8a6420 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    font-style: normal;
}

/* reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in, .no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* buttons */
.sot-btn {
    display: inline-flex; align-items: center; gap: 8px; border-radius: 999px;
    padding: 14px 28px; font-size: 14px; font-weight: 600; text-decoration: none;
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s; cursor: pointer; border: none;
}
.sot-btn-dark { background: var(--ink); color: var(--ivory); }
.sot-btn-dark:hover { background: var(--gold-d); color: var(--ivory); }
.sot-btn-gold { background: var(--gold-2); color: var(--ink); }
.sot-btn-gold:hover { background: var(--gold-3); color: var(--ink); }
.sot-btn-ghost { background: rgba(255,255,255,0.7); border: 1px solid rgba(22,36,44,0.15); color: var(--ink); backdrop-filter: blur(8px); }
.sot-btn-ghost:hover { border-color: rgba(185,138,47,0.6); color: var(--gold-d); }
.sot-btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: rgba(250,247,241,0.75); }
.sot-btn-outline:hover { border-color: rgba(201,162,75,0.5); }
.sot-btn-outline.as-text { cursor: default; }
.sot-btn .sot-ic { flex-shrink: 0; }

/* ============================ NAV ============================ */
.sot-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: background 0.5s, box-shadow 0.5s, border-color 0.5s;
    border-bottom: 1px solid transparent;
}
.sot-nav.scrolled, body:not(.home) .sot-nav {
    background: rgba(250, 247, 241, 0.85);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 40px -18px rgba(22, 36, 44, 0.25);
    border-bottom-color: rgba(22, 36, 44, 0.05);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; transition: height 0.5s; }
.sot-nav.scrolled .nav-inner { height: 64px; }
.nav-brand { text-decoration: none; }
.sot-logo { display: inline-flex; align-items: center; gap: 12px; }
.sot-logo-word { display: flex; flex-direction: column; line-height: 1; }
.sot-logo-name { font-family: "Exo 2", system-ui, -apple-system, sans-serif; font-weight: 600; letter-spacing: 0.05em; }
.sot-logo-sub { text-transform: uppercase; font-weight: 500; letter-spacing: 0.32em; }

.nav-links { display: none; align-items: center; gap: 28px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link { font-size: 13px; font-weight: 500; letter-spacing: 0.02em; color: #3D4F59; text-decoration: none; transition: color 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--gold-d); }
.nav-cta { padding: 10px 20px; font-size: 13px; margin-left: 8px; }
.nav-cta.is-current { background: var(--gold-d); }

.nav-burger { display: flex; background: none; border: none; padding: 8px; color: var(--ink); cursor: pointer; }
@media (min-width: 1024px) { .nav-burger { display: none; } }
.nav-burger .ic-close { display: none; }
.nav-burger.open .ic-open { display: none; }
.nav-burger.open .ic-close { display: inline-flex; }
.nav-mobile { display: none; background: rgba(250,247,241,0.97); backdrop-filter: blur(16px); border-top: 1px solid rgba(22,36,44,0.05); padding: 16px 24px; }
.nav-mobile.open { display: flex; flex-direction: column; gap: 4px; }
.nav-mobile a { padding: 10px 0; font-size: 14px; font-weight: 500; color: #3D4F59; text-decoration: none; }
.nav-mobile a.sot-btn { justify-content: center; margin-top: 8px; color: var(--ivory); }

/* ============================ HERO ============================ */
.sot-hero { position: relative; overflow: hidden; background: var(--ivory); }
.sot-hero-grid { display: grid; gap: 56px; align-items: center; padding-top: 130px; padding-bottom: 64px; }
@media (min-width: 1024px) {
    .sot-hero-grid { grid-template-columns: 1.25fr 0.75fr; padding-top: 170px; padding-bottom: 96px; }
}
.sot-chip {
    display: inline-flex; align-items: center; gap: 10px; border-radius: 999px;
    border: 1px solid rgba(185,138,47,0.3); background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px); padding: 8px 16px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-d);
}
.sot-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.sot-h1 {
    font-size: clamp(2.7rem, 6vw, 5.4rem); font-weight: 600; line-height: 1.04;
    color: var(--ink); margin: 32px 0 0; letter-spacing: -0.01em;
}
.sot-h1.sm { font-size: clamp(2.3rem, 5vw, 3.6rem); }
.sot-lead { margin: 28px auto 0; max-width: 42rem; font-size: 17px; line-height: 1.7; color: var(--muted); }
.sot-hero-btns { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.sot-hero-stats { display: flex; flex-wrap: wrap; gap: 20px 40px; margin-top: 48px; }
.stat-v { font-size: clamp(1.5rem, 2.5vw, 1.9rem); font-weight: 600; color: var(--ink); }
.stat-l { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-2); margin-top: 4px; }

.sot-hero-emblem { position: relative; display: none; align-items: center; justify-content: center; min-height: 420px; }
@media (min-width: 1024px) { .sot-hero-emblem { display: flex; } }
.emblem-ring { position: absolute; width: 26rem; height: 26rem; border-radius: 50%; border: 1px dashed rgba(185,138,47,0.4); }
.emblem-disc { position: absolute; width: 20rem; height: 20rem; border-radius: 50%; background: rgba(255,255,255,0.7); backdrop-filter: blur(8px); box-shadow: 0 40px 90px -30px rgba(22,36,44,0.25); border: 1px solid #fff; }
.emblem-logo { position: relative; }
.emblem-tag {
    position: absolute; bottom: -8px; border-radius: 999px; background: var(--ink); color: var(--gold-3);
    font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; padding: 10px 20px;
    box-shadow: 0 10px 25px -10px rgba(22,36,44,0.4);
}
.spin-slow { animation: sotspin 24s linear infinite; }
@keyframes sotspin { to { transform: rotate(360deg); } }
.float-soft { animation: sotfloat 7s ease-in-out infinite; }
@keyframes sotfloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.sot-marquee { border-top: 1px solid var(--line); background: rgba(255,255,255,0.5); backdrop-filter: blur(8px); padding: 20px 0; overflow: hidden; }
.marquee-track { display: flex; align-items: center; gap: 40px; width: max-content; animation: sotmarquee 38s linear infinite; }
@keyframes sotmarquee { to { transform: translateX(-50%); } }
.mq-item { font-size: 13px; font-weight: 500; color: #3D4F59; white-space: nowrap; }
.mq-star { color: var(--gold); font-size: 12px; }

/* ============================ SECTIONS ============================ */
.sot-sec { position: relative; padding: 80px 0; overflow: hidden; }
@media (min-width: 768px) { .sot-sec { padding: 110px 0; } }
.sot-sec-white { background: #fff; }
.sot-sec-white::before {
    content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 80%; height: 1px; background: linear-gradient(90deg, transparent, rgba(185,138,47,0.4), transparent);
}
.sot-sec-ivory { background: var(--ivory); }

.sot-sh { max-width: 48rem; margin: 0 auto; text-align: center; }
.sot-eyebrow {
    display: flex; align-items: center; gap: 12px; justify-content: center;
    font-size: 11px; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-d);
}
.sot-eyebrow .line { width: 32px; height: 1px; background: rgba(185,138,47,0.6); }
.sot-eyebrow.gold { color: var(--gold-2); justify-content: flex-start; }
.sot-h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 600; line-height: 1.08; color: var(--ink); margin: 20px 0 0; }

.sot-grid { display: grid; gap: 20px; margin-top: 56px; }
.sot-grid-2 { grid-template-columns: 1fr; }
.sot-grid-3 { grid-template-columns: 1fr; }
.sot-grid-4 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .sot-grid-2, .sot-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .sot-grid-3 { grid-template-columns: repeat(3, 1fr); } .sot-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.sot-card {
    position: relative; height: 100%; border-radius: var(--radius);
    border: 1px solid var(--line); background: var(--ivory); padding: 30px; overflow: hidden;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.sot-card.white { background: #fff; }
.sot-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.sot-card h3 { font-size: 20px; font-weight: 600; color: var(--ink); margin: 20px 0 0; }
.sot-card p { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 12px 0 0; }
.sot-card-ic {
    display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 14px;
}
.sot-card-ic.dark { background: var(--ink); color: var(--gold-3); }
.sot-card-ic.light { background: #fff; border: 1px solid rgba(185,138,47,0.25); color: var(--gold-d); box-shadow: 0 2px 6px rgba(22,36,44,0.05); }
.sot-card.white .sot-card-ic.light { background: var(--ivory); box-shadow: none; }
.hover-glow::after {
    content: ""; position: absolute; bottom: -64px; right: -64px; width: 160px; height: 160px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,162,75,0.18), transparent 65%);
    opacity: 0; transition: opacity 0.5s;
}
.hover-glow:hover::after { opacity: 1; }

/* dark panel (offices) */
.sot-dark-panel {
    position: relative; margin-top: 64px; border-radius: 32px; background: var(--ink); color: var(--ivory);
    padding: 40px; overflow: hidden;
}
@media (min-width: 768px) { .sot-dark-panel { padding: 48px 56px; } }
.dp-head { display: flex; flex-direction: column; gap: 24px; }
@media (min-width: 768px) { .dp-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.dp-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-2); }
.dp-head h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 600; margin: 12px 0 0; }
.dp-head p { max-width: 24rem; font-size: 14px; line-height: 1.65; color: rgba(250,247,241,0.7); margin: 0; }
.dp-offices { display: grid; gap: 1px; background: rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; margin-top: 40px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .dp-offices { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .dp-offices { grid-template-columns: repeat(5, 1fr); } }
.dp-office { background: #1B2C35; padding: 24px; transition: background 0.3s; }
.dp-office:hover { background: #223845; }
.dp-office .city { font-family: "Exo 2", system-ui, -apple-system, sans-serif; font-size: 20px; font-weight: 600; color: var(--gold-3); }
.dp-office .role { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250,247,241,0.85); margin-top: 8px; }
.dp-office .note { font-size: 12px; line-height: 1.6; color: rgba(250,247,241,0.55); margin-top: 12px; }

/* ============================ DIVISIONS ============================ */
.sot-divisions { display: grid; gap: 24px; margin-top: 56px; }
@media (min-width: 1024px) { .sot-divisions { grid-template-columns: 0.9fr 1.1fr; } }
.sot-div-list { display: flex; flex-direction: column; gap: 12px; }
.div-btn {
    display: flex; align-items: center; gap: 16px; text-align: left; cursor: pointer;
    border-radius: 18px; border: 1px solid var(--line); background: rgba(255,255,255,0.7);
    padding: 18px 20px; transition: all 0.3s; font-family: inherit;
}
.div-btn:hover { border-color: rgba(185,138,47,0.5); }
.div-btn.active { background: var(--ink); border-color: var(--ink); box-shadow: 0 24px 50px -20px rgba(22,36,44,0.45); }
.div-ic {
    display: flex; align-items: center; justify-content: center; width: 44px; height: 44px;
    border-radius: 12px; background: var(--ivory); color: var(--gold-d); flex-shrink: 0; transition: background 0.3s, color 0.3s;
}
.div-btn.active .div-ic { background: rgba(201,162,75,0.15); color: var(--gold-3); }
.div-name { display: block; font-family: "Exo 2", system-ui, -apple-system, sans-serif; font-size: 18px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.div-btn.active .div-name { color: var(--ivory); }
.div-tag { display: block; font-size: 12px; color: var(--muted-2); margin-top: 4px; }
.div-btn.active .div-tag { color: rgba(250,247,241,0.6); }

.sot-div-panel { position: relative; border-radius: 32px; border: 1px solid var(--line); background: #fff; padding: 36px; overflow: hidden; min-height: 420px; }
@media (min-width: 768px) { .sot-div-panel { padding: 44px; } }
.div-pane { display: none; }
.div-pane.active { display: block; animation: sotpane 0.45s var(--ease); }
@keyframes sotpane { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.div-specs { display: flex; flex-wrap: wrap; gap: 10px; }
.sot-spec {
    border-radius: 999px; border: 1px solid rgba(185,138,47,0.35); background: var(--ivory);
    padding: 6px 14px; font-size: 11px; font-weight: 600; letter-spacing: 0.03em; color: var(--gold-d);
}
.div-pane h3 { font-size: 30px; font-weight: 600; color: var(--ink); margin: 24px 0 0; }
.div-pane p { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 16px 0 0; }
.div-products-label { font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-d); margin-top: 28px; }
.div-products { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
@media (min-width: 640px) { .div-products { grid-template-columns: repeat(2, 1fr); } }
.div-products li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #3D4F59; }
.div-products .sot-ic { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

/* ============================ PROCESS ============================ */
.step-n { font-size: 52px; font-weight: 600; line-height: 1; opacity: 0.9; font-style: normal; }

.sot-timings {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 40px;
    margin: 48px auto 0; width: fit-content; max-width: 100%;
    border-radius: 999px; border: 1px solid rgba(185,138,47,0.25); background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px); padding: 20px 32px;
}
.timing { display: flex; align-items: baseline; gap: 10px; }
.t-v { font-family: "Exo 2", system-ui, -apple-system, sans-serif; font-size: 20px; font-weight: 600; color: var(--ink); }
.t-l { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted-2); }

/* ============================ GEOGRAPHY ============================ */
.geo-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.geo-head h3 { margin: 0; font-size: 22px; }
.geo-modes { display: flex; gap: 8px; color: var(--gold-d); }

.sot-case {
    position: relative; height: 100%; border-radius: var(--radius); background: var(--ink);
    color: var(--ivory); padding: 30px; overflow: hidden;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.sot-case:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.case-place {
    display: inline-block; border-radius: 999px; border: 1px solid rgba(201,162,75,0.4);
    padding: 5px 14px; font-size: 10px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-3);
}
.sot-case h3 { font-size: 20px; font-weight: 600; margin: 20px 0 0; }
.sot-case p { font-size: 14px; line-height: 1.65; color: rgba(250,247,241,0.65); margin: 12px 0 0; }

/* ============================ COMPLIANCE ============================ */
.sot-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 48px; }
.sot-badges span {
    border-radius: 999px; border: 1px solid rgba(185,138,47,0.3); background: #fff;
    padding: 10px 20px; font-size: 12px; font-weight: 600; color: #3D4F59;
    box-shadow: 0 2px 6px rgba(22,36,44,0.04);
}

/* ============================ COMPANY CARD ============================ */
.sot-company-card {
    position: relative; max-width: 56rem; margin: 56px auto 0; border-radius: 32px;
    border: 1px solid rgba(185,138,47,0.3);
    background: linear-gradient(135deg, #FDFBF7, #ffffff 50%, #F7F1E4);
    box-shadow: 0 40px 90px -30px rgba(22,36,44,0.22); overflow: hidden; padding: 40px;
}
@media (min-width: 768px) { .sot-company-card { padding: 52px; } }
.cc-frame { position: absolute; inset: 12px; border-radius: 24px; border: 1px solid rgba(185,138,47,0.25); pointer-events: none; z-index: 1; }
.cc-head { display: flex; flex-direction: column; gap: 24px; padding-bottom: 32px; border-bottom: 1px solid rgba(22,36,44,0.1); }
@media (min-width: 640px) { .cc-head { flex-direction: row; align-items: center; justify-content: space-between; } }
.cc-brand { display: flex; align-items: center; gap: 16px; }
.cc-name { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; color: var(--ink); line-height: 1.2; }
.cc-sub { font-size: 11px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-d); margin-top: 6px; }
.cc-doc { text-align: left; }
@media (min-width: 640px) { .cc-doc { text-align: right; } }
.cc-doc-l { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted-2); }
.cc-doc-v { font-size: 18px; font-weight: 600; color: var(--ink); margin-top: 4px; }
.cc-details { display: grid; gap: 28px 40px; margin: 32px 0 0; padding: 0; }
@media (min-width: 640px) { .cc-details { grid-template-columns: repeat(2, 1fr); } .cc-details .span2 { grid-column: span 2; } }
.cc-details dt {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-d);
}
.cc-details dd { margin: 8px 0 0; font-size: 15px; line-height: 1.6; font-weight: 500; color: var(--ink); }
.cc-details dd.mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; letter-spacing: 0.08em; }
.cc-foot { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(22,36,44,0.1); }
@media (min-width: 640px) { .cc-foot { flex-direction: row; align-items: center; justify-content: space-between; } }
.cc-foot p { font-size: 12px; line-height: 1.6; color: var(--muted-2); max-width: 28rem; margin: 0; }
.cc-mark { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); font-weight: 600; white-space: nowrap; }

/* ============================ INNER PAGE HERO ============================ */
.sot-page-hero { position: relative; overflow: hidden; background: var(--ivory); padding: 150px 0 60px; text-align: center; }
@media (min-width: 768px) { .sot-page-hero { padding: 180px 0 80px; } }
.sot-page-hero .sot-lead { margin-left: auto; margin-right: auto; max-width: 42rem; }

/* ============================ REQUEST CTA ============================ */
.sot-cta {
    position: relative; display: flex; flex-direction: column; gap: 28px;
    border-radius: 32px; background: var(--ink); color: var(--ivory);
    padding: 36px; overflow: hidden;
}
@media (min-width: 768px) { .sot-cta { flex-direction: row; align-items: center; justify-content: space-between; padding: 48px 56px; } }
.sot-cta h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 600; line-height: 1.3; margin: 12px 0 0; }
.sot-cta .sot-btn { flex-shrink: 0; }

/* ============================ FORM ============================ */
.sot-request-sec::before { display: none; }
.sot-form { display: grid; gap: 32px; }
@media (min-width: 1024px) { .sot-form { grid-template-columns: 1.15fr 0.85fr; } }
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

.form-col { border-radius: 32px; border: 1px solid var(--line); background: var(--ivory); padding: 28px; }
@media (min-width: 768px) { .form-col { padding: 36px; } }
.form-col:not(.form-products) { border: none; background: transparent; padding: 0; display: flex; flex-direction: column; gap: 32px; }
.fp-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.fp-head h2 { font-size: 24px; font-weight: 600; margin: 0; }
.fp-head p { font-size: 14px; color: var(--muted-2); margin: 4px 0 0; }
.fp-count { border-radius: 999px; background: var(--ink); color: var(--gold-3); font-size: 12px; font-weight: 600; padding: 8px 16px; white-space: nowrap; }
.fp-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.fp-chips:empty { display: none; }
.fp-chip {
    display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; cursor: pointer;
    background: rgba(201,162,75,0.15); border: 1px solid rgba(185,138,47,0.4);
    padding: 6px 14px; font-size: 12px; font-weight: 500; color: #6d5316; font-family: inherit;
}
.fp-chip:hover { background: rgba(201,162,75,0.25); }
.fp-chip::after { content: "×"; opacity: 0.6; font-size: 14px; }

.fp-division { border-radius: 18px; border: 1px solid var(--line); background: #fff; overflow: hidden; margin-top: 12px; }
.fpd-head {
    display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; cursor: pointer;
    background: none; border: none; padding: 16px 20px; font-family: inherit; transition: background 0.2s;
}
.fpd-head:hover { background: rgba(250,247,241,0.7); }
.fpd-head .div-ic { width: 36px; height: 36px; border: 1px solid rgba(185,138,47,0.25); }
.fpd-name { flex: 1; font-family: "Exo 2", system-ui, -apple-system, sans-serif; font-size: 17px; font-weight: 600; color: var(--ink); }
.fpd-count { border-radius: 999px; background: var(--gold-2); color: var(--ink); font-size: 11px; font-weight: 700; padding: 4px 10px; }
.fpd-count:empty, .fpd-count[data-empty] { display: none; }
.fpd-chev { color: var(--muted-2); transition: transform 0.3s; display: inline-flex; }
.fp-division.open .fpd-chev { transform: rotate(180deg); }
.fpd-body { display: none; padding: 4px 20px 20px; grid-template-columns: 1fr; gap: 8px; }
@media (min-width: 640px) { .fpd-body { grid-template-columns: repeat(2, 1fr); } }
.fp-division.open .fpd-body { display: grid; animation: sotpane 0.35s var(--ease); }

.fp-product {
    display: flex; align-items: center; gap: 10px; cursor: pointer;
    border-radius: 12px; border: 1px solid rgba(22,36,44,0.1); background: #fff;
    padding: 10px 14px; font-size: 13px; font-weight: 500; color: var(--muted); transition: all 0.2s;
}
.fp-product:hover { border-color: rgba(185,138,47,0.5); }
.fp-product input { position: absolute; opacity: 0; pointer-events: none; }
.fp-check {
    display: flex; align-items: center; justify-content: center; width: 18px; height: 18px; flex-shrink: 0;
    border-radius: 5px; border: 1px solid rgba(22,36,44,0.25); color: transparent; transition: all 0.2s;
}
.fp-product.checked { border-color: var(--gold); background: rgba(201,162,75,0.12); color: var(--ink); }
.fp-product.checked .fp-check { background: var(--gold); border-color: var(--gold); color: #fff; }

.form-card { border-radius: 32px; border: 1px solid var(--line); background: var(--ivory); padding: 28px; }
@media (min-width: 768px) { .form-card { padding: 36px; } }
.form-card h2 { font-size: 24px; font-weight: 600; margin: 0; }
.f-grid { display: grid; gap: 16px; margin-top: 24px; }
@media (min-width: 640px) { .f-grid { grid-template-columns: repeat(2, 1fr); } .f-field.span2 { grid-column: span 2; } }
.f-field label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 8px; }
.f-field input, .f-field select, .f-field textarea {
    width: 100%; border-radius: 12px; border: 1px solid rgba(22,36,44,0.12); background: #fff;
    padding: 12px 16px; font-size: 14px; color: var(--ink); font-family: inherit; outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.f-field input::placeholder, .f-field textarea::placeholder { color: #9AA6AD; }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus {
    border-color: var(--gold); box-shadow: 0 0 0 3px rgba(185,138,47,0.2);
}
.f-field textarea { resize: none; }
.f-error { margin-top: 20px; border-radius: 12px; border: 1px solid #fecaca; background: #fef2f2; padding: 12px 16px; font-size: 14px; color: #b91c1c; }
.f-submit { width: 100%; justify-content: center; margin-top: 24px; padding: 16px 28px; }
.f-submit[disabled] { opacity: 0.6; cursor: not-allowed; }
.f-note { margin: 16px 0 0; text-align: center; font-size: 12px; line-height: 1.6; color: var(--muted-2); }

.form-side { position: relative; border-radius: 32px; background: var(--ink); color: var(--ivory); padding: 30px; overflow: hidden; display: flex; flex-direction: column; gap: 22px; }
.fs-item { display: flex; align-items: flex-start; gap: 16px; }
.fs-ic {
    display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; flex-shrink: 0;
    border-radius: 12px; background: rgba(201,162,75,0.15); color: var(--gold-3);
}
.fs-t { font-size: 18px; font-weight: 600; }
.fs-d { font-size: 13px; color: rgba(250,247,241,0.6); margin-top: 2px; }

.sot-success {
    max-width: 42rem; margin: 0 auto; text-align: center; position: relative; overflow: hidden;
    border-radius: 32px; border: 1px solid rgba(185,138,47,0.3);
    background: linear-gradient(135deg, #FDFBF7, #F7F1E4); padding: 56px 40px;
}
.succ-ic {
    display: flex; align-items: center; justify-content: center; width: 64px; height: 64px;
    border-radius: 50%; background: var(--ink); color: var(--gold-3); margin: 0 auto;
}
.sot-success h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 600; margin: 28px 0 0; }
.sot-success p { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 16px auto 0; max-width: 30rem; }
.sot-success .sot-btn { margin-top: 32px; }

/* ============================ FOOTER ============================ */
.sot-footer { position: relative; overflow: hidden; background: var(--ink); color: var(--ivory); padding: 80px 0 40px; }
@media (min-width: 768px) { .sot-footer { padding: 110px 0 40px; } }
.footer-cta { max-width: 48rem; }
.footer-cta h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 600; line-height: 1.08; margin: 24px 0 0; }
.footer-cta p { margin: 24px 0 0; max-width: 36rem; font-size: 16px; line-height: 1.7; color: rgba(250,247,241,0.65); }
.footer-btns { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.footer-bottom {
    display: flex; flex-direction: column; gap: 28px; margin-top: 72px; padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-logo { text-decoration: none; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.footer-nav a { font-size: 13px; color: rgba(250,247,241,0.6); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold-3); }
.footer-legal {
    display: flex; flex-direction: column; gap: 8px; margin-top: 28px;
    font-size: 12px; color: rgba(250,247,241,0.4);
}
@media (min-width: 640px) { .footer-legal { flex-direction: row; justify-content: space-between; } }

/* generic content pages */
.sot-content { max-width: 48rem; font-size: 16px; line-height: 1.8; color: var(--muted); }
.sot-content h1, .sot-content h2, .sot-content h3 { font-family: "Exo 2", system-ui, -apple-system, sans-serif; color: var(--ink); }
.sot-content a { color: var(--gold-d); }
.sot-divisions.no-head { margin-top: 0; }
.sot-grid.no-head { margin-top: 0; }
.sot-badges.no-head { margin-top: 0; }
.sot-company-card.no-head { margin-top: 0; }

/* no italics anywhere — straighten gold accents and any stray em/i */
em, i, .gold-grad {
    font-style: normal !important;
}
