:root{
  --bg:#09131f;
  --bg-soft:#0d1b2a;
  --card:#102133;
  --card-2:#13273d;
  --line:rgba(255,255,255,.08);
  --white:#ffffff;
  --text:#dbe7f3;
  --muted:#98abc0;
  --primary:#1dd8d2;
  --primary-2:#12bfb9;
  --accent:#7df3ef;
  --dark:#07111b;
  --shadow:0 20px 60px rgba(0,0,0,.35);
  --radius-lg:28px;
  --radius-md:20px;
  --radius-sm:14px;
  --container:1200px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Plus Jakarta Sans", sans-serif;
  background:linear-gradient(180deg, #07111b 0%, #0b1725 100%);
  color:var(--white);
  line-height:1.65;
  overflow-x:hidden;
}

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

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

button,
input,
select{
  font:inherit;
}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin-inline:auto;
}

.site-bg{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  overflow:hidden;
}

.blur{
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
  opacity:.18;
}

.blur-1{
  width:380px;
  height:380px;
  background:var(--primary);
  top:80px;
  left:-80px;
}

.blur-2{
  width:420px;
  height:420px;
  background:#1b7dff;
  right:-120px;
  top:260px;
}

.grid-glow{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:48px 48px;
  mask-image:radial-gradient(circle at center, rgba(0,0,0,1) 30%, rgba(0,0,0,.2) 70%, transparent 100%);
  opacity:.25;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(16px);
  background:rgba(7,17,27,.74);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.nav-wrap{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:1.25rem;
  font-weight:800;
  letter-spacing:-0.02em;
}

.logo-badge{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, var(--primary), #5af2e3);
  color:#06202c;
  box-shadow:0 12px 30px rgba(29,216,210,.25);
}

.logo-text{
  color:#f4fbff;
}

.logo-text strong{
  color:var(--primary);
  font-weight:800;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:26px;
}

.main-nav a{
  color:#dce8f3;
  font-weight:600;
  transition:.25s ease;
}

.main-nav a:hover{
  color:var(--primary);
}

.nav-login{
  opacity:.9;
}

.nav-cta{
  padding:13px 22px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#05222a !important;
  font-weight:800;
  box-shadow:0 14px 30px rgba(29,216,210,.24);
}

.menu-toggle{
  width:50px;
  height:50px;
  border:none;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.menu-toggle span{
  width:20px;
  height:2px;
  background:#fff;
  display:block;
  transition:.3s ease;
}

.hero{
  padding:72px 0 52px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:38px;
  align-items:center;
}

.hero-content{
  padding-right:12px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:var(--accent);
  font-size:.95rem;
  font-weight:700;
  margin-bottom:22px;
}

.eyebrow-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--primary);
  box-shadow:0 0 0 6px rgba(29,216,210,.15);
}

.hero h1{
  font-size:clamp(2.4rem, 5vw, 4.5rem);
  line-height:1.04;
  letter-spacing:-0.04em;
  margin-bottom:22px;
  max-width:720px;
}

.hero-text{
  max-width:670px;
  color:var(--text);
  font-size:1.08rem;
  margin-bottom:26px;
}

.hero-stats{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:28px;
}

.stat-pill{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  color:#f2fbff;
  font-weight:700;
}

.stat-icon{
  color:var(--primary);
  font-size:.9rem;
}

.hero-actions{
  display:flex;
  gap:14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 24px;
  border-radius:16px;
  font-weight:800;
  transition:.25s ease;
}

.btn-primary{
  background:linear-gradient(135deg, var(--primary), #66f0e5);
  color:#07212a;
  box-shadow:0 18px 40px rgba(29,216,210,.25);
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:#fff;
}

.chat-card{
  background:linear-gradient(180deg, rgba(16,33,51,.95), rgba(11,24,38,.98));
  border:1px solid rgba(125,243,239,.14);
  box-shadow:var(--shadow);
  border-radius:32px;
  padding:28px;
  position:relative;
  overflow:hidden;
}

.chat-card::before{
  content:"";
  position:absolute;
  inset:auto -80px -120px auto;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(29,216,210,.22), transparent 70%);
}

.chat-card-top{
  margin-bottom:22px;
}

.live-badge{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(29,216,210,.12);
  border:1px solid rgba(29,216,210,.18);
  color:var(--accent);
  font-size:.85rem;
  font-weight:800;
  margin-bottom:14px;
}

.chat-card h2{
  font-size:1.85rem;
  line-height:1.15;
  margin-bottom:8px;
}

.chat-card p{
  color:var(--muted);
}

.mode-switch{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:24px 0 18px;
}

.mode-btn{
  min-height:56px;
  border:none;
  border-radius:16px;
  cursor:pointer;
  font-weight:800;
  color:#ebfbff;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  transition:.25s ease;
}

.mode-btn.active{
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#082129;
  box-shadow:0 16px 30px rgba(29,216,210,.22);
}

.chat-meta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:18px;
}

.meta-box{
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
}

.meta-box strong{
  display:block;
  font-size:1rem;
  margin-bottom:2px;
}

.meta-box span{
  color:var(--muted);
  font-size:.92rem;
}

.chat-form{
  display:grid;
  gap:16px;
}

.input-group{
  display:grid;
  gap:8px;
}

.input-group label{
  font-size:.94rem;
  color:#e6f3ff;
  font-weight:700;
}

.input-group input,
.input-group select{
  width:100%;
  min-height:56px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.05);
  color:#fff;
  padding:0 16px;
  outline:none;
}

.input-group input::placeholder{
  color:#95a9be;
}

.checkbox-wrap{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:var(--text);
  font-size:.93rem;
}

.checkbox-wrap input{
  margin-top:4px;
  accent-color:var(--primary);
}

.chat-submit{
  min-height:58px;
  border:none;
  border-radius:18px;
  cursor:pointer;
  background:linear-gradient(135deg, var(--primary), #63f3df);
  color:#082129;
  font-size:1rem;
  font-weight:900;
  box-shadow:0 18px 34px rgba(29,216,210,.23);
  transition:.25s ease;
}

.chat-submit:hover{
  transform:translateY(-2px);
}

.chat-note{
  margin-top:16px;
  color:var(--muted);
  font-size:.95rem;
}

.trust-strip{
  padding:18px 0 36px;
}

.trust-items{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}

.trust-items div{
  padding:16px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.06);
  color:#dbe9f5;
  text-align:center;
  font-weight:700;
}

section{
  position:relative;
}

.features,
.safety-section,
.seo-content,
.faq-section{
  padding:90px 0;
}

.light-section,
.dark-section{
  padding:90px 0;
}

.light-section{
  background:#f4fbfd;
  color:#08111c;
}

.dark-section{
  background:linear-gradient(180deg, #091521 0%, #0b1723 100%);
}

.section-heading{
  max-width:720px;
  margin-bottom:34px;
}

.section-heading.center{
  margin-inline:auto;
  text-align:center;
}

.section-kicker{
  display:inline-block;
  margin-bottom:12px;
  color:var(--primary);
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:.82rem;
}

.section-heading h2,
.content-box h2{
  font-size:clamp(2rem, 4vw, 3.2rem);
  line-height:1.08;
  letter-spacing:-0.03em;
  margin-bottom:14px;
}

.section-heading p,
.content-box p{
  color:inherit;
  opacity:.82;
}

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

.feature-card{
  background:linear-gradient(180deg, rgba(17,34,52,.9), rgba(12,23,35,.96));
  border:1px solid rgba(255,255,255,.07);
  border-radius:26px;
  padding:28px;
  box-shadow:var(--shadow);
  transition:.28s ease;
}

.feature-card:hover{
  transform:translateY(-4px);
  border-color:rgba(29,216,210,.22);
}

.feature-icon{
  width:62px;
  height:62px;
  border-radius:18px;
  display:grid;
  place-items:center;
  font-size:1.6rem;
  background:rgba(29,216,210,.12);
  margin-bottom:18px;
}

.feature-card h3{
  font-size:1.35rem;
  margin-bottom:10px;
}

.feature-card p{
  color:var(--text);
  opacity:.9;
}

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

.split-grid.reverse{
  grid-template-columns:1fr 1fr;
}

.visual-card{
  position:relative;
  min-height:420px;
  border-radius:32px;
  background:linear-gradient(135deg, #dff9f8, #f7ffff);
  border:1px solid rgba(0,0,0,.04);
  overflow:hidden;
  display:grid;
  place-items:center;
}

.mock-bubble{
  position:absolute;
  border-radius:50%;
  filter:blur(2px);
}

.bubble-a{
  width:180px;
  height:180px;
  background:rgba(29,216,210,.15);
  top:40px;
  left:40px;
}

.bubble-b{
  width:130px;
  height:130px;
  background:rgba(0,130,255,.1);
  bottom:40px;
  right:50px;
}

.device-card{
  width:min(340px, 80%);
  background:#fff;
  border-radius:28px;
  box-shadow:0 24px 60px rgba(0,0,0,.14);
  overflow:hidden;
  position:relative;
  z-index:2;
}

.device-top{
  display:flex;
  gap:8px;
  padding:16px;
  background:#edf8fb;
}

.device-top span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#bfd9e1;
}

.device-body{
  padding:28px;
  display:grid;
  gap:20px;
}

.device-avatar{
  width:90px;
  height:90px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--primary), #9af5ef);
}

.device-lines{
  display:grid;
  gap:12px;
}

.device-lines span{
  height:12px;
  border-radius:999px;
  background:#dfeef4;
}

.device-lines span:nth-child(2){
  width:85%;
}

.device-lines span:nth-child(3){
  width:65%;
}

.content-box{
  color:inherit;
}

.check-list{
  list-style:none;
  display:grid;
  gap:12px;
  margin-top:22px;
}

.check-list li{
  position:relative;
  padding-left:30px;
  font-weight:600;
}

.check-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--primary);
  font-weight:900;
}

.premium-panel{
  display:grid;
  gap:16px;
}

.panel-card{
  padding:24px;
  border-radius:24px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.07);
}

.panel-card strong{
  display:block;
  font-size:1.2rem;
  margin-bottom:6px;
}

.panel-card span{
  color:var(--text);
  opacity:.88;
}

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

.safety-card{
  padding:26px;
  background:linear-gradient(180deg, rgba(17,34,52,.9), rgba(12,23,35,.96));
  border:1px solid rgba(255,255,255,.07);
  border-radius:24px;
}

.safety-card span{
  display:inline-flex;
  width:48px;
  height:48px;
  border-radius:14px;
  background:rgba(29,216,210,.12);
  align-items:center;
  justify-content:center;
  color:var(--accent);
  font-weight:800;
  margin-bottom:18px;
}

.safety-card h3{
  margin-bottom:10px;
  font-size:1.25rem;
}

.safety-card p{
  color:var(--text);
}

.seo-content{
  background:#f7fbfd;
  color:#0a1520;
}

.narrow{
  width:min(900px, calc(100% - 32px));
}

.seo-text{
  display:grid;
  gap:18px;
  font-size:1.06rem;
  color:#233546;
}

.faq-section{
  background:linear-gradient(180deg, #0a1520 0%, #09131f 100%);
}

.faq-list{
  display:grid;
  gap:14px;
}

.faq-list details{
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.07);
  border-radius:20px;
  padding:20px 22px;
}

.faq-list summary{
  cursor:pointer;
  list-style:none;
  font-weight:800;
  font-size:1.05rem;
  position:relative;
  padding-right:24px;
}

.faq-list summary::-webkit-details-marker{
  display:none;
}

.faq-list summary::after{
  content:"+";
  position:absolute;
  right:0;
  top:0;
  color:var(--primary);
  font-size:1.2rem;
  font-weight:900;
}

.faq-list details[open] summary::after{
  content:"−";
}

.faq-list p{
  padding-top:12px;
  color:var(--text);
}

.site-footer{
  border-top:1px solid rgba(255,255,255,.06);
  background:#07111b;
  padding:70px 0 24px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr .8fr .8fr .8fr;
  gap:28px;
}

.footer-brand p{
  color:var(--muted);
  margin-top:16px;
  max-width:420px;
}

.footer-links{
  display:grid;
  gap:10px;
  align-content:start;
}

.footer-links h4{
  margin-bottom:6px;
  font-size:1rem;
}

.footer-links a{
  color:#cbd8e5;
}

.footer-links a:hover{
  color:var(--primary);
}

.footer-bottom{
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.06);
  text-align:center;
  color:#98abc0;
}

.desktop-only{
  display:flex;
}

/* Responsive */
@media (max-width: 1100px){
  .hero-grid,
  .split-grid,
  .split-grid.reverse,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .hero-content{
    order:2;
    padding-right:0;
  }

  .chat-card{
    order:1;
  }

  .feature-grid,
  .safety-grid,
  .trust-items{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 860px){
  .menu-toggle{
    display:flex;
  }

  .main-nav{
    position:absolute;
    top:100%;
    left:16px;
    right:16px;
    background:rgba(8,19,31,.98);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:18px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    box-shadow:var(--shadow);
  }

  .main-nav.active{
    display:flex;
  }

  .hero{
    padding-top:38px;
  }

  .hero h1{
    font-size:2.5rem;
  }

  .feature-grid,
  .safety-grid,
  .trust-items{
    grid-template-columns:1fr;
  }

  .desktop-only{
    display:none;
  }
}

@media (max-width: 640px){
  .nav-wrap{
    min-height:74px;
  }

  .logo{
    font-size:1.08rem;
  }

  .logo-badge{
    width:38px;
    height:38px;
  }

  .container{
    width:min(100% - 20px, var(--container));
  }

  .hero-grid{
    gap:22px;
  }

  .chat-card{
    padding:20px;
    border-radius:24px;
  }

  .hero h1{
    font-size:2.05rem;
  }

  .hero-text{
    font-size:1rem;
  }

  .hero-stats{
    gap:10px;
  }

  .stat-pill{
    width:100%;
    justify-content:center;
  }

  .mode-switch,
  .chat-meta{
    grid-template-columns:1fr;
  }

  .section-heading h2,
  .content-box h2{
    font-size:1.9rem;
  }

  .visual-card{
    min-height:320px;
  }

  .device-card{
    width:86%;
  }

  .features,
  .safety-section,
  .seo-content,
  .faq-section,
  .light-section,
  .dark-section{
    padding:68px 0;
  }
}
.cg-shell{
  width:min(1180px, calc(100% - 28px));
  margin:0 auto;
}

/* TOPBAR */
.cg-topbar{
  position:sticky;
  top:0;
  z-index:99;
  background:rgba(7,17,27,.78);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.cg-topbar-row{
  min-height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.cg-brandmark{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.cg-brandmark-icon{
  width:38px;
  height:38px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-weight:800;
  font-size:1rem;
  color:#041a22;
  background:linear-gradient(135deg, #1dd8d2, #79f3ea);
  box-shadow:0 10px 26px rgba(29,216,210,.22);
}

.cg-brandmark-text{
  font-size:1.22rem;
  font-weight:800;
  letter-spacing:-0.02em;
  color:#f4fbff;
}

.cg-brandmark-text strong{
  color:#1dd8d2;
  font-weight:800;
}

.cg-menu-panel{
  display:flex;
  align-items:center;
  gap:24px;
}

.cg-menu-panel a{
  color:#d9e8f2;
  text-decoration:none;
  font-weight:600;
  transition:.22s ease;
}

.cg-menu-panel a:hover{
  color:#1dd8d2;
}

.cg-menu-link-soft{
  opacity:.9;
}

.cg-menu-link-cta{
  padding:11px 18px;
  border-radius:999px;
  background:linear-gradient(135deg, #1dd8d2, #56eee0);
  color:#082029 !important;
  font-weight:800 !important;
  box-shadow:0 14px 30px rgba(29,216,210,.2);
}

.cg-nav-toggle{
  width:46px;
  height:46px;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.cg-nav-toggle span{
  width:20px;
  height:2px;
  background:#fff;
  display:block;
}

/* HERO */
.cg-hero-zone{
  padding:56px 0 48px;
}

.cg-hero-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.1fr) 400px;
  gap:42px;
  align-items:center;
}

.cg-hero-copy{
  max-width:700px;
}

.cg-hero-mini{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  font-size:.84rem;
  font-weight:800;
  color:#7df3ef;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  margin-bottom:18px;
}

.cg-hero-copy h1{
  margin:0 0 16px;
  font-size:clamp(2.2rem, 4.6vw, 4.2rem);
  line-height:1.03;
  letter-spacing:-0.04em;
  color:#ffffff;
  max-width:760px;
}

.cg-hero-copy p{
  margin:0;
  max-width:620px;
  color:#b8c9d8;
  font-size:1.05rem;
  line-height:1.75;
}

.cg-hero-cta-row{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:28px;
}

.cg-main-cta,
.cg-sub-cta{
  min-height:54px;
  padding:0 22px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:800;
  transition:.22s ease;
}

.cg-main-cta{
  color:#082029;
  background:linear-gradient(135deg, #1dd8d2, #67f3e6);
  box-shadow:0 18px 34px rgba(29,216,210,.2);
}

.cg-main-cta:hover{
  transform:translateY(-2px);
}

.cg-sub-cta{
  color:#ffffff;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.035);
}

.cg-sub-cta:hover{
  border-color:rgba(29,216,210,.28);
  color:#1dd8d2;
}

/* ENTRY CARD */
.cg-entry-card{
  width:100%;
  max-width:400px;
  justify-self:end;
  padding:24px;
  border-radius:26px;
  background:linear-gradient(180deg, rgba(14,28,44,.95), rgba(10,20,32,.98));
  border:1px solid rgba(125,243,239,.12);
  box-shadow:0 24px 60px rgba(0,0,0,.28);
}

.cg-entry-head{
  margin-bottom:18px;
}

.cg-entry-badge{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:800;
  color:#7df3ef;
  background:rgba(29,216,210,.1);
  border:1px solid rgba(29,216,210,.16);
  margin-bottom:12px;
}

.cg-entry-head h2{
  margin:0 0 6px;
  font-size:1.55rem;
  line-height:1.1;
  color:#fff;
}

.cg-entry-head p{
  margin:0;
  color:#93a9bd;
  font-size:.95rem;
}

.cg-entry-switcher{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:16px;
}

.cg-entry-tab{
  min-height:48px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.045);
  color:#ebfbff;
  font-weight:800;
  cursor:pointer;
}

.cg-entry-tab.is-active{
  background:linear-gradient(135deg, #1dd8d2, #53ebdf);
  color:#07212a;
  border-color:transparent;
}

.cg-entry-form{
  display:grid;
  gap:14px;
}

.cg-field-stack{
  display:grid;
  gap:7px;
}

.cg-field-stack label{
  color:#e5f1fb;
  font-size:.92rem;
  font-weight:700;
}

.cg-field-stack input,
.cg-field-stack select{
  width:100%;
  min-height:50px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.09);
  background:rgba(255,255,255,.045);
  color:#fff;
  padding:0 14px;
  outline:none;
}

.cg-field-stack input::placeholder{
  color:#8fa5b8;
}

.cg-checkline{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#b8cad9;
  font-size:.88rem;
  line-height:1.5;
}

.cg-checkline input{
  margin-top:3px;
  accent-color:#1dd8d2;
}

.cg-entry-submit{
  min-height:52px;
  border:none;
  border-radius:16px;
  cursor:pointer;
  color:#082029;
  font-size:.98rem;
  font-weight:900;
  background:linear-gradient(135deg, #1dd8d2, #67f3e6);
  box-shadow:0 16px 30px rgba(29,216,210,.2);
  transition:.22s ease;
}

.cg-entry-submit:hover{
  transform:translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 980px){
  .cg-hero-layout{
    grid-template-columns:1fr;
    gap:26px;
  }

  .cg-entry-card{
    order:-1;
    max-width:100%;
    justify-self:stretch;
  }

  .cg-hero-copy{
    max-width:100%;
    text-align:left;
  }
}

@media (max-width: 820px){
  .cg-nav-toggle{
    display:flex;
  }

  .cg-menu-panel{
    position:absolute;
    top:100%;
    left:14px;
    right:14px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    padding:18px;
    border-radius:20px;
    background:rgba(8,18,29,.98);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 40px rgba(0,0,0,.28);
  }

  .cg-menu-panel.is-open{
    display:flex;
  }
}

@media (max-width: 640px){
  .cg-topbar-row{
    min-height:62px;
  }

  .cg-hero-zone{
    padding:28px 0 34px;
  }

  .cg-hero-copy h1{
    font-size:2rem;
  }

  .cg-hero-copy p{
    font-size:.98rem;
    line-height:1.7;
  }

  .cg-hero-cta-row{
    flex-direction:column;
    align-items:stretch;
  }

  .cg-main-cta,
  .cg-sub-cta{
    width:100%;
  }

  .cg-entry-card{
    padding:18px;
    border-radius:22px;
  }
}
.legal-page-wrap{
  min-height:100vh;
}

.legal-hero-block{
  padding:64px 0 26px;
}

.legal-hero-inner{
  max-width:860px;
}

.legal-mini{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  font-size:.84rem;
  font-weight:800;
  color:#7df3ef;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  margin-bottom:18px;
}

.legal-hero-inner h1{
  margin:0 0 14px;
  font-size:clamp(2.2rem, 4vw, 3.6rem);
  line-height:1.04;
  letter-spacing:-0.04em;
  color:#fff;
}

.legal-hero-inner p{
  margin:0;
  max-width:760px;
  color:#b8c9d8;
  font-size:1.03rem;
  line-height:1.75;
}

.legal-content-block{
  padding:24px 0 80px;
}

.legal-card{
  background:linear-gradient(180deg, rgba(14,28,44,.95), rgba(10,20,32,.98));
  border:1px solid rgba(125,243,239,.12);
  border-radius:28px;
  padding:30px;
  box-shadow:0 24px 60px rgba(0,0,0,.24);
}

.legal-section + .legal-section{
  margin-top:26px;
  padding-top:26px;
  border-top:1px solid rgba(255,255,255,.06);
}

.legal-section h2{
  margin:0 0 10px;
  font-size:1.35rem;
  color:#fff;
}

.legal-section p{
  margin:0 0 12px;
  color:#aac0d2;
  line-height:1.8;
}

.legal-section p:last-child{
  margin-bottom:0;
}

@media (max-width: 640px){
  .legal-hero-block{
    padding:34px 0 18px;
  }

  .legal-content-block{
    padding:18px 0 60px;
  }

  .legal-card{
    padding:20px;
    border-radius:22px;
  }

  .legal-section h2{
    font-size:1.15rem;
  }

  .legal-hero-inner h1{
    font-size:2rem;
  }
}