/* ================================================================
   GLOBAL RESET
   Website: sandeepgoel.me
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin:0; background:#FAFAF6; }

/* ================================================================
   GLOBAL TYPOGRAPHY — single source of truth for font family & type
   scale. Every section below only overrides color/size where its
   design genuinely differs; it never redeclares font-family again.
   ================================================================ */
:root {
    --sg-font: "Nunito Sans", sans-serif;
}

body {
    font-family: var(--sg-font);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--sg-font);
    font-weight: 700;
    margin: 0;
}

p {
    font-family: var(--sg-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

ul, ol {
    font-family: var(--sg-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    list-style: none;
}

li { font-family: var(--sg-font); }

table {
    font-family: var(--sg-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    border-collapse: collapse;
    width: 100%;
}

th, td { font-family: var(--sg-font); text-align: left; }

a, span, label, input, textarea, button { font-family: var(--sg-font); }

/* ================================================================
   GLOBAL SECTION WIDTH — 95% CONSISTENT SCALE
   ================================================================ */

/* Main content containers — keep every section aligned */
#sg-hero .sg-content-row,
#sg-hero .sg-ticker-mask,
#sg-about .sg-container,
#sg-expertise .sg-container,
#sg-awards .sg-container,
#sg-cases .sg-container,
#sg-blog .sg-container,
#sg-contact .sg-container,
#sg-presence .sg-container,
#sg-hireme .sg-container,
#sg-faq .sg-container,
#sg-contact-page .sg-container,
#sg-contact-process .sg-container,
#sg-contact-faq .sg-container {
    width: 95%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================================
   MOBILE — maintain clean side spacing
   ================================================================ */

@media (max-width: 620px) {

    #sg-hero .sg-content-row,
    #sg-hero .sg-ticker-mask,
    #sg-about .sg-container,
    #sg-expertise .sg-container,
    #sg-awards .sg-container,
    #sg-cases .sg-container,
    #sg-blog .sg-container,
    #sg-contact .sg-container,
    #sg-presence .sg-container,
    #sg-hireme .sg-container,
    #sg-faq .sg-container,
    #sg-contact-page .sg-container,
    #sg-contact-process .sg-container,
    #sg-contact-faq .sg-container {
        width: 100%;
        max-width: 100%;
    }

}

/* ================================================================
   SHARED COMPONENT PATTERNS
   Reused as-is across About, Expertise, Awards, Case Studies, Blog,
   Contact, Presence, Hire Me and FAQ: the eyebrow label, the h2
   section heading, its italic accent word, the intro paragraph, and
   the centered header stack. Each section still defines its own
   --violet / --amber / --gold / --ink tokens further down, so these
   shared rules automatically pick up the right colors per section.
   Hero is intentionally excluded — its eyebrow/heading follow a
   different visual pattern by design.
   ================================================================ */

/* Eyebrow label (small caps overline) */
#sg-about .sg-eyebrow,
#sg-expertise .sg-eyebrow,
#sg-awards .sg-eyebrow,
#sg-cases .sg-eyebrow,
#sg-blog .sg-eyebrow,
#sg-contact .sg-eyebrow,
#sg-presence .sg-eyebrow,
#sg-hireme .sg-eyebrow,
#sg-faq .sg-eyebrow,
#sg-contact-hero .sg-eyebrow,
#sg-contact-process .sg-eyebrow,
#sg-contact-faq .sg-eyebrow {
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    font-weight:700;
    letter-spacing:0.14em;
    text-transform:uppercase;
    margin-bottom:18px;
    color:var(--violet);
}
#sg-about .sg-eyebrow::before,
#sg-expertise .sg-eyebrow::before,
#sg-awards .sg-eyebrow::before,
#sg-cases .sg-eyebrow::before,
#sg-blog .sg-eyebrow::before,
#sg-contact .sg-eyebrow::before,
#sg-presence .sg-eyebrow::before,
#sg-hireme .sg-eyebrow::before,
#sg-faq .sg-eyebrow::before,
#sg-contact-hero .sg-eyebrow::before,
#sg-contact-process .sg-eyebrow::before,
#sg-contact-faq .sg-eyebrow::before {
    content:"";
    width:18px;
    height:2px;
    display:inline-block;
    background:var(--amber);
}
/* Awards & Contact intentionally invert the accent pair */
#sg-awards .sg-eyebrow{ color:var(--gold); }
#sg-awards .sg-eyebrow::before{ background:var(--violet); }
#sg-contact .sg-eyebrow{ color:var(--amber); }
#sg-contact .sg-eyebrow::before{ background:var(--violet); }

/* Section heading (h2) */
#sg-expertise h2.sg-heading,
#sg-awards h2.sg-heading,
#sg-cases h2.sg-heading,
#sg-blog h2.sg-heading,
#sg-contact h2.sg-heading,
#sg-presence h2.sg-heading,
#sg-hireme h2.sg-heading,
#sg-faq h2.sg-heading,
#sg-about h2.sg-headline {
    font-size:clamp(28px, 3.4vw, 42px);
    line-height:1.2;
    letter-spacing:-0.02em;
    margin:0 0 16px;
}
#sg-contact h2.sg-heading,
#sg-presence h2.sg-heading,
#sg-hireme h2.sg-heading,
#sg-faq h2.sg-heading { line-height:1.25; }
#sg-contact h2.sg-heading{ margin:0 0 18px; max-width:460px; }
#sg-blog h2.sg-heading{ margin:0; max-width:600px; }
#sg-about h2.sg-headline{ line-height:1.3; letter-spacing:-0.015em; margin:0 0 22px; }

/* Italic accent word inside a heading */
.sg-heading .accent,
.sg-heading em,
.sg-headline em {
    color:var(--violet);
    font-style:italic;
    font-weight:600;
}

/* Intro paragraph beneath a heading */
#sg-expertise .sg-intro,
#sg-awards .sg-intro,
#sg-cases .sg-intro,
#sg-presence .sg-intro,
#sg-hireme .sg-intro,
#sg-faq .sg-intro {
    margin:0;
    font-size:16px;
    font-weight:500;
    line-height:1.8;
    color:var(--ink);
}

/* Centered header stack: eyebrow + heading + intro */
#sg-expertise .sg-header,
#sg-awards .sg-header,
#sg-cases .sg-header,
#sg-presence .sg-presence-header,
#sg-hireme .sg-hireme-header,
#sg-faq .sg-faq-header,
#sg-contact-hero .sg-container,
#sg-contact-process .sg-process-header,
#sg-contact-faq .sg-faq-header {
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    max-width:800px;
    margin-left:auto;
    margin-right:auto;
}
#sg-expertise .sg-header{ margin-bottom:64px; }
#sg-awards .sg-header{ margin-bottom:60px; }
#sg-cases .sg-header{ margin-bottom:36px; }
#sg-presence .sg-presence-header{ margin-bottom:56px; }
#sg-hireme .sg-hireme-header{ margin-bottom:56px; }
#sg-faq .sg-faq-header{ margin-bottom:56px; }
#sg-contact-process .sg-process-header{ margin-bottom:56px; }
#sg-contact-faq .sg-faq-header{ margin-bottom:48px; }

/* ================================================================
   HERO SECTION — #sg-hero
   ================================================================ */
#sg-hero{
    --ink:#14101F;
    --violet:#5B4FE8;
    --violet-deep:#4A3FD1;
    --amber:#EFA93D;
    --white:#FFFFFF;
    position:relative;
    background:var(--ink);
    overflow:hidden;
  }
  #sg-hero .sg-bg-accent{
    position:absolute; top:0; right:0; bottom:0; width:56%;
    background:linear-gradient(90deg, transparent 0%, #6E63F0 22%, #7A70F2 100%);
    z-index:0;
  }
  #sg-hero .sg-hex-pattern{
    position:absolute; inset:0; z-index:0; opacity:0.5;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='96' viewBox='0 0 84 96'%3E%3Cpolygon points='42,0 84,24 84,72 42,96 0,72 0,24' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size:84px 96px;
  }
  #sg-hero .sg-content-row{
    position:relative; z-index:2;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.15fr 0.95fr;
    align-items:stretch;
    min-height:500px;
    padding:44px 40px 0;
  }
  #sg-hero .sg-left{ max-width:600px; align-self:center; }
  #sg-hero .sg-eyebrow{
    font-size:15px; font-weight:600; color:#ffff;
    margin-bottom:18px;
  }
  #sg-hero h1.sg-name{
    position:relative;
    font-size:clamp(38px, 5.6vw, 68px);
    letter-spacing:0.01em;
    line-height:1.02;
    color:var(--white);
    text-transform:uppercase;
  }
  #sg-hero h1.sg-name::before{
    content:"";
    position:absolute; top:50%; left:-20px;
    width:220px; height:220px;
    transform:translateY(-50%);
    background:radial-gradient(circle, rgba(239,169,61,0.16), transparent 70%);
    z-index:-1;
    pointer-events:none;
  }
  #sg-hero .sg-role{
    margin-top:18px;
    font-size:19px;
    font-weight:600;
    color:var(--white);
  }
  #sg-hero .sg-role .accent{ color:var(--amber); }
  #sg-hero .sg-role-rule{
    display:block; width:64px; height:2px; background:rgba(255,255,255,0.25); margin-top:14px;
  }
  #sg-hero .sg-desc{
    margin:22px 0 0;
    font-size:16px;
    font-weight:500;
    line-height:1.8;
    color:#ffff;
    max-width:460px;
  }
  #sg-hero .sg-cta-btn{
    display:inline-flex; align-items:center; gap:10px;
    margin-top:28px;
    background:var(--violet);
    color:#fff;
    font-family:inherit;
    font-weight:700;
    font-size:13px;
    letter-spacing:0.06em;
    text-transform:uppercase;
    padding:16px 28px;
    border-radius:10px;
    text-decoration:none;
    box-shadow:0 14px 28px -12px rgba(91,79,232,0.5);
  }
  #sg-hero .sg-cta-btn:hover{ background:var(--violet-deep); }
  #sg-hero .sg-right{
    position:relative;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    align-self:stretch;
    height:100%;
  }
  #sg-hero .sg-photo{
    position:relative; z-index:3;
    width:auto;
    height:100%;
    max-width:100%;
    display:block;
    object-fit:contain;
    object-position:bottom;
    filter:saturate(1.06) contrast(1.03) drop-shadow(0 14px 18px rgba(0,0,0,0.28));
  }
  #sg-hero h3.sg-chip-label{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }
  #sg-hero .sg-ticker-bar{
    position:relative; z-index:4;
    margin-top:0;
    padding:20px 0;
    background:var(--white);
    overflow:hidden;
  }
  #sg-hero .sg-ticker-mask{
    margin:0 auto;
    padding:0 40px;
    box-sizing:border-box;
    overflow:hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }
  #sg-hero .sg-ticker{ display:flex; gap:10px; width:max-content; animation: sg-scroll 26s linear infinite; will-change:transform; }
  #sg-hero .sg-ticker span{
    font-size:12.5px; font-weight:500; padding:8px 16px; border-radius:999px;
    background:#EEEBFC; border:1px solid #E3DECF;
    color:var(--violet); white-space:nowrap; flex-shrink:0;
  }
  @keyframes sg-scroll{ from{ transform:translate3d(0,0,0); } to{ transform:translate3d(-33.333%,0,0); } }
  @media (max-width: 980px){
    #sg-hero .sg-bg-accent{ width:100%; top:auto; bottom:0; height:56%; }
    #sg-hero .sg-content-row{ grid-template-columns:1fr; padding:64px 24px 0; min-height:auto; }
    #sg-hero .sg-left{ max-width:100%; text-align:center; }
    #sg-hero .sg-role-rule{ margin-left:auto; margin-right:auto; }
    #sg-hero .sg-right{ justify-content:center; margin-top:40px; height:auto; }
    #sg-hero .sg-photo{ height:340px; max-height:340px; }
    #sg-hero .sg-ticker-bar{ padding:20px 0; }
    #sg-hero .sg-ticker-mask{ padding:0 24px; }
  }
  @media (prefers-reduced-motion: reduce){
    #sg-hero .sg-ticker{ animation:none; }
  }
/* ================================================================
   EXPERTISE SECTION — #sg-expertise
   ================================================================ */
#sg-about{
    --bg:#14101F;
    --ink:#FFFFFF;
    --ink-soft:#BDB3DE;
    --line:rgba(255,255,255,0.14);
    --violet:#8B7FFF;
    --violet-soft:rgba(139,127,255,0.16);
    --amber:#FFB84D;
    --amber-soft:rgba(255,184,77,0.16);
    --white:#FFFFFF;
    background:radial-gradient(circle at 15% 15%, #241A3E 0%, #14101F 45%), radial-gradient(circle at 85% 85%, #2A1B2E 0%, #14101F 50%), #14101F;
    color:var(--ink);
    padding:100px 24px 110px;
    position:relative;
    overflow:hidden;
  }
  #sg-about .sg-container{ margin:0 auto; position:relative; z-index:2; }
  #sg-about .sg-top{
    display:grid;
    grid-template-columns: 40fr 60fr;
    gap:56px;
    align-items:start;
  }
  #sg-about .sg-photo-wrap{
    position:relative;
  }
  #sg-about .sg-photo-wrap::before{
    content:"";
    position:absolute;
    inset:-16px;
    background:linear-gradient(160deg, var(--violet), var(--amber));
    border-radius:26px;
    opacity:0.55;
    filter:blur(22px);
    z-index:0;
  }
  #sg-about .sg-photo{
    position:relative;
    z-index:1;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 24px 50px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
  }
  #sg-about .sg-photo img{ width:100%; height:700px; object-fit:cover; display:block; }
  #sg-about .sg-photo-caption{
    margin-top:14px;
    font-size:12.5px;
    color:var(--ink-soft);
    display:flex;
    align-items:center;
    gap:8px;
  }
  #sg-about .sg-photo-caption .dot{ width:6px; height:6px; border-radius:50%; background:#4ADE80; display:inline-block; }
  #sg-about .sg-top-intro{
    margin:0 0 36px;
    font-size:16px;
    font-weight:500;
    line-height:1.8;
    color:var(--ink);
  }
  #sg-about .sg-top-intro strong{ color:var(--violet); font-weight:600; }
  #sg-about .sg-beliefs{
    display:flex;
    flex-direction:column;
    gap:22px;
  }
  #sg-about .sg-belief{
    display:flex;
    align-items:flex-start;
    gap:14px;
  }
  #sg-about .sg-belief-mark{
    width:24px; height:24px;
    border-radius:50%;
    background:linear-gradient(135deg, var(--violet), var(--amber));
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
    margin-top:2px;
    box-shadow:0 4px 14px -4px rgba(139,127,255,0.6);
  }
  #sg-about .sg-belief-mark svg{ width:11px; height:11px; stroke:#14101F; fill:none; stroke-width:3; stroke-linecap:round; stroke-linejoin:round; }
  #sg-about .sg-belief p{ line-height:1.7; color:var(--white); }
  #sg-about .sg-belief strong{ font-weight:600; color:var(--ink); }
  #sg-about .sg-stat-band{
    margin-top:76px;
    padding-top:44px;
    border-top:1px solid var(--line);
    display:grid;
    grid-template-columns:repeat(3, 1fr);
  }
  #sg-about .sg-stat-item{
    padding:0 32px;
    border-left:1px solid var(--line);
    text-align:left;
  }
  #sg-about .sg-stat-item:first-child{ border-left:none; padding-left:0; }
  #sg-about .sg-stat-item h5{
    font-size:34px;
    letter-spacing:-0.01em;
    background:linear-gradient(120deg, var(--violet), var(--amber));
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
  }
  #sg-about .sg-stat-item p{ margin:8px 0 0; color:var(--white); line-height:1.5; }
  @media (max-width: 900px){
    #sg-about .sg-top{ grid-template-columns:1fr; }
    #sg-about .sg-photo img{ height:380px; }
    #sg-about .sg-stat-band{ grid-template-columns:1fr; gap:24px; }
    #sg-about .sg-stat-item{ border-left:none; padding-left:0; border-top:1px solid var(--line); padding-top:20px; }
    #sg-about .sg-stat-item:first-child{ border-top:none; padding-top:0; }
  }
  @media (max-width: 620px){
    #sg-about{ padding:80px 20px; }
  }
/* ================================================================
   AWARDS SECTION — #sg-awards
   ================================================================ */
#sg-expertise{
    --bg:#F3F1FC;
    --ink:#17151F;
    --ink-soft:#655F80;
    --line:#E1DCF5;
    --violet:#5B4FE8;
    --violet-soft:#E7E3FB;
    --amber:#EFA93D;
    --amber-soft:#FBEEDA;
    --white:#FFFFFF;
    background:var(--bg);
    color:var(--ink);
    padding:100px 24px 110px;
  }
  #sg-expertise .sg-container{ margin:0 auto; }
  #sg-expertise .sg-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
  }
  #sg-expertise .sg-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:22px;
    padding:38px 32px 32px;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 28px -22px rgba(23,21,31,0.25);
    transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }
  #sg-expertise .sg-card::before{
    content:"";
    position:absolute; top:0; left:0; right:0; height:4px;
    background:linear-gradient(90deg, var(--violet), var(--amber));
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .3s ease;
  }
  #sg-expertise .sg-card:hover{
    transform:translateY(-6px);
    box-shadow:0 30px 44px -22px rgba(23,21,31,0.28);
    border-color:transparent;
  }
  #sg-expertise .sg-card:hover::before{ transform:scaleX(1); }
  #sg-expertise .sg-card-icon{
    width:56px; height:56px;
    border-radius:16px;
    background:var(--violet-soft);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:26px;
  }
  #sg-expertise .sg-card:nth-child(2) .sg-card-icon,
  #sg-expertise .sg-card:nth-child(4) .sg-card-icon,
  #sg-expertise .sg-card:nth-child(6) .sg-card-icon{ background:var(--amber-soft); }
  #sg-expertise .sg-card-icon i{ font-size:22px; color:var(--violet); }
  #sg-expertise .sg-card:nth-child(2) .sg-card-icon i,
  #sg-expertise .sg-card:nth-child(4) .sg-card-icon i,
  #sg-expertise .sg-card:nth-child(6) .sg-card-icon i{ color:var(--amber); }
  #sg-expertise .sg-card h3{
    margin:0 0 10px;
    font-size:18px;
    color:var(--ink);
    letter-spacing:-0.01em;
  }
  #sg-expertise .sg-card p{
    line-height:1.75;
    color:var(--ink-soft);
  }
  @media (max-width: 980px){
    #sg-expertise .sg-grid{ grid-template-columns:repeat(2, 1fr); }
  }
  @media (max-width: 620px){
    #sg-expertise{ padding:80px 20px 90px; }
    #sg-expertise .sg-grid{ grid-template-columns:1fr; }
  }
  @media (prefers-reduced-motion: reduce){
    #sg-expertise .sg-card{ transition:none; }
  }
/* ================================================================
   CASE STUDIES SECTION — #sg-cases
   ================================================================ */
/* ================================================================
   AWARDS SECTION — #sg-awards
   (replace the ENTIRE old #sg-awards block in global.css with this)
   ================================================================ */
#sg-awards{
    --bg:#FFF8EC;
    --ink:#1F1A12;
    --ink-soft:#8A7B5E;
    --line:#F0E0C4;
    --violet:#5B4FE8;
    --gold:#C9972E;
    --gold-soft:#F5E7C6;
    --white:#FFFFFF;
    background:var(--bg);
    color:var(--ink);
    padding:100px 24px 110px;
    overflow:hidden;
  }
  #sg-awards .sg-container{ margin:0 auto; }
  /* ---------- MARQUEE / TRAIN SCROLL ---------- */
  #sg-awards .sg-cert-slider{
    position:relative;
    width:100%;
    margin:0 auto;
  }
  #sg-awards .sg-cert-viewport{
    overflow:hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
  }
  #sg-awards .sg-cert-track{
    display:flex;
    align-items:flex-start;
    width:max-content;
    gap:28px;
    animation: sg-cert-train 38s linear infinite;
    will-change:transform;
  }
  #sg-awards .sg-cert-slider:hover .sg-cert-track{
    animation-play-state: paused;
  }
  @keyframes sg-cert-train{
    from{ transform:translate3d(0,0,0); }
    to{ transform:translate3d(-50%,0,0); }
  }
  #sg-awards .sg-cert-item{
    flex:0 0 460px;
    width:460px;
  }
  #sg-awards .sg-cert-card{
    width:100%;
    height:340px;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 40px -22px rgba(31,26,18,0.3);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:16px;
  }
  #sg-awards .sg-cert-card img{
    display:block;
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;
    object-fit:contain;
  }
  #sg-awards .sg-cert-caption{
    margin:14px 0 0;
    text-align:center;
    font-size:14px;
    font-weight:700;
    color:var(--ink);
  }
  @media (max-width: 1080px){
    #sg-awards .sg-cert-item{ flex:0 0 380px; width:380px; }
    #sg-awards .sg-cert-card{ height:290px; }
  }
  @media (max-width: 620px){
    #sg-awards{ padding:80px 20px 90px; }
    #sg-awards .sg-cert-item{ flex:0 0 280px; width:280px; }
    #sg-awards .sg-cert-card{ height:220px; padding:12px; }
  }
  @media (prefers-reduced-motion: reduce){
    #sg-awards .sg-cert-track{ animation:none; }
  }
/* ================================================================
   BLOG SECTION — #sg-blog
   ================================================================ */
#sg-cases{
    --bg:#F8F9FC;
    --ink:#14161C;
    --ink-soft:#6B7280;
    --line:#E5E7EE;
    --violet:#5B4FE8;
    --violet-soft:#EEEBFC;
    --amber:#C98A2E;
    --amber-soft:#F5E7C6;
    --white:#FFFFFF;
    background:var(--bg);
    color:var(--ink);
    padding:100px 24px 110px;
  }
  #sg-cases .sg-container{ margin:0 auto; }
  #sg-cases .sg-tabs{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin:40px 0 48px;
  }
  #sg-cases .sg-tab{
    font-family:inherit;
    font-size:13.5px;
    font-weight:600;
    color:var(--ink-soft);
    background:var(--white);
    border:1px solid var(--line);
    border-radius:999px;
    padding:10px 20px;
    cursor:pointer;
    transition:background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
  }
  #sg-cases .sg-tab:hover{ border-color:var(--violet); color:var(--ink); }
  #sg-cases .sg-tab.is-active{
    background:var(--violet);
    border-color:var(--violet);
    color:#fff;
  }
  #sg-cases .sg-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
  }
  #sg-cases .sg-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:18px;
    overflow:hidden;
    transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  }
  #sg-cases .sg-card:hover{
    transform:translateY(-4px);
    box-shadow:0 24px 40px -24px rgba(20,22,28,0.25);
  }
  #sg-cases .sg-card.is-hidden{ display:none; }
  #sg-cases .sg-card-media{ position:relative; height:170px; overflow:hidden; }
  #sg-cases .sg-card-media img{ width:100%; height:100%; object-fit:cover; display:block; }
  #sg-cases .sg-cat-badge{
    position:absolute; left:12px; bottom:12px;
    font-size:11px; font-weight:700; color:#fff;
    padding:5px 12px; border-radius:999px;
  }
  #sg-cases .sg-stat-row{ display:flex; gap:8px; padding:16px 16px 0; }
  #sg-cases .sg-stat-chip{
    flex:1;
    text-align:center;
    border:1px solid var(--line);
    border-radius:10px;
    padding:8px 4px;
  }
  #sg-cases .sg-stat-chip .val{ display:block; font-size:15px; font-weight:700; }
  #sg-cases .sg-stat-chip .lab{ display:block; font-size:10px; color:var(--ink-soft); margin-top:1px; }
  #sg-cases .sg-stat-chip.is-time .val{ color:var(--amber); }
  #sg-cases .sg-card-body{ padding:16px; }
  #sg-cases .sg-card-body h3{
    margin:0 0 8px;
    font-size:15px;
    line-height:1.4;
    color:var(--ink);
  }
  #sg-cases .sg-card-body p{
    margin:0 0 14px;
    line-height:1.65;
    color:var(--ink);
  }
  #sg-cases .sg-tag-row{ display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px; }
  #sg-cases .sg-tag{
    font-size:10.5px;
    font-weight:600;
    color:var(--ink-soft);
    background:#F1F2F6;
    border-radius:999px;
    padding:4px 10px;
  }
  #sg-cases .sg-location{
    display:flex; align-items:center; gap:6px;
    font-size:11.5px; color:var(--ink-soft);
    border-top:1px solid var(--line);
    padding-top:12px;
  }
  #sg-cases .sg-location i{ margin-right:6px; font-size:0.9em; }
  @media (max-width: 980px){
    #sg-cases .sg-grid{ grid-template-columns:repeat(2, 1fr); }
  }
  @media (max-width: 620px){
    #sg-cases{ padding:80px 20px 90px; }
    #sg-cases .sg-grid{ grid-template-columns:1fr; }
  }
  @media (prefers-reduced-motion: reduce){
    #sg-cases .sg-card, #sg-cases .sg-tab{ transition:none; }
  }
/* ================================================================
   CONTACT SECTION — #sg-contact
   ================================================================ */
#sg-blog{
    --bg:#FFFFFF;
    --ink:#17151F;
    --ink-soft:#65607A;
    --line:#E7E5EF;
    --violet:#5B4FE8;
    --violet-soft:#EEEBFC;
    --amber:#C98A2E;
    --amber-soft:#F5E7C6;
    --white:#FFFFFF;
    background:var(--bg);
    color:var(--ink);
    padding:100px 24px 110px;
  }
  #sg-blog .sg-container{ margin:0 auto; }
  #sg-blog .sg-head-row{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:24px;
    margin-bottom:44px;
    flex-wrap:wrap;
  }
  #sg-blog .sg-view-all{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--violet);
    color:#fff;
    font-weight:600;
    font-size:14px;
    padding:13px 22px;
    border-radius:8px;
    text-decoration:none;
    white-space:nowrap;
    box-shadow:0 8px 20px -8px rgba(91,79,232,0.5);
  }
  #sg-blog .sg-view-all:hover{ background:#4a3fd1; }
  #sg-blog .sg-view-all i{ font-size:0.85em; }
  #sg-blog .sg-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
  }
  #sg-blog .sg-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:18px;
    overflow:hidden;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  #sg-blog .sg-card:hover{
    transform:translateY(-5px);
    box-shadow:0 26px 42px -24px rgba(23,21,31,0.28);
  }
  #sg-blog .sg-card-head{
    position:relative;
    height:190px;
    padding:20px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    overflow:hidden;
  }
  #sg-blog .sg-card-head::after{
    content:"";
    position:absolute; top:-30%; right:-15%;
    width:180px; height:180px;
    border-radius:38%;
    background:rgba(255,255,255,0.12);
    transform:rotate(20deg);
  }
  #sg-blog .sg-card:nth-child(odd) .sg-card-head{
    background:linear-gradient(135deg, var(--violet) 0%, #4A3FD1 100%);
  }
  #sg-blog .sg-card:nth-child(even) .sg-card-head{
    background:linear-gradient(135deg, #DDA84A 0%, var(--amber) 100%);
  }
  #sg-blog .sg-post-tag{
    position:relative; z-index:1;
    align-self:flex-start;
    display:inline-flex; align-items:center; gap:6px;
    font-size:10.5px; font-weight:700; letter-spacing:0.04em; text-transform:uppercase;
    color:#fff;
    background:rgba(255,255,255,0.2);
    padding:6px 12px;
    border-radius:999px;
  }
  #sg-blog .sg-post-tag .dot{ width:5px; height:5px; border-radius:50%; background:#fff; display:inline-block; }
  #sg-blog .sg-card-head h3{
    position:relative; z-index:1;
    font-size:18px;
    line-height:1.35;
    color:#fff;
  }
  #sg-blog .sg-card-body{ padding:18px 20px 20px; }
  #sg-blog .sg-meta-row{
    display:flex;
    align-items:center;
    gap:10px;
    padding-bottom:14px;
    border-bottom:1px solid var(--line);
    margin-bottom:14px;
  }
  #sg-blog .sg-avatar{
    width:34px; height:34px;
    border-radius:9px;
    background:var(--ink);
    color:#fff;
    display:flex; align-items:center; justify-content:center;
    font-size:12px; font-weight:700;
    flex-shrink:0;
  }
  #sg-blog .sg-meta-text{ flex:1; }
  #sg-blog .sg-meta-text .name{ font-size:13px; font-weight:700; color:var(--ink); display:block; }
  #sg-blog .sg-meta-text .sub{ font-size:11px; color:var(--ink-soft); }
  #sg-blog .sg-meta-date{
    display:flex; align-items:center; gap:5px;
    font-size:11px; color:var(--ink-soft); white-space:nowrap;
  }
  #sg-blog .sg-meta-date i{ margin-right:6px; font-size:0.9em; }
  #sg-blog .sg-excerpt{
    margin:0 0 16px;
    font-size:16px;
    font-weight:500;
    line-height:1.7;
    color:var(--ink);
  }
  #sg-blog .sg-read-more{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:13px;
    font-weight:700;
    text-decoration:none;
    padding:9px 16px;
    border-radius:999px;
    border:1.5px solid transparent;
    transition:background .15s ease, border-color .15s ease;
  }
  #sg-blog .sg-card:nth-child(odd) .sg-read-more{
    color:var(--violet);
    background:var(--violet-soft);
    border-color:var(--violet-soft);
  }
  #sg-blog .sg-card:nth-child(odd) .sg-read-more:hover{
    background:var(--violet);
    color:#fff;
  }
  #sg-blog .sg-card:nth-child(even) .sg-read-more{
    color:var(--amber);
    background:var(--amber-soft);
    border-color:var(--amber-soft);
  }
  #sg-blog .sg-card:nth-child(even) .sg-read-more:hover{
    background:var(--amber);
    color:#fff;
  }
  #sg-blog .sg-read-more i{ font-size:0.85em; }
  @media (max-width: 980px){
    #sg-blog .sg-grid{ grid-template-columns:1fr; max-width:480px; margin:0 auto; }
  }
  @media (max-width: 620px){
    #sg-blog{ padding:80px 20px 90px; }
    #sg-blog .sg-head-row{ align-items:flex-start; }
  }
  @media (prefers-reduced-motion: reduce){
    #sg-blog .sg-card, #sg-blog .sg-read-more i{ transition:none; }
  }
#sg-contact{
    --bg:#14101F;
    --ink:#FFFFFF;
    --ink-soft:#BDB3DE;
    --line:rgba(255,255,255,0.14);
    --violet:#8B7FFF;
    --amber:#FFB84D;
    --white:#FFFFFF;
    background:radial-gradient(circle at 85% 10%, #241A3E 0%, #14101F 45%), radial-gradient(circle at 10% 90%, #2A1B2E 0%, #14101F 50%), #14101F;
    color:var(--ink);
    padding:100px 24px 100px;
    position:relative;
    overflow:hidden;
  }
  #sg-contact .sg-container{ margin:0 auto; position:relative; z-index:2; }
  #sg-contact .sg-split{
    display:grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap:64px;
    align-items:stretch;
  }
  #sg-contact .sg-intro{
    margin:0 0 40px;
    font-size:16px;
    font-weight:500;
    line-height:1.8;
    color:var(--white);
    max-width:440px;
  }
  #sg-contact .sg-steps{
    display:flex;
    flex-direction:column;
    gap:22px;
  }
  #sg-contact .sg-step{
    display:flex;
    align-items:flex-start;
    gap:16px;
  }
  #sg-contact .sg-step-num{
    width:32px; height:32px;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
    border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center;
    font-size:13px; font-weight:700; color:var(--violet);
    flex-shrink:0;
  }
  #sg-contact .sg-step:nth-child(2) .sg-step-num{ color:var(--amber); }
  #sg-contact .sg-step h6{ margin:0 0 4px; font-size:18px; color:var(--white); }
  #sg-contact .sg-step p{ line-height:1.6; color:#ffff; }
  #sg-contact .sg-availability{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:32px;
    padding:12px 18px;
    border-radius:999px;
    background:rgba(255,255,255,0.05);
    border:1px solid var(--line);
    font-size:12.5px;
    font-weight:600;
    color:var(--white);
  }
  #sg-contact .sg-availability .pulse-dot{
    width:8px; height:8px; border-radius:50%;
    background:#4ADE80;
    box-shadow:0 0 0 4px rgba(74,222,128,0.2);
    flex-shrink:0;
  }
  #sg-contact .sg-form-card{
    background:rgba(255,255,255,0.04);
    border:1px solid var(--line);
    border-radius:22px;
    padding:44px;
    backdrop-filter:blur(6px);
    display:flex;
    flex-direction:column;
    height:100%;
  }
  #sg-contact .sg-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-bottom:16px;
  }
  #sg-contact .sg-field{ display:flex; flex-direction:column; gap:8px; }
  #sg-contact .sg-field.is-full{ margin-bottom:16px; }
  #sg-contact .sg-field.is-message{ flex:1; margin-bottom:20px; }
  #sg-contact .sg-field.is-message textarea{ flex:1; }
  #sg-contact label{
    font-size:12.5px; font-weight:600; color:var(--ink-soft);
  }
  #sg-contact label .req{ color:var(--amber); margin-left:2px; }
  #sg-contact .sg-required-note{
    font-size:11.5px;
    color:var(--ink-soft);
    margin:0 0 18px;
  }
  #sg-contact input, #sg-contact textarea{
    font-family:inherit;
    font-size:14px;
    color:var(--white);
    background:rgba(255,255,255,0.05);
    border:1px solid var(--line);
    border-radius:10px;
    padding:12px 14px;
    outline:none;
    transition:border-color .15s ease, background .15s ease;
  }
  #sg-contact input::placeholder, #sg-contact textarea::placeholder{ color:rgba(255,255,255,0.35); }
  #sg-contact input:focus, #sg-contact textarea:focus{
    border-color:var(--violet);
    background:rgba(255,255,255,0.08);
  }
  #sg-contact textarea{ resize:vertical; min-height:160px; font-family:inherit; }
  #sg-contact .sg-submit-btn{
    width:100%;
    background:linear-gradient(120deg, var(--violet), #6f63e8);
    color:#fff;
    font-family:inherit;
    font-weight:600;
    font-size:15px;
    padding:15px 24px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    box-shadow:0 12px 26px -10px rgba(139,127,255,0.5);
    margin-top:4px;
  }
  #sg-contact .sg-submit-btn:hover{ filter:brightness(1.08); }
  #sg-contact .sg-submit-btn i{ font-size:0.9em; }
  @media (max-width: 900px){
    #sg-contact .sg-split{ grid-template-columns:1fr; gap:48px; }
    #sg-contact .sg-form-card{ height:auto; }
  }
  @media (max-width: 620px){
    #sg-contact{ padding:80px 20px; }
    #sg-contact .sg-form-card{ padding:26px 22px; }
    #sg-contact .sg-form-row{ grid-template-columns:1fr; }
  }
/* ================================================================
   EXTRA / SHARED — icon sizing & classes that replaced inline styles
   ================================================================ */
#sg-cases .sg-cat-badge.is-violet{ background:#5B4FE8; }
#sg-cases .sg-cat-badge.is-amber{ background:#C98A2E; }
#sg-cases .val.is-violet{ color:#5B4FE8; }
#sg-cases .val.is-amber{ color:#C98A2E; }
#sg-contact .sg-optional{ font-weight:400; opacity:.7; }
#sg-contact .sg-required-note .req{ margin-left:0; }
#sg-hero .sg-cta-btn i{ font-size:0.85em; }
#sg-about .sg-belief-mark i{ font-size:13px; }
/* ================================================================
   GLOBAL — sticky-header offset for anchor scrolling
   ================================================================ */
#sg-hero, #sg-about, #sg-expertise, #sg-awards, #sg-cases, #sg-contact, #sg-presence, #sg-hireme, #sg-faq{ scroll-margin-top: 140px; }
/* ================================================================
   CONTACT SECTION — ADDITIONS for Web3Forms submit states
   (append after the existing #sg-contact rules)
   ================================================================ */
#sg-contact .sg-form-wrap{ position:relative; height:100%; }
#sg-contact .sg-submit-btn:disabled{
  opacity:0.65;
  cursor:not-allowed;
}
#sg-contact .sg-submit-btn.is-loading .fa-paper-plane{
  animation: sg-send-spin 0.9s linear infinite;
}
@keyframes sg-send-spin{
  0%{ transform:rotate(0deg); }
  100%{ transform:rotate(360deg); }
}
#sg-contact .sg-form-error{
  display:none;
  margin:14px 0 0;
  font-size:12.5px;
  color:#FF8A8A;
  text-align:center;
}
#sg-contact .sg-form-error.is-visible{ display:block; }
#sg-contact .sg-thankyou{
  display:none;
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.04);
  border:1px solid var(--line);
  border-radius:22px;
  backdrop-filter:blur(6px);
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:44px;
}
#sg-contact .sg-thankyou.is-visible{ display:flex; }
#sg-contact .sg-thankyou-icon{
  width:56px; height:56px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--violet), #6f63e8);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
  box-shadow:0 12px 26px -10px rgba(139,127,255,0.6);
}
#sg-contact .sg-thankyou-icon i{ color:#fff; font-size:22px; }
#sg-contact .sg-thankyou h3{
  margin:0 0 10px;
  font-size:22px;
  color:var(--white);
}
#sg-contact .sg-thankyou p{
  font-size:14.5px;
  font-weight:400;
  line-height:1.7;
  color:var(--ink-soft);
  max-width:320px;
}
#sg-contact .sg-thankyou-btn{
  margin-top:22px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 22px;
  border-radius:999px;
  border:1px solid var(--line);
  background:linear-gradient(135deg, var(--violet), #6f63e8);
  color:#fff;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  box-shadow:0 10px 24px -12px rgba(139,127,255,0.6);
}
#sg-contact .sg-thankyou-btn:hover{ transform:translateY(-1px); opacity:.95; }
#sg-contact .sg-form-card.is-hidden{ display:none !important; }
@media (max-width: 900px){
  #sg-contact .sg-form-wrap{ height:auto; }
}
/* ================================================================
   INDUSTRY PRESENCE SECTION — #sg-presence
   (new section — fully self-contained, does not modify any
   existing rule from any other section)
   ================================================================ */
#sg-presence{
    --bg:#F1F7F4;
    --ink:#16211C;
    --ink-soft:#5C6E64;
    --line:#DCEAE2;
    --violet:#5B4FE8;
    --amber:#C98A2E;
    --white:#FFFFFF;
    background:var(--bg);
    color:var(--ink);
    padding:100px 24px 110px;
  }
  #sg-presence .sg-container{ margin:0 auto; }
  #sg-presence .sg-presence-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:24px;
  }
  #sg-presence .sg-presence-item{
    margin:0;
    flex:1 1 320px;
    max-width:380px;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 14px 30px -20px rgba(22,33,28,0.25);
    transition:transform .25s ease, box-shadow .25s ease;
  }
  #sg-presence .sg-presence-item:hover{
    transform:translateY(-4px);
    box-shadow:0 22px 40px -18px rgba(22,33,28,0.3);
  }
  #sg-presence .sg-presence-media{
    height:300px;
    overflow:hidden;
  }
  #sg-presence .sg-presence-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    display:block;
  }
  #sg-presence .sg-presence-item.is-centered .sg-presence-media img{
    object-position:center center;
  }
  #sg-presence .sg-presence-item figcaption{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:13.5px;
    line-height:1.6;
    color:var(--ink-soft);
    padding:18px 20px;
  }
  #sg-presence .sg-presence-item figcaption i{
    color:var(--violet);
    font-size:13px;
    margin-top:3px;
    flex-shrink:0;
  }
  @media (max-width: 700px){
    #sg-presence .sg-presence-item{ flex:1 1 100%; max-width:400px; }
  }
  @media (max-width: 620px){
    #sg-presence{ padding:80px 20px 90px; }
    #sg-presence .sg-presence-media{ height:240px; }
  }
  @media (prefers-reduced-motion: reduce){
    #sg-presence .sg-presence-item{ transition:none; }
  }
/* ================================================================
   FREELANCE PLATFORMS SECTION — #sg-hireme
   (new section — fully self-contained, does not modify any
   existing rule from any other section)
   ================================================================ */
#sg-hireme{
    --bg:#F8F9FC;
    --ink:#14161C;
    --ink-soft:#6B7280;
    --line:#E5E7EE;
    --violet:#5B4FE8;
    --violet-soft:#EEEBFC;
    --amber:#C98A2E;
    --amber-soft:#F5E7C6;
    --white:#FFFFFF;
    background:var(--bg);
    color:var(--ink);
    padding:100px 24px 110px;
  }
  #sg-hireme .sg-container{ margin:0 auto; }
  #sg-hireme .sg-hireme-row{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
  }
  #sg-hireme .sg-hireme-node{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    text-decoration:none;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:16px;
    padding:20px 16px 18px;
    box-shadow:0 10px 28px -22px rgba(20,22,28,0.25);
    transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }
  #sg-hireme .sg-hireme-node:hover{
    transform:translateY(-6px);
    box-shadow:0 26px 40px -22px rgba(20,22,28,0.28);
    border-color:var(--violet-soft);
  }
  #sg-hireme .sg-hireme-icon{
    width:100%;
    height:48px;
    background:none;
    display:flex; align-items:center; justify-content:center;
    margin-bottom:10px;
  }
  #sg-hireme .sg-hireme-icon img{
    max-width:100%;
    height:48px;
    width:auto;
    object-fit:contain;
    display:block;
  }
  #sg-hireme .sg-hireme-icon.is-favicon img{
    border-radius:10px;
  }
  #sg-hireme .sg-hireme-node h3{
    margin:0 0 6px;
    font-size:17px;
    color:var(--ink);
    letter-spacing:-0.01em;
  }
  #sg-hireme .sg-hireme-node p{
    font-size:14px;
    font-weight:600;
    color:var(--violet);
  }
  #sg-hireme .sg-hireme-node:nth-child(2n) p{ color:var(--amber); }
  @media (max-width: 980px){
    #sg-hireme .sg-hireme-row{ grid-template-columns:repeat(2, 1fr); }
  }
  @media (max-width: 620px){
    #sg-hireme{ padding:80px 20px 90px; }
    #sg-hireme .sg-hireme-row{ grid-template-columns:1fr; }
  }
  @media (prefers-reduced-motion: reduce){
    #sg-hireme .sg-hireme-node{ transition:none; }
  }
/* ================================================================
   FAQ SECTION — #sg-faq (redesigned)
   Append to global CSS. Fully self-contained under #sg-faq —
   does not modify any existing section's rules.
   ================================================================ */
#sg-faq{
    --bg:#FBF3EA;
    --ink:#1B1E2B;
    --ink-soft:#5F6478;
    --line:#E2E4F0;
    --violet:#5B4FE8;
    --violet-soft:#EEEBFC;
    --amber:#C98A2E;
    --amber-soft:#FBEEDA;
    --white:#FFFFFF;
    display:block;
    width:100%;
    max-width:100vw;
    background:var(--bg);
    color:var(--ink);
    padding:100px 24px 110px;
    position:relative;
    overflow-x:hidden;
    overflow-y:hidden;
  }
  #sg-faq .sg-container{ margin:0 auto; position:relative; z-index:2; }
  /* ---------- AMBIENT GLOW BACKDROP ---------- */
  #sg-faq .sg-faq-glow-a{
    position:absolute; top:-160px; right:-140px;
    width:440px; height:440px; border-radius:50%;
    background:radial-gradient(circle, rgba(91,79,232,0.12), transparent 70%);
    pointer-events:none; z-index:0;
  }
  #sg-faq .sg-faq-glow-b{
    position:absolute; bottom:-180px; left:-140px;
    width:440px; height:440px; border-radius:50%;
    background:radial-gradient(circle, rgba(201,138,46,0.12), transparent 70%);
    pointer-events:none; z-index:0;
  }
  /* ---------- TWO-COLUMN LAYOUT ---------- */
  #sg-faq .sg-faq-columns{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px 24px;
    align-items:start;
  }
  #sg-faq .sg-faq-col{
    display:flex;
    flex-direction:column;
    gap:18px;
  }
  /* ---------- ACCORDION CARD ---------- */
  #sg-faq .sg-faq-item{
    width:100%;
    max-width:100%;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 26px -20px rgba(27,30,43,0.25);
    transition:box-shadow .25s ease, transform .25s ease, border-color .25s ease;
  }
  #sg-faq .sg-faq-item:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 34px -18px rgba(27,30,43,0.3);
  }
  #sg-faq .sg-faq-item.is-open{
    border-color:var(--violet);
  }
  #sg-faq .sg-faq-q{
    width:100%;
    max-width:100%;
    display:flex;
    align-items:center;
    gap:16px;
    background:none;
    border:none;
    padding:20px 20px;
    font-family:inherit;
    cursor:pointer;
    text-align:left;
  }
  #sg-faq .sg-faq-num{
    flex-shrink:0;
    width:34px; height:34px;
    border-radius:10px;
    background:var(--violet-soft);
    color:var(--violet);
    display:flex; align-items:center; justify-content:center;
    font-size:12px;
    font-weight:800;
    letter-spacing:0.02em;
  }
  #sg-faq .sg-faq-item:nth-child(2n) .sg-faq-num{
    background:var(--amber-soft);
    color:var(--amber);
  }
  #sg-faq .sg-faq-q-text{
    flex:1 1 0%;
    min-width:0;
    max-width:100%;
    font-size:15px;
    font-weight:700;
    color:var(--ink);
    line-height:1.4;
    overflow-wrap:break-word;
    word-break:break-word;
    white-space:normal;
  }
  #sg-faq .sg-faq-q i{
    flex-shrink:0;
    width:28px; height:28px;
    border-radius:50%;
    background:var(--bg);
    border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center;
    font-size:11px;
    color:var(--violet);
    transition:transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  }
  #sg-faq .sg-faq-item.is-open .sg-faq-q i{
    transform:rotate(135deg);
    background:var(--violet);
    color:#fff;
    border-color:var(--violet);
  }
  #sg-faq .sg-faq-a{
    display:grid;
    grid-template-rows:0fr;
    transition:grid-template-rows .35s ease;
  }
  #sg-faq .sg-faq-a > div{
    overflow:hidden;
  }
  #sg-faq .sg-faq-a p{
    padding:0 20px 22px 70px;
    font-size:14px;
    font-weight:400;
    line-height:1.75;
    color:var(--ink-soft);
  }
  #sg-faq .sg-faq-item.is-open .sg-faq-a{
    grid-template-rows:1fr;
  }
  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 780px){
    #sg-faq .sg-faq-columns{ grid-template-columns:1fr; width:100%; }
    #sg-faq .sg-faq-col{ width:100%; }
    #sg-faq .sg-faq-item{ width:100%; }
  }
  @media (max-width: 480px){
    #sg-faq{ padding:80px 20px 90px; width:100%; }
    #sg-faq .sg-faq-q{ padding:18px 16px; gap:12px; }
    #sg-faq .sg-faq-q-text{ font-size:14px; }
    #sg-faq .sg-faq-a p{ padding-left:16px; }
  }
  @media (prefers-reduced-motion: reduce){
    #sg-faq .sg-faq-item, #sg-faq .sg-faq-a, #sg-faq .sg-faq-q i{ transition:none; }
  }