/*
Theme Name: GoGoCard RU Theme
Theme URI: https://example.com/gogocard-ru-theme
Author: OpenAI
Author URI: https://openai.com/
Description: Легкая адаптивная WordPress-тема для русскоязычного сайта GoGoCard.
Version: 1.0.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: gogocard-ru
*/

:root{
  --ggc-bg:#0a1120;
  --ggc-bg-soft:#10192d;
  --ggc-surface:#15233d;
  --ggc-surface-2:#1a2d4d;
  --ggc-card:#ffffff;
  --ggc-card-soft:#f4f8ff;
  --ggc-line:rgba(18,38,63,.10);
  --ggc-line-strong:rgba(54,127,255,.28);
  --ggc-text:#f3f7ff;
  --ggc-text-soft:#bfd0ea;
  --ggc-muted:#8ea4c5;
  --ggc-heading-dark:#10203b;
  --ggc-body-dark:#47617f;
  --ggc-accent:#2f80ff;
  --ggc-accent-dark:#1f67d6;
  --ggc-accent-soft:#eaf3ff;
  --ggc-danger:#ff7272;
  --ggc-shadow:0 20px 60px rgba(6,18,38,.22);
  --ggc-radius:24px;
  --ggc-radius-sm:16px;
  --ggc-container:1240px;
  --ggc-header-h:86px;
}
*,
*::before,
*::after{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at top right, rgba(67,132,255,.16), transparent 24%),
    radial-gradient(circle at top left, rgba(95,166,255,.08), transparent 20%),
    linear-gradient(180deg,#08101e 0%,#0c1730 50%,#0d1833 100%);
  color:var(--ggc-text);
  line-height:1.65;
  min-width:320px;
  overflow-x:hidden;
}

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

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

button,
input,
textarea,
select{
  font:inherit;
}

ul,ol{
  padding-left:1.25rem;
}

.ggc-site{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.ggc-main{
  flex:1 0 auto;
}

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

.ggc-section{
  padding:72px 0;
}

.ggc-section-sm{
  padding:48px 0;
}

.ggc-section-head{
  max-width:820px;
  margin-bottom:32px;
}

.ggc-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border:1px solid rgba(47,128,255,.18);
  background:rgba(47,128,255,.10);
  color:#7db3ff;
  border-radius:999px;
  font-size:14px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:.02em;
}

.ggc-title{
  margin:16px 0 14px;
  font-size:clamp(30px,4vw,56px);
  line-height:1.08;
  font-weight:800;
  letter-spacing:-.03em;
}

.ggc-title-md{
  margin:0 0 12px;
  font-size:clamp(28px,3vw,40px);
  line-height:1.12;
  letter-spacing:-.02em;
}

.ggc-text,
.ggc-section-head p,
.ggc-entry p{
  color:var(--ggc-text-soft);
  font-size:17px;
}

.ggc-lead{
  font-size:19px;
  color:var(--ggc-text-soft);
  max-width:760px;
}

.ggc-grid{
  display:grid;
  gap:24px;
}

.ggc-grid-2{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.ggc-grid-3{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.ggc-grid-4{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.ggc-card{
  background:linear-gradient(180deg,#ffffff 0%, #f7fbff 100%);
  border:1px solid rgba(20,50,90,.08);
  border-radius:var(--ggc-radius);
  box-shadow:var(--ggc-shadow);
  color:var(--ggc-heading-dark);
}

.ggc-card-inner{
  padding:28px;
}

.ggc-soft{
  background:linear-gradient(180deg,#eef5ff 0%, #f8fbff 100%);
  border:1px solid rgba(47,128,255,.14);
}

.ggc-btn-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:26px;
}

.ggc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-weight:800;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  border:1px solid transparent;
}

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

.ggc-btn-primary{
  color:#0d1406;
  background:linear-gradient(180deg,var(--ggc-accent),#a8f019);
  box-shadow:0 10px 30px rgba(183,255,57,.22);
}

.ggc-btn-secondary{
  background:rgba(255,255,255,.04);
  border-color:var(--ggc-line);
  color:var(--ggc-text);
}

.ggc-btn-secondary:hover{
  border-color:rgba(183,255,57,.35);
  background:rgba(183,255,57,.06);
}

.ggc-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:24px 0 0;
}

.ggc-badge{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--ggc-line);
  color:var(--ggc-text-soft);
  font-size:14px;
  font-weight:700;
}

.ggc-header{
position:sticky;
top:0;
z-index:1000;
border-bottom:1px solid rgba(255,255,255,.06);
backdrop-filter:blur(18px);
background:rgba(9,17,33,.82);
}

.ggc-header-wrap{
  min-height:var(--ggc-header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.ggc-brand{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}

.ggc-logo{
  width:42px;
  height:42px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--ggc-accent),#79b80f);
  box-shadow:0 10px 30px rgba(183,255,57,.22);
  position:relative;
}

.ggc-logo::before{
  content:"";
  position:absolute;
  inset:10px;
  border-radius:10px;
  background:#0f141b;
}

.ggc-brand-name{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.ggc-brand-name strong{
  font-size:18px;
  letter-spacing:-.02em;
}

.ggc-brand-name span{
  font-size:12px;
  color:var(--ggc-muted);
}

.ggc-nav{
  display:flex;
  align-items:center;
  gap:24px;
}

.ggc-nav-menu{
  display:flex;
  align-items:center;
  gap:8px;
}

.ggc-nav-menu ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:4px;
}

.ggc-nav-menu li{
  position:relative;
}

.ggc-nav-menu a{
  display:block;
  padding:12px 14px;
  border-radius:12px;
  font-weight:700;
  color:var(--ggc-text-soft);
}

.ggc-nav-menu a:hover,
.ggc-nav-menu .current-menu-item > a,
.ggc-nav-menu .current_page_item > a{
  color:var(--ggc-text);
  background:rgba(255,255,255,.04);
}

.ggc-burger{
  display:none;
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid var(--ggc-line);
  background:rgba(255,255,255,.04);
  position:relative;
  cursor:pointer;
}

.ggc-burger span,
.ggc-burger::before,
.ggc-burger::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  height:2px;
  background:var(--ggc-text);
  transition:transform .2s ease, opacity .2s ease, top .2s ease;
}

.ggc-burger::before{top:15px}
.ggc-burger span{top:22px}
.ggc-burger::after{top:29px}

.ggc-burger.is-active::before{
  top:22px;
  transform:rotate(45deg);
}
.ggc-burger.is-active span{
  opacity:0;
}
.ggc-burger.is-active::after{
  top:22px;
  transform:rotate(-45deg);
}

.ggc-mobile-cta{
  display:none;
}

.ggc-hero{
  padding:56px 0 42px;
}

.ggc-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr);
  gap:34px;
  align-items:center;
}

.ggc-hero-card{
  position:relative;
  overflow:hidden;
  min-height:520px;
  padding:32px;
}

.ggc-hero-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(circle at 20% 10%, rgba(183,255,57,.22), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.10), transparent 22%);
  pointer-events:none;
}

.ggc-hero-media{
  position:relative;
  z-index:1;
  height:100%;
  display:grid;
  place-items:center;
}

.ggc-ui-stack{
  width:min(100%,480px);
  display:grid;
  gap:16px;
}

.ggc-ui-panel{
  padding:20px;
  border-radius:24px;
  background:linear-gradient(180deg,#131d27,#0f1720);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--ggc-shadow);
}

.ggc-ui-card{
  border-radius:24px;
  padding:26px;
  background:linear-gradient(135deg,#202d3a,#121922);
  border:1px solid rgba(183,255,57,.18);
  position:relative;
  overflow:hidden;
}

.ggc-ui-card::after{
  content:"";
  position:absolute;
  inset:auto -20% -40% auto;
  width:220px;
  height:220px;
  background:radial-gradient(circle, rgba(183,255,57,.16), transparent 64%);
}

.ggc-ui-chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.ggc-ui-chip{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  font-size:13px;
  color:var(--ggc-text-soft);
}

.ggc-metrics{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:30px;
}

.ggc-metric{
  padding:20px;
  border-radius:20px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--ggc-line);
}

.ggc-metric strong{
  display:block;
  font-size:28px;
  line-height:1;
  margin-bottom:8px;
}

.ggc-feature-card h3,
.ggc-price-card h3,
.ggc-mini-card h3,
.ggc-faq-item h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.2;
  letter-spacing:-.02em;
}

.ggc-feature-list,
.ggc-check-list,
.ggc-limit-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

.ggc-feature-list li,
.ggc-check-list li,
.ggc-limit-list li{
  padding-left:28px;
  position:relative;
  color:var(--ggc-text-soft);
}

.ggc-feature-list li::before,
.ggc-check-list li::before,
.ggc-limit-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.45em;
  width:14px;
  height:14px;
  border-radius:50%;
  background:var(--ggc-accent);
  box-shadow:0 0 0 4px rgba(183,255,57,.12);
}

.ggc-price-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}

.ggc-price-card{
  position:relative;
  overflow:hidden;
}

.ggc-price-card .ggc-card-inner{
  padding:30px;
}

.ggc-label{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#edf5ff;
  border:1px solid rgba(47,128,255,.16);
  color:var(--ggc-accent);
  font-size:13px;
  font-weight:800;
  margin-bottom:14px;
}

.ggc-price{
  display:flex;
  align-items:flex-end;
  gap:10px;
  margin:10px 0 14px;
}

.ggc-price strong{
  font-size:44px;
  line-height:1;
  letter-spacing:-.03em;
}

.ggc-price span{
  color:var(--ggc-text-soft);
  font-weight:700;
}

.ggc-old-price{
  color:var(--ggc-muted);
  text-decoration:line-through;
  font-weight:700;
}

.ggc-specs{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:18px;
}

.ggc-spec{
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--ggc-line);
}

.ggc-spec small{
  display:block;
  color:var(--ggc-muted);
  margin-bottom:6px;
}

.ggc-spec strong{
  display:block;
  font-size:15px;
  line-height:1.4;
}

.ggc-logos{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:12px;
}

.ggc-logo-pill{
  min-height:64px;
  display:grid;
  place-items:center;
  border-radius:18px;
  border:1px solid var(--ggc-line);
  background:rgba(255,255,255,.03);
  color:var(--ggc-text-soft);
  font-weight:800;
  text-align:center;
  padding:12px;
}

.ggc-split{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,.9fr);
  gap:24px;
  align-items:start;
}

.ggc-cta{
  position:relative;
  overflow:hidden;
}

.ggc-cta .ggc-card-inner{
  padding:34px;
}

.ggc-cta::before{
  content:"";
  position:absolute;
  inset:auto -5% -45% auto;
  width:280px;
  height:280px;
  background:radial-gradient(circle, rgba(183,255,57,.16), transparent 68%);
}

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

.ggc-faq-item{
  border-radius:20px;
  border:1px solid var(--ggc-line);
  background:rgba(255,255,255,.03);
  overflow:hidden;
}

.ggc-faq-question{
  width:100%;
  text-align:left;
  border:0;
  background:transparent;
  color:var(--ggc-text);
  padding:22px 24px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  font-size:18px;
  font-weight:800;
}

.ggc-faq-question::after{
  content:"+";
  flex-shrink:0;
  font-size:28px;
  line-height:1;
  color:var(--ggc-accent);
}

.ggc-faq-item.is-open .ggc-faq-question::after{
  content:"–";
}

.ggc-faq-answer{
  display:none;
  padding:0 24px 24px;
  color:var(--ggc-text-soft);
}

.ggc-faq-item.is-open .ggc-faq-answer{
  display:block;
}

.ggc-entry{
  padding:42px 0 64px;
}

.ggc-breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  color:var(--ggc-muted);
  font-size:14px;
  margin-bottom:18px;
}

.ggc-page-hero{
  padding:42px 0 12px;
}

.ggc-page-card{
  padding:34px;
}

.ggc-table-wrap{
  overflow:auto;
  border-radius:20px;
  border:1px solid var(--ggc-line);
  background:rgba(255,255,255,.03);
}

.ggc-table{
  width:100%;
  border-collapse:collapse;
  min-width:760px;
}

.ggc-table th,
.ggc-table td{
  padding:16px 18px;
  border-bottom:1px solid var(--ggc-line);
  text-align:left;
  vertical-align:top;
}

.ggc-table th{
  color:var(--ggc-text);
  font-size:14px;
}

.ggc-table td{
  color:var(--ggc-text-soft);
}

.ggc-table tr:last-child td{
  border-bottom:0;
}

.ggc-contact-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:14px;
}

.ggc-contact-list li{
  padding:18px 20px;
  border-radius:18px;
  border:1px solid var(--ggc-line);
  background:rgba(255,255,255,.03);
}

.ggc-post-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.ggc-post-card{
  height:100%;
}

.ggc-post-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  font-size:14px;
  color:var(--ggc-muted);
  margin-bottom:12px;
}

.ggc-footer{
  border-top:1px solid rgba(255,255,255,.05);
  background:#0a0e13;
  margin-top:40px;
}

.ggc-footer-top{
  padding:48px 0 26px;
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:24px;
}

.ggc-footer p,
.ggc-footer li,
.ggc-footer a{
  color:var(--ggc-text-soft);
}

.ggc-footer ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.ggc-footer-bottom{
  padding:20px 0 34px;
  border-top:1px solid rgba(255,255,255,.05);
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:16px;
  color:var(--ggc-muted);
  font-size:14px;
}

.ggc-empty{
  padding:72px 0;
  text-align:center;
}

.screen-reader-text{
  position:absolute!important;
  clip:rect(1px,1px,1px,1px);
  clip-path:inset(50%);
  width:1px;
  height:1px;
  overflow:hidden;
  white-space:nowrap;
}

@media (max-width: 1100px){
  .ggc-hero-grid,
  .ggc-split,
  .ggc-footer-top{
    grid-template-columns:1fr;
  }

  .ggc-grid-4{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .ggc-logos{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }

  .ggc-post-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 997px){
  :root{
    --ggc-header-h:78px;
  }

  .ggc-burger,
  .ggc-mobile-cta{
    display:inline-flex;
  }

  .ggc-mobile-cta{
    min-height:46px;
    padding:0 16px;
  }

  .ggc-nav{
    position:fixed;
    top:var(--ggc-header-h);
    left:16px;
    right:16px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:18px;
    padding:18px;
    border-radius:24px;
    background:rgba(11,15,20,.97);
    border:1px solid var(--ggc-line);
    box-shadow:var(--ggc-shadow);
    max-height:calc(100vh - var(--ggc-header-h) - 24px);
    overflow:auto;
  }

  .ggc-nav.is-open{
    display:flex;
  }

  .ggc-nav-menu,
  .ggc-nav-menu ul{
    width:100%;
  }

  .ggc-nav-menu ul{
    flex-direction:column;
    align-items:stretch;
  }

  .ggc-nav-menu a{
    padding:14px 16px;
  }

  .ggc-header-wrap{
    gap:10px;
  }

  .ggc-price-grid,
  .ggc-grid-3,
  .ggc-grid-2{
    grid-template-columns:1fr;
  }

  .ggc-metrics{
    grid-template-columns:1fr;
  }

  .ggc-logos{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .ggc-specs{
    grid-template-columns:1fr;
  }

  .ggc-hero-card{
    min-height:auto;
  }
}

@media (max-width: 640px){
  .ggc-container{
    width:min(100% - 20px, var(--ggc-container));
  }

  .ggc-section{
    padding:56px 0;
  }

  .ggc-card-inner,
  .ggc-page-card,
  .ggc-hero-card,
  .ggc-cta .ggc-card-inner{
    padding:22px;
  }

  .ggc-title{
    font-size:clamp(30px,9vw,42px);
  }

  .ggc-title-md{
    font-size:clamp(24px,8vw,32px);
  }

  .ggc-price strong{
    font-size:36px;
  }

  .ggc-grid-4{
    grid-template-columns:1fr;
  }

  .ggc-logos{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .ggc-post-grid{
    grid-template-columns:1fr;
  }

  .ggc-brand-name span{
    display:none;
  }
}
.ggc-btn-primary{
  color:#ffffff;
  background:linear-gradient(180deg,#3a8cff,#2f80ff);
  box-shadow:0 10px 30px rgba(47,128,255,.24);
}

.ggc-btn-primary:hover{
  background:linear-gradient(180deg,#4b97ff,#2f80ff);
}

.ggc-btn-secondary{
  background:#2f80ff;
  border-color:rgba(255,255,255,.10);
  color:#e8f1ff;
}

.ggc-btn-secondary:hover{
  border-color:rgba(74,145,255,.35);
  background:rgba(47,128,255,.10);
}
.ggc-card h1,
.ggc-card h2,
.ggc-card h3,
.ggc-card h4,
.ggc-card strong,
.ggc-card th{
  color:var(--ggc-heading-dark);
}

.ggc-card p,
.ggc-card li,
.ggc-card td,
.ggc-card small,
.ggc-card .ggc-text{
  color:var(--ggc-body-dark);
}
.ggc-hero-card{
  position:relative;
  overflow:hidden;
  min-height:520px;
  padding:32px;
  background:linear-gradient(180deg,#ffffff 0%,#f4f9ff 100%);
  border:1px solid rgba(20,50,90,.08);
  border-radius:32px;
  box-shadow:0 30px 80px rgba(7,20,45,.24);
}
.ggc-hero .ggc-hero-card {
	max-width: 580px;}

.ggc-hero-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(circle at 18% 14%, rgba(90,155,255,.14), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(47,128,255,.10), transparent 20%);
  pointer-events:none;
}
.ggc-ui-card{
  border-radius:28px;
  padding:28px;
  background:linear-gradient(135deg,#2e7dff,#65a7ff);
  color:#fff;
  border:0;
  position:relative;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(47,128,255,.28);
}

.ggc-ui-card::after{
  content:"";
  position:absolute;
  inset:auto -20% -45% auto;
  width:240px;
  height:240px;
  background:radial-gradient(circle, rgba(255,255,255,.18), transparent 64%);
}
.ggc-ui-panel{
  padding:20px;
  border-radius:24px;
  background:#ffffff;
  border:1px solid rgba(20,50,90,.08);
  box-shadow:0 14px 40px rgba(10,24,50,.10);
  color:var(--ggc-heading-dark);
}
.ggc-ui-chip{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.22);
  font-size:13px;
  color:#ffffff;
}
.ggc-metric{
  padding:20px;
  border-radius:20px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}

.ggc-metric strong{
  display:block;
  font-size:28px;
  line-height:1;
  margin-bottom:8px;
  color:#ffffff;
}
.ggc-spec{
  padding:14px 16px;
  border-radius:16px;
  background:#f6faff;
  border:1px solid rgba(47,128,255,.10);
}

.ggc-spec small{
  display:block;
  color:#6d86a6;
  margin-bottom:6px;
}

.ggc-spec strong{
  display:block;
  font-size:15px;
  line-height:1.4;
  color:var(--ggc-heading-dark);
}
.ggc-faq-item{
  border-radius:20px;
  border:1px solid rgba(20,50,90,.08);
  background:#ffffff;
  overflow:hidden;
  box-shadow:0 12px 35px rgba(10,24,50,.08);
}

.ggc-faq-question{
  width:100%;
  text-align:left;
  border:0;
  background:transparent;
  color:var(--ggc-heading-dark);
  padding:22px 24px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  font-size:18px;
  font-weight:800;
}

.ggc-faq-question::after{
  content:"+";
  flex-shrink:0;
  font-size:28px;
  line-height:1;
  color:var(--ggc-accent);
}

.ggc-faq-answer{
  display:none;
  padding:0 24px 24px;
  color:var(--ggc-body-dark);
}
.ggc-table-wrap{
  overflow:auto;
  border-radius:20px;
  border:1px solid rgba(20,50,90,.08);
  background:#ffffff;
}

.ggc-table th,
.ggc-table td{
  padding:16px 18px;
  border-bottom:1px solid rgba(20,50,90,.08);
  text-align:left;
  vertical-align:top;
}

.ggc-table th{
  color:var(--ggc-heading-dark);
  font-size:14px;
}

.ggc-table td{
  color:var(--ggc-body-dark);
}
.nav-buttons {
	display: flex;
	gap: 10px;
}
@media (max-width: 1100px){
.ggc-hero .ggc-hero-card {
	margin: 0 auto;}}
	
	@media (max-width: 483px){
.ggc-hero .ggc-ui-card {
	display: none;}}
	@media (max-width: 420px){
    .ggc-hero .ggc-hero-card {
		display: none;}}
@media (max-width: 360px) {
    .ggc-card-inner, .ggc-page-card, .ggc-hero-card, .ggc-cta .ggc-card-inner {
        padding: 12px;
    }
}