/** Shopify CDN: Minification failed

Line 16:7 Expected URL token but found "("
Line 21:15 Expected identifier but found whitespace
Line 21:17 Unexpected "{"
Line 21:26 Expected ":"
Line 22:17 Expected identifier but found whitespace
Line 22:19 Unexpected "{"
Line 22:28 Expected ":"
Line 23:11 Expected identifier but found whitespace
Line 23:13 Unexpected "{"
Line 23:22 Expected ":"
... and 3 more hidden warnings

**/
@import('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@200;300;400;500;600;700&display=swap');

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

  .sg-ai {
    --midnight: {{ section.settings.color_midnight | default: '#0A1A2F' }};
    --deep-black: {{ section.settings.color_black | default: '#0B0B0B' }};
    --gold: {{ section.settings.color_gold | default: '#C6A75C' }};
    --gold-light: #D4BA78;
    --gold-dim: rgba(198,167,92,0.15);
    --gold-glow: rgba(198,167,92,0.4);
    --soft-white: {{ section.settings.color_white | default: '#F5F5F5' }};
    --text-muted: #8A95A8;
    --text-secondary: #B0B8C8;
    --surface: #0F1D33;
    --surface-light: #142640;
    --border: rgba(198,167,92,0.12);
    --ff-display: 'Playfair Display', Georgia, serif;
    --ff-body: 'Outfit', -apple-system, sans-serif;
    --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: var(--ff-body);
    color: var(--soft-white);
    background: var(--deep-black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .sg-ai ::selection { background: var(--gold); color: var(--deep-black); }

  .sg-ai__container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }
  .sg-ai__section-pad { padding: clamp(60px, 10vw, 140px) 0; }

  /* Reveal Animation */
  .sg-ai .sg-reveal {
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
  }
  .sg-ai .sg-reveal.sg-visible { opacity: 1; transform: translateY(0); }
  .sg-ai .sg-delay-1 { transition-delay: 0.1s; }
  .sg-ai .sg-delay-2 { transition-delay: 0.2s; }
  .sg-ai .sg-delay-3 { transition-delay: 0.3s; }
  .sg-ai .sg-delay-4 { transition-delay: 0.4s; }

  /* ── HERO ── */
  .sg-ai__hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, #050D1A 0%, #0A1A2F 40%, #0F1225 100%);
  }

  .sg-ai__hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.25; filter: saturate(0.6);
  }

  .sg-ai__hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(198,167,92,0.06) 0%, transparent 70%),
                linear-gradient(180deg, rgba(5,13,26,0.3) 0%, rgba(10,26,47,0.8) 50%, var(--deep-black) 100%);
  }

  .sg-ai__hero-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

  .sg-ai__hero-orb {
    position: absolute; width: 500px; height: 500px; top: 50%; left: 50%;
    transform: translate(-50%, -50%); z-index: 1; pointer-events: none;
  }
  .sg-ai__hero-orb-inner {
    width: 100%; height: 100%; border-radius: 50%;
    background: radial-gradient(circle, rgba(198,167,92,0.08) 0%, rgba(26,111,239,0.04) 40%, transparent 70%);
    animation: sgOrbPulse 4s ease-in-out infinite; filter: blur(40px);
  }
  @keyframes sgOrbPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
  }

  .sg-ai__hero-content {
    position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 0 20px;
  }

  .sg-ai__hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 30px;
    opacity: 0; animation: sgFadeUp 1s var(--ease-luxury) 0.3s forwards;
  }

  .sg-ai__pulse-dot {
    width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
    animation: sgPulse 2s ease-in-out infinite; box-shadow: 0 0 12px var(--gold-glow);
  }
  @keyframes sgPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }

  .sg-ai__hero-title {
    font-family: var(--ff-display); font-size: clamp(42px, 7vw, 88px);
    font-weight: 400; line-height: 1.05; letter-spacing: -1px;
    margin-bottom: 10px; opacity: 0; animation: sgFadeUp 1s var(--ease-luxury) 0.5s forwards;
  }
  .sg-ai__hero-title em { font-style: italic; color: var(--gold); }

  .sg-ai__hero-subtitle {
    font-family: var(--ff-display); font-size: clamp(16px, 2.2vw, 24px); font-weight: 300;
    color: var(--text-secondary); letter-spacing: 1px; margin-bottom: 30px;
    opacity: 0; animation: sgFadeUp 1s var(--ease-luxury) 0.7s forwards;
  }

  .sg-ai__hero-desc {
    font-size: clamp(15px, 1.6vw, 18px); font-weight: 300; color: var(--text-muted);
    max-width: 600px; margin: 0 auto 45px; line-height: 1.8;
    opacity: 0; animation: sgFadeUp 1s var(--ease-luxury) 0.9s forwards;
  }

  @keyframes sgFadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

  .sg-ai__hero-ctas {
    display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
    opacity: 0; animation: sgFadeUp 1s var(--ease-luxury) 1.1s forwards;
  }

  /* Buttons */
  .sg-ai .sg-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; font-family: var(--ff-body); font-size: 14px;
    font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
    text-decoration: none; border-radius: 2px; transition: all 0.4s var(--ease-luxury);
    cursor: pointer; border: none; position: relative; overflow: hidden;
  }
  .sg-ai .sg-btn--primary {
    background: linear-gradient(135deg, var(--gold) 0%, #B8953F 100%); color: var(--deep-black);
  }
  .sg-ai .sg-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(198,167,92,0.35); }
  .sg-ai .sg-btn--primary::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
  }
  .sg-ai .sg-btn--primary:hover::before { left: 100%; }
  .sg-ai .sg-btn--secondary {
    background: transparent; color: var(--soft-white); border: 1px solid rgba(245,245,245,0.2);
  }
  .sg-ai .sg-btn--secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

  /* Scroll indicator */
  .sg-ai__scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; animation: sgFadeUp 1s var(--ease-luxury) 1.5s forwards; }
  .sg-ai__scroll span { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }
  .sg-ai__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: sgScrollPulse 2s ease-in-out infinite; }
  @keyframes sgScrollPulse { 0%, 100% { opacity: 1; height: 40px; } 50% { opacity: 0.4; height: 25px; } }

  /* ── TRUST BAR ── */
  .sg-ai__trust {
    background: linear-gradient(180deg, var(--deep-black), var(--surface), var(--deep-black));
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0;
  }
  .sg-ai__trust-label { text-align: center; font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 28px; }
  .sg-ai__trust-logos { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 5vw, 60px); flex-wrap: wrap; }
  .sg-ai__trust-logo { font-size: clamp(14px, 1.8vw, 18px); font-weight: 600; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; opacity: 0.5; transition: all 0.4s; }
  .sg-ai__trust-logo:hover { opacity: 1; color: var(--gold-light); }

  /* ── SECTION HEADER ── */
  .sg-ai__sh { text-align: center; margin-bottom: clamp(50px, 6vw, 80px); }
  .sg-ai__sh-eyebrow { font-size: 12px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
  .sg-ai__sh-title { font-family: var(--ff-display); font-size: clamp(30px, 4.5vw, 52px); font-weight: 400; line-height: 1.15; margin-bottom: 20px; }
  .sg-ai__sh-sub { font-size: clamp(15px, 1.5vw, 18px); font-weight: 300; color: var(--text-muted); max-width: 640px; margin: 0 auto; line-height: 1.7; }

  /* ── WHAT IS AI SMART HOME ── */
  .sg-ai__what { background: linear-gradient(180deg, var(--deep-black), var(--midnight), var(--deep-black)); }
  .sg-ai__what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
  .sg-ai__what-title { font-family: var(--ff-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 400; line-height: 1.2; margin-bottom: 24px; }
  .sg-ai__what-title span { color: var(--gold); }
  .sg-ai__what p { font-size: clamp(15px, 1.4vw, 17px); color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
  .sg-ai__what p.sg-highlight { color: var(--gold-light); font-style: italic; font-family: var(--ff-display); font-size: clamp(16px, 1.6vw, 20px); }
  .sg-ai__what-visual { position: relative; aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); background: radial-gradient(ellipse at center, var(--surface), var(--deep-black)); }
  .sg-ai__what-visual canvas { width: 100%; height: 100%; }

  /* ── FEATURES BENTO ── */
  .sg-ai__features { background: var(--deep-black); position: relative; }
  .sg-ai__bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .sg-ai__card {
    background: linear-gradient(145deg, var(--surface), rgba(15,29,51,0.6));
    border: 1px solid var(--border); border-radius: 12px;
    padding: clamp(30px, 3vw, 50px); position: relative; overflow: hidden;
    transition: all 0.5s var(--ease-luxury);
  }
  .sg-ai__card:hover { border-color: var(--gold-glow); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--gold-dim); }
  .sg-ai__card--lg { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .sg-ai__card-glow { position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, var(--gold-dim), transparent 50%); opacity: 0; transition: opacity 0.5s; pointer-events: none; }
  .sg-ai__card:hover .sg-ai__card-glow { opacity: 1; }
  .sg-ai__card-icon { width: 56px; height: 56px; border-radius: 12px; background: var(--gold-dim); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; position: relative; z-index: 1; }
  .sg-ai__card-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: #fff; stroke-width: 1.5; }
  .sg-ai__card h3 { font-family: var(--ff-display); font-size: clamp(20px, 2vw, 26px); font-weight: 500; margin-bottom: 14px; position: relative; z-index: 1; }
  .sg-ai__card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; font-weight: 300; position: relative; z-index: 1; }

  /* ── SCENES ── */
  .sg-ai__scenes { background: linear-gradient(180deg, var(--deep-black), var(--midnight)); position: relative; overflow: hidden; }
  .sg-ai__scenes-ambient { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 70% at 20% 80%, rgba(26,111,239,0.05), transparent 70%), radial-gradient(ellipse 50% 70% at 80% 20%, rgba(198,167,92,0.05), transparent 70%); pointer-events: none; }
  .sg-ai__scenes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .sg-ai__scene { background: linear-gradient(160deg, var(--surface), var(--deep-black)); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; cursor: pointer; transition: all 0.5s var(--ease-luxury); }
  .sg-ai__scene:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px var(--gold-dim); }
  .sg-ai__scene-img { height: 180px; position: relative; overflow: hidden; }
  .sg-ai__scene-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-luxury); }
  .sg-ai__scene:hover .sg-ai__scene-img img { transform: scale(1.08); }
  .sg-ai__scene-grad { position: absolute; inset: 0; background: linear-gradient(0deg, var(--deep-black), transparent 60%); }
  .sg-ai__scene-dot { position: absolute; top: 14px; right: 14px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold-glow); animation: sgPulse 2s ease-in-out infinite; }
  .sg-ai__scene-body { padding: 24px; }
  .sg-ai__scene-name { font-family: var(--ff-display); font-size: 20px; font-weight: 500; margin-bottom: 14px; }
  .sg-ai__scene-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .sg-ai__scene-list li { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; font-weight: 300; }
  .sg-ai__scene-list li::before { content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

  /* ── VOICE ── */
  .sg-ai__voice { background: #0B0B0B; }
  .sg-ai__voice-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
  .sg-ai__voice-vis { position: relative; aspect-ratio: 1; max-width: 500px; }
  .sg-ai__wave { position: absolute; border-radius: 50%; border: 1px solid #c7a75c; animation: sgWave 3s ease-out infinite; }
  .sg-ai__wave:nth-child(1) { inset: 20%; animation-delay: 0s; }
  .sg-ai__wave:nth-child(2) { inset: 10%; animation-delay: 0.5s; }
  .sg-ai__wave:nth-child(3) { inset: 0; animation-delay: 1s; }
  @keyframes sgWave { 0% { opacity: 0.6; transform: scale(0.95); } 100% { opacity: 0; transform: scale(1.15); } }
  .sg-ai__voice-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 60px var(--gold-glow); }
  .sg-ai__voice-center svg { width: 40px; height: 40px; fill: #c7a75c; }
  .sg-ai__voice-text h2 { font-family: var(--ff-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 400; line-height: 1.2; margin-bottom: 24px; }
  .sg-ai__voice-text h2 span { color: var(--gold); }
  .sg-ai__voice-text p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; font-weight: 300; margin-bottom: 30px; }
  .sg-ai__platforms { display: flex; gap: 30px; flex-wrap: wrap; }
  .sg-ai__platform { display: flex; align-items: center; gap: 12px; padding: 12px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; transition: all 0.3s; }
  .sg-ai__platform:hover { border-color: var(--gold); background: var(--gold-dim); }
  .sg-ai__platform-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--gold-dim); display: flex; align-items: center; justify-content: center; }
  .sg-ai__platform span { font-size: 14px; font-weight: 500; }

  /* ── DASHBOARD ── */
  .sg-ai__dash { background: linear-gradient(180deg, var(--deep-black), var(--midnight), var(--deep-black)); }
  .sg-ai__dash-frame { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px var(--gold-dim); max-width: 1000px; margin: 0 auto; }
  .sg-ai__dash-topbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; background: var(--surface-light); border-bottom: 1px solid var(--border); }
  .sg-ai__dash-dots { display: flex; gap: 8px; }
  .sg-ai__dash-dot { width: 10px; height: 10px; border-radius: 50%; }
  .sg-ai__dash-dot--r { background: #FF5F56; opacity: 0.7; }
  .sg-ai__dash-dot--y { background: #FFBD2E; opacity: 0.7; }
  .sg-ai__dash-dot--g { background: #27CA40; opacity: 0.7; }
  .sg-ai__dash-title { font-size: 13px; color: var(--text-muted); letter-spacing: 1px; }
  .sg-ai__dash-body { display: grid; grid-template-columns: 200px 1fr; min-height: 400px; }
  .sg-ai__dash-side { padding: 24px; border-right: 1px solid var(--border); display: flex; flex-direction: column; gap: 6px; }
  .sg-ai__dash-nav { padding: 10px 14px; border-radius: 8px; font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; cursor: pointer; transition: all 0.3s; }
  .sg-ai__dash-nav:hover, .sg-ai__dash-nav.sg-active { background: var(--gold-dim); color: var(--gold); }
  .sg-ai__dash-nav svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
  .sg-ai__dash-main { padding: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .sg-ai__widget { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
  .sg-ai__widget-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
  .sg-ai__widget-val { font-size: 28px; font-weight: 600; margin-bottom: 4px; }
  .sg-ai__widget-val .sg-unit { font-size: 16px; color: var(--text-muted); }
  .sg-ai__widget-status { font-size: 12px; color: var(--gold); }
  .sg-ai__widget--wide { grid-column: span 2; }
  .sg-ai__bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; margin-top: 12px; }
  .sg-ai__bar { flex: 1; background: var(--gold-dim); border-radius: 3px 3px 0 0; transition: height 1s var(--ease-luxury); }

  /* ── PROCESS ── */
  .sg-ai__process { background: var(--deep-black); }
  .sg-ai__timeline { display: flex; gap: 0; position: relative; max-width: 1100px; margin: 0 auto; }
  .sg-ai__timeline-line { position: absolute; top: 34px; left: 40px; right: 40px; height: 2px; background: var(--border); }
  .sg-ai__timeline-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transition: width 1.5s var(--ease-luxury); }
  .sg-ai__process.sg-visible .sg-ai__timeline-fill { width: 100%; }
  .sg-ai__step { flex: 1; text-align: center; position: relative; z-index: 1; }
  .sg-ai__step-num { width: 70px; height: 70px; border-radius: 50%; background: var(--surface); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: var(--ff-display); font-size: 24px; font-weight: 500; color: var(--text-muted); transition: all 0.5s var(--ease-luxury); }
  .sg-ai__process.sg-visible .sg-ai__step-num { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 20px var(--gold-dim); }
  .sg-ai__step h3 { font-family: var(--ff-display); font-size: 18px; font-weight: 500; margin-bottom: 8px; }
  .sg-ai__step p { font-size: 13px; color: var(--text-muted); font-weight: 300; max-width: 160px; margin: 0 auto; line-height: 1.6; }

  /* ── GALLERY ── */
  .sg-ai__gallery { background: linear-gradient(180deg, var(--deep-black), var(--midnight), var(--deep-black)); }
  .sg-ai__gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .sg-ai__gallery-item { position: relative; aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); cursor: pointer; transition: all 0.5s var(--ease-luxury); }
  .sg-ai__gallery-item:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
  .sg-ai__gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-luxury); }
  .sg-ai__gallery-item:hover img { transform: scale(1.06); }
  .sg-ai__gallery-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,26,47,0.9), transparent 50%); display: flex; align-items: flex-end; padding: 20px; }
  .sg-ai__gallery-label { font-family: var(--ff-display); font-size: 16px; font-weight: 500; }

  /* ── CTA ── */
  .sg-ai__cta { position: relative; padding: clamp(80px, 12vw, 160px) 0; text-align: center; overflow: hidden; }
  .sg-ai__cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(198,167,92,0.08), transparent 70%), linear-gradient(180deg, var(--deep-black), var(--midnight), var(--deep-black)); }
  .sg-ai__cta-content { position: relative; z-index: 1; }
  .sg-ai__cta h2 { font-family: var(--ff-display); font-size: clamp(32px, 5vw, 56px); font-weight: 400; line-height: 1.15; margin-bottom: 20px; }
  .sg-ai__cta h2 em { font-style: italic; color: var(--gold); }
  .sg-ai__cta p { font-size: clamp(15px, 1.5vw, 18px); color: var(--text-secondary); font-weight: 300; max-width: 560px; margin: 0 auto 40px; line-height: 1.8; }
  .sg-ai__cta-btns { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
  .sg-ai__cta-contact { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
  .sg-ai__cta-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
  .sg-ai__cta-item svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
  .sg-ai .sg-btn--primary{
    background-color: #c6a75c;
  }
.sg-ai__cta-item a{
  color: #c6a75c;
      display: flex;
    gap: 5px;
    align-items: center;
}
.sg-ai__cta-item svg{
  stroke: #c6a75c;
  width: 20px;
}
.sg-ai .sg-btn--secondary svg{
  width: 16px;
  stroke: #fff;
}

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .sg-ai__bento { grid-template-columns: repeat(2, 1fr); }
    .sg-ai__card--lg { grid-column: span 2; }
    .sg-ai__scenes-grid { grid-template-columns: repeat(2, 1fr); }
    .sg-ai__gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .sg-ai__timeline { flex-wrap: wrap; gap: 30px; justify-content: center; }
    .sg-ai__timeline-line { display: none; }
    .sg-ai__step { flex: 0 0 30%; }
    .sg-ai__dash-body { grid-template-columns: 1fr; }
    .sg-ai__dash-side { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--border); padding: 16px; }
    .sg-ai__dash-main { grid-template-columns: repeat(2, 1fr); }
    .sg-ai__widget--wide { grid-column: span 2; }
  }

  @media (max-width: 768px) {
    .sg-ai__what-grid { grid-template-columns: 1fr; }
    .sg-ai__voice-split { grid-template-columns: 1fr; }
    .sg-ai__voice-vis { max-width: 300px; margin: 0 auto; }
    .sg-ai__bento { grid-template-columns: 1fr; }
    .sg-ai__card--lg { grid-column: span 1; grid-template-columns: 1fr; }
    .sg-ai__scenes-grid { grid-template-columns: 1fr; }
    .sg-ai__gallery-grid { grid-template-columns: 1fr 1fr; }
    .sg-ai__step { flex: 0 0 45%; }
    .sg-ai__dash-main { grid-template-columns: 1fr; }
    .sg-ai__widget--wide { grid-column: span 1; }
    .sg-ai__hero-orb { width: 300px; height: 300px; }
  }

  @media (max-width: 480px) {
    .sg-ai__gallery-grid { grid-template-columns: 1fr; }
    .sg-ai__step { flex: 0 0 100%; }
    .sg-ai__hero-ctas { flex-direction: column; align-items: center; }
    .sg-ai__cta-btns { flex-direction: column; align-items: center; }
  }