/* ============================================================
   Photo Gallery – Ultra Modern 2026
   Supsystic brand · High-converting · Dark hero + light sections
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video, svg { display: block; max-width: 100%; }
a { text-decoration: none; }
p { text-wrap: pretty; line-height: 1.65; }

:root {
  --brand:       #52bac5;
  --brand-dark:  #3a9faa;
  --brand-glow:  rgba(82,186,197,.28);
  --navy:        #2e3e58;
  --dark:        #1a2333;
  --dark2:       #0f1720;
  --white:       #ffffff;
  --off:         #f5f8fb;
  --off2:        #edf1f7;
  --border:      #e2e8f0;
  --text:        #1e2d3d;
  --text-2:      #4a6078;
  --text-3:      #7f96ae;
  --green:       #22c55e;
  --yellow:      #f59e0b;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --font-h:      'Plus Jakarta Sans', 'Inter', sans-serif;
  --r:           14px;
  --r-lg:        22px;
  --r-xl:        32px;
  --sh:          0 2px 16px rgba(30,45,61,.07);
  --sh-lg:       0 12px 48px rgba(30,45,61,.13);
  --sh-xl:       0 24px 80px rgba(30,45,61,.18);
  --max:         1180px;
  --ease:        cubic-bezier(.4,0,.2,1);
  --t:           .28s var(--ease);
}

.ggPageContainer {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
/* margin reset только для прямых детей, не рекурсивно */

/* ─── INNER CONTAINERS ─── */
.ggHeroSection,
.ggFvtSectionInner,
.ggHiwSectionInner,
.ggPfSectionInner,
.ggDfdSectionInner,
.ggCapSectionInner,
.ggCasSectionInner,
.ggListSectionInner,
.ggGarSectionInner,
.ggGarInnerSection,
.ggFeatSectionInner,
.ggPrsSectionInner,
.ggSupSectionInner { max-width: var(--max); margin-inline: auto; padding-inline: 24px; }

/* ─────────────────────────────────────────
   HERO  (dark gradient, floating UI card)
───────────────────────────────────────── */
.ggHeroWrapper {
  background: linear-gradient(145deg, var(--dark2) 0%, var(--dark) 45%, #1c2e46 100%);
  position: relative;
  overflow: hidden;
}
.ggHeroWrapper::before {
  content: '';
  position: absolute;
  top: -180px; right: -120px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,186,197,.18) 0%, transparent 68%);
  pointer-events: none;
}
.ggHeroWrapper::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,186,197,.09) 0%, transparent 70%);
  pointer-events: none;
}

.ggHeroSection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 96px;
  padding-inline: 24px;
  max-width: var(--max);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.ggHeroBadge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(82,186,197,.14);
  border: 1px solid rgba(82,186,197,.32);
  color: #8fd8e2;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px 5px 10px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.ggHeroBadgeDot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px var(--brand);
  animation: ggPulse 2s infinite;
}
@keyframes ggPulse {
  0%,100% { box-shadow: 0 0 6px var(--brand); }
  50%      { box-shadow: 0 0 14px var(--brand); }
}

.ggHeroSectionTitle {
  font-family: var(--font-h);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 22px;
}
.ggHeroSectionTitle span {
  background: linear-gradient(90deg, var(--brand) 0%, #8ce6f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ggHeroSectionSubtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 480px;
}

.ggHeroCtaRow {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}

.ggBtnPrimary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 100px;
  box-shadow: 0 6px 24px var(--brand-glow);
  transition: var(--t);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.ggBtnPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(82,186,197,.42);
  color: var(--white);
}
.ggBtnPrimary svg { width: 16px; height: 16px; }

.ggBtnGhost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.82);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 100px;
  transition: var(--t);
  white-space: nowrap;
}
.ggBtnGhost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.ggBtnGhost svg { width: 16px; height: 16px; }

.ggHeroRatingRow {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ggHeroStars { display: flex; gap: 3px; }
.ggHeroStars svg { width: 16px; height: 16px; fill: var(--yellow); color: var(--yellow); }
.ggHeroRatingText { font-size: 13px; color: rgba(255,255,255,.5); }
.ggHeroRatingText strong { color: rgba(255,255,255,.8); font-weight: 600; }

/* Hero visual */
.ggHeroSectionRight { position: relative; }

.ggHeroMockup {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 16px;
  backdrop-filter: blur(20px);
  box-shadow: var(--sh-xl);
}
.ggHeroMockupBar {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  padding: 2px 0;
}
.ggHeroMockupDot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.ggHeroMockupDot:nth-child(1) { background: #ff5f57; }
.ggHeroMockupDot:nth-child(2) { background: #febc2e; }
.ggHeroMockupDot:nth-child(3) { background: #28c840; }
.ggHeroGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 140px 140px;
  gap: 8px;
}
.ggHeroGridItem {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(82,186,197,.1);
  position: relative;
}
.ggHeroGridItem:first-child { grid-row: 1/3; grid-column: 1/2; }
.ggHeroGridItem img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: .9;
  transition: transform .5s var(--ease), opacity .3s;
}
.ggHeroGridItem:hover img { transform: scale(1.06); opacity: 1; }
.ggHeroGridOverlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,23,32,.5) 100%);
}

/* floating pill */
.ggHeroFloatPill {
  position: absolute;
  bottom: -14px; left: -24px;
  background: var(--white);
  border-radius: var(--r);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--sh-lg);
  z-index: 3;
}
.ggHeroFloatIcon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ggHeroFloatIcon svg { width: 18px; height: 18px; color: #fff; }
.ggHeroFloatText strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.ggHeroFloatText span { font-size: 11px; color: var(--text-3); }

/* ─────────────────────────────────────────
   SECTION COMMON
───────────────────────────────────────── */
.ggSection { padding: 88px 0; }
.ggSectionLight { background: var(--white); }
.ggSectionOff   { background: var(--off); }
.ggSectionDark  { background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 100%); }

.ggSectionLabel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.ggSectionLabel::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--brand);
  border-radius: 2px;
}
.ggSectionTitle {
  font-family: var(--font-h);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.025em;
  color: var(--navy);
  margin-bottom: 14px;
}
.ggSectionTitle.white { color: var(--white); }
.ggSectionSub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.68;
  max-width: 600px;
}
.ggSectionSub.white { color: rgba(255,255,255,.65); }
.ggSectionCenter { text-align: center; }
.ggSectionCenter .ggSectionSub { margin-inline: auto; }

/* ── Единые отступы label → title → subtitle для всех секций ── */
.ggPageContainer .ggSectionLabel  { margin-bottom: 10px; display: block; }
.ggPageContainer .ggFvtSectionTitle,
.ggPageContainer .ggHiwSectionTitle,
.ggPageContainer .ggPfSectionTitle,
.ggPageContainer .ggDfdSectionTitle,
.ggPageContainer .ggCapSectionTitle,
.ggPageContainer .ggCasSectionTitle,
.ggPageContainer .ggListSectionTitle,
.ggPageContainer .ggGarSectionTitle,
.ggPageContainer .ggFeatSectionTitle,
.ggPageContainer .ggPrsSectionTitle,
.ggPageContainer .ggSupSectionTitle { margin-top: 0; margin-bottom: 12px; line-height: 1.25; }
.ggPageContainer .ggFvtSectionSubtitle,
.ggPageContainer .ggHiwSectionSubtitle,
.ggPageContainer .ggPfSectionSubtitle,
.ggPageContainer .ggDfdSectionSubtitle,
.ggPageContainer .ggCapSectionSubtitle,
.ggPageContainer .ggCasSectionSubtitle,
.ggPageContainer .ggListSectionSubtitle,
.ggPageContainer .ggGarSectionSubtitle,
.ggPageContainer .ggFeatSectionSubtitle,
.ggPageContainer .ggPrsSectionSubtitle,
.ggPageContainer .ggSupSectionSubtitle { margin-top: 0; margin-bottom: 40px; }

/* ── Центрирование тёмных секций ── */
.ggHiwSectionInner,
.ggCapSectionInner,
.ggSupSectionInner { padding-inline: 24px; }

/* ─────────────────────────────────────────
   FVT – 4-col features (light)
───────────────────────────────────────── */
.ggFvtSection { padding: 80px 0; background: var(--white); }
.ggFvtSectionR1 {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  border-left: 3px solid var(--brand);
  padding-left: 18px;
  margin-bottom: 52px;
  max-width: 820px;
}
.ggFvtSectionTitle {
  font-family: var(--font-h);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.ggFvtSectionSubtitle {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 680px;
}
.ggFvtSectionCols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ggFvtSectionCol {
  background: var(--off);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  border: 1.5px solid transparent;
  transition: var(--t);
}
.ggFvtSectionCol:hover {
  border-color: rgba(82,186,197,.25);
  background: var(--white);
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
}
.ggFvtSectionColIcon {
  width: 52px; height: 52px;
  object-fit: contain;
  margin-bottom: 18px;
}
.ggFvtSectionColTitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.ggFvtSectionColSubtitle {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   HIW – How it works (dark bg)
───────────────────────────────────────── */
.ggHiwSection {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.ggHiwSection::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,186,197,.1) 0%, transparent 70%);
}
.ggHiwSectionTitle {
  font-family: var(--font-h);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.ggHiwSectionSubtitle {
  font-size: 16px;
  color: rgba(255,255,255,.58);
  max-width: 600px;
  margin-bottom: 52px;
  position: relative; z-index: 1;
}
.ggHiwSectionCols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative; z-index: 1;
}
.ggHiwSectionCol {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  padding: 30px 22px;
  position: relative;
  transition: var(--t);
}
.ggHiwSectionCol:hover {
  background: rgba(82,186,197,.1);
  border-color: rgba(82,186,197,.3);
  transform: translateY(-3px);
}
.ggHiwStepNum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  box-shadow: 0 4px 12px var(--brand-glow);
}
.ggHiwSectionColIcon {
  width: 44px; height: 44px;
  object-fit: contain;
  margin-bottom: 14px;
}
.ggHiwSectionColTitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.ggHiwSectionColSubtitle {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   PF – Perfect for (audience cards)
───────────────────────────────────────── */
.ggPfSection { background: var(--off); padding: 88px 0; }
.ggPfSectionTitle {
  font-family: var(--font-h);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.ggPfSectionSubtitle { font-size: 16px; color: var(--text-2); margin-bottom: 10px; max-width: 620px; }
.ggPfSectionSubtitle2 { font-size: 15px; font-weight: 600; color: var(--brand); margin-bottom: 36px; }
.ggPfSectionCols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ggPfSectionCol {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--sh);
  transition: var(--t);
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ggPfSectionCol:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: rgba(82,186,197,.22);
}
.ggPfSectionColIcon {
  width: 52px; height: 52px;
  object-fit: contain;
}
.ggPfSectionColSubtitle { font-size: 15px; color: var(--text-2); line-height: 1.65; }
.ggPfSectionSubtitle3 {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-3);
  text-align: center;
}

/* ─────────────────────────────────────────
   DFD – Developer section
───────────────────────────────────────── */
.ggDfdSection { background: var(--white); padding: 80px 0; }
.ggDfdSectionTitle {
  font-family: var(--font-h);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.ggDfdSectionSubtitle { font-size: 16px; color: var(--text-2); margin-bottom: 40px; }
.ggDfdSectionCols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.ggDfdSectionCol {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--off);
  border-radius: var(--r);
  padding: 18px 20px;
  border: 1.5px solid var(--border);
  transition: var(--t);
}
.ggDfdSectionCol:hover {
  border-color: var(--brand);
  background: rgba(82,186,197,.05);
}
.ggDfdSectionColIcon {
  width: 38px; height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}
.ggDfdSectionColSubtitle { font-size: 14px; font-weight: 600; color: var(--text); }
.ggDfdSectionSubtitle2 {
  margin-top: 32px;
  font-size: 15px;
  color: var(--text-3);
  font-style: italic;
}

/* ─────────────────────────────────────────
   CAP – capabilities banner
───────────────────────────────────────── */
.ggCapSection {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
  padding: 64px 0;
  text-align: center;
}
.ggCapSectionInner .ggSectionLabel {
  display: flex;
  justify-content: center;
}
.ggCapSectionTitle {
  font-family: var(--font-h);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.ggCapSectionSubtitle { font-size: 16px; color: rgba(255,255,255,.6); max-width: 640px; margin-inline: auto; }

/* ─────────────────────────────────────────
   CAS – Scale section
───────────────────────────────────────── */
.ggCasSection { background: var(--dark); padding: 96px 0; position: relative; overflow: hidden; }
.ggCasSection::before {
  content: '';
  position: absolute;
  bottom: -160px; right: -160px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,186,197,.08) 0%, transparent 70%);
}

/* header row: title left + edge pill right */
.ggCasHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.ggCasHeader > div:first-child { flex: 1; min-width: 260px; }
.ggCasSectionTitle {
  font-family: var(--font-h);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.ggCasSectionSubtitle {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 520px;
}

/* edge pill — "The Professional Edge" */
.ggCasEdgePill {
  background: rgba(82,186,197,.1);
  border: 1px solid rgba(82,186,197,.22);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  max-width: 260px;
  flex-shrink: 0;
}
.ggCasEdgePillIcon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.ggCasEdgePillIcon svg { width: 20px; height: 20px; color: #fff; }
.ggCasEdgePillText { font-size: 14px; font-weight: 700; color: var(--brand); margin-bottom: 6px; }
.ggCasEdgePillSub { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.55; }

/* cards grid: 1 wide + 4 regular */
.ggCasCards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.ggCasCard {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.ggCasCard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
  opacity: 0;
  transition: var(--t);
}
.ggCasCard:hover {
  background: rgba(82,186,197,.07);
  border-color: rgba(82,186,197,.25);
  transform: translateY(-3px);
}
.ggCasCard:hover::before { opacity: 1; }

/* wide card spans 2 columns, 2 rows */
.ggCasCardWide {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: rgba(82,186,197,.07);
  border-color: rgba(82,186,197,.2);
  justify-content: flex-end;
  min-height: 260px;
}
.ggCasCardWide::before { opacity: 1; }

.ggCasCardNum {
  font-family: var(--font-h);
  font-size: 42px;
  font-weight: 800;
  color: rgba(255,255,255,.08);
  line-height: 1;
  letter-spacing: -.04em;
  position: absolute;
  top: 18px; right: 20px;
}
.ggCasCardWide .ggCasCardNum { font-size: 80px; top: 12px; right: 20px; }

.ggCasCardIcon {
  width: 44px; height: 44px;
  background: rgba(82,186,197,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.ggCasCardIcon svg { width: 22px; height: 22px; color: var(--brand); }
.ggCasCardWide .ggCasCardIcon { width: 52px; height: 52px; background: rgba(82,186,197,.2); }
.ggCasCardWide .ggCasCardIcon svg { width: 26px; height: 26px; }

.ggCasCardTitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.ggCasCardWide .ggCasCardTitle { font-size: 22px; }

.ggCasCardText {
  font-size: 13.5px;
  color: rgba(255,255,255,.52);
  line-height: 1.65;
  flex: 1;
}
.ggCasCardWide .ggCasCardText { font-size: 15px; color: rgba(255,255,255,.65); }

.ggCasCardTag {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(82,186,197,.12);
  border: 1px solid rgba(82,186,197,.2);
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .ggCasCards { grid-template-columns: repeat(2, 1fr); }
  .ggCasCardWide { grid-column: 1 / 3; grid-row: auto; }
}
@media (max-width: 540px) {
  .ggCasCards { grid-template-columns: 1fr; }
  .ggCasCardWide { grid-column: 1; grid-row: auto; }
  .ggCasHeader { flex-direction: column; }
  .ggCasEdgePill { max-width: 100%; }
}

/* ─────────────────────────────────────────
   LIST – comparison table section
───────────────────────────────────────── */
.ggListSection { background: var(--white); padding: 88px 0; }
.ggListSectionTitle {
  font-family: var(--font-h);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.025em;
  margin-bottom: 12px;
}
.ggListSectionSubtitle { font-size: 16px; color: var(--text-2); margin-bottom: 44px; max-width: 620px; }

/* ── Comparison Table ── */
.ggCmpTable {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  border: 1.5px solid var(--border);
  margin-top: 8px;
}
.ggCmpRow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.ggCmpRow:last-child { border-bottom: none; }
.ggCmpCell {
  padding: 18px 24px;
  font-size: 14.5px;
  line-height: 1.55;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Header row */
.ggCmpHeader { background: var(--navy); }
.ggCmpHeader .ggCmpCell { padding: 22px 24px; align-items: flex-start; flex-direction: column; gap: 4px; }
.ggCmpPlanName { font-size: 17px; font-weight: 700; color: var(--white); }
.ggCmpPlanSub  { font-size: 12px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .07em; }
.ggCmpBadge {
  display: inline-flex;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
}
.ggCmpPlanHighlight { background: linear-gradient(160deg, #1a2f48 0%, #1e3a50 100%); position: relative; }
.ggCmpPlanHighlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
}

/* Feature column */
.ggCmpFeatureCol {
  background: var(--off);
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
  border-right: 1px solid var(--border);
}
.ggCmpFeatureIcon { font-size: 16px; flex-shrink: 0; }

/* Old plan cells */
.ggCmpOld {
  color: var(--text-3);
  background: var(--white);
  border-right: 1px solid var(--border);
}
.ggCmpRow:nth-child(even) .ggCmpOld { background: #fafbfc; }

/* New plan cells */
.ggCmpNew {
  background: rgba(82,186,197,.04);
  color: var(--text);
  font-weight: 500;
  position: relative;
}
.ggCmpNew::before {
  content: '✓';
  color: var(--brand);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  margin-right: 2px;
}
.ggCmpRow:nth-child(even) .ggCmpNew { background: rgba(82,186,197,.07); }

/* Last data row */
.ggCmpRowLast { border-bottom: 2px solid var(--border); }

/* Footer row */
.ggCmpFooter { background: var(--off); border-bottom: none; }
.ggCmpOldFooter {
  color: var(--text-3);
  font-size: 13px;
  border-right: 1px solid var(--border);
  justify-content: center;
}
.ggCmpCross { color: #f87171; font-weight: 700; margin-right: 4px; }
.ggCmpNewFooter {
  background: rgba(82,186,197,.06);
  justify-content: center;
}
.ggCmpNewFooter .ggBtnPrimary { font-size: 14px; padding: 11px 24px; }

/* Responsive */
@media (max-width: 720px) {
  .ggCmpRow { grid-template-columns: 1fr 1fr; }
  .ggCmpFeatureCol { display: none; }
  .ggCmpHeader .ggCmpFeatureCol { display: none; }
}
@media (max-width: 480px) {
  .ggCmpRow { grid-template-columns: 1fr; }
  .ggCmpOld { border-right: none; border-bottom: 1px solid var(--border); }
  .ggCmpOldFooter { border-right: none; border-bottom: 1px solid var(--border); }
  .ggCmpCell { padding: 14px 18px; }
}
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  transition: var(--t);
  box-shadow: 0 4px 18px rgba(30,45,61,.18);
}
.ggListSectionCtaBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30,45,61,.26);
  color: var(--white);
}

/* ─────────────────────────────────────────
   GAR – Guarantee
───────────────────────────────────────── */
.ggGarSection { background: var(--off); padding: 80px 0; }
.ggGarSectionTitle {
  font-family: var(--font-h);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.ggGarSectionTitleDivider {
  display: block;
  width: auto;
  max-width: 480px;
  height: 36px;
  object-fit: contain;
  object-position: left;
  margin-bottom: 20px;
}
@media (max-width: 540px) {
  .ggGarSectionTitleDivider {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
.ggGarBadge   { height: 90px;  width: auto; flex-shrink: 0; }
.ggGarPayments { height: 44px; width: auto; flex-shrink: 0; }
.ggGarSectionSubtitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}
.ggGarSectionSubtitle2 { font-size: 16px; color: var(--text-2); margin-bottom: 40px; max-width: 600px; }
.ggGarInnerSection {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--sh-lg);
  border: 1.5px solid var(--border);
}
.ggGarInnerSectionLeft {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  width: 100%;
}
.ggGarInnerSectionLeft img { height: 64px; width: auto; }
.ggGarInnerSectionRight p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 14px;
}
.ggGarInnerSectionRight p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────
   FEAT – Pro features
───────────────────────────────────────── */
.ggFeatSection { background: var(--white); padding: 88px 0; }
.ggFeatSectionTitle {
  font-family: var(--font-h);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.ggFeatSectionTitle2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 52px;
  margin-bottom: 10px;
}
.ggFeatSectionSubtitle { font-size: 16px; color: var(--text-2); margin-bottom: 48px; max-width: 660px; }
.ggFeatSectionSubtitle2 { font-size: 15px; color: var(--text-3); max-width: 640px; }
.ggFeatSectionCols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ggFeatSectionCol {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--off);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  border: 1.5px solid transparent;
  transition: var(--t);
}
.ggFeatSectionCol:hover {
  border-color: rgba(82,186,197,.22);
  background: var(--white);
  box-shadow: var(--sh);
}
.ggFeatSectionColIcon {
  width: 44px; height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 10px;
}
.ggFeatSectionColBody {}
.ggFeatSectionColTitle { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.ggFeatSectionColSubtitle { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }

/* ─────────────────────────────────────────
   PRS – Pricing
───────────────────────────────────────── */
.ggPrsSection { background: var(--off); padding: 88px 0; }
.ggPrsSectionTitle {
  font-family: var(--font-h);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.025em;
  margin-bottom: 10px;
}
.ggPrsSectionSubtitle { font-size: 16px; color: var(--text-2); margin-bottom: 48px; max-width: 560px; }
.ggPrsSectionSubtitle2 {
  font-size: 14px;
  color: var(--text-3);
  text-align: center;
  margin-top: 20px;
}
.ggFreePlanRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 22px 28px;
  margin-bottom: 28px;
  border: 1.5px solid var(--border);
  box-shadow: var(--sh);
}
.ggFreePlanRow img { width: 48px; }
.ggFreePlanText { flex: 1; min-width: 200px; }
.ggFreePlanText strong { display: block; font-size: 17px; font-weight: 700; color: var(--navy); }
.ggFreePlanText span { font-size: 14px; color: var(--text-3); }

/* ─────────────────────────────────────────
   SUP – Support CTA
───────────────────────────────────────── */
.ggSupSection {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.ggSupSection::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,186,197,.12) 0%, transparent 70%);
}
.ggSupSectionInnerContainer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
}
.ggSupSectionTitle {
  font-family: var(--font-h);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.ggSupSectionSubtitle { font-size: 15.5px; color: rgba(255,255,255,.58); margin-bottom: 28px; line-height: 1.7; max-width: 560px; }
.ggSupSectionTitle2 { font-size: 18px; font-weight: 700; color: var(--brand); margin-bottom: 10px; }
.ggSupSectionSubtitle2 { font-size: 14.5px; color: rgba(255,255,255,.5); line-height: 1.65; }
.ggSupSectionInnerRight { flex-shrink: 0; }
.ggSupSectionInnerRightImg { width: 100%; max-width: 240px; border-radius: var(--r-lg); box-shadow: var(--sh-xl); }
.ggSupSection [align="center"] { margin-top: 40px; position: relative; z-index: 1; }

.ggSupCtaRow {
  margin-top: 48px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.ggSupCtaBtn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(82,186,197,.38), 0 2px 8px rgba(0,0,0,.15);
  transition: var(--t);
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
}
.ggSupCtaBtn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
  border-radius: inherit;
}
.ggSupCtaBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(82,186,197,.5), 0 4px 12px rgba(0,0,0,.18);
  color: var(--white);
  text-decoration: none;
}
.ggSupCtaBtn svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform var(--t);
}
.ggSupCtaBtn:hover svg { transform: translateX(4px); }

/* ─────────────────────────────────────────
   RATING STARS IMAGE
───────────────────────────────────────── */
.ggHeroSectionLeft img[src*="rating"] {
  max-width: 180px;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .ggFvtSectionCols  { grid-template-columns: repeat(2, 1fr); }
  .ggHiwSectionCols  { grid-template-columns: repeat(2, 1fr); }
  .ggDfdSectionCols  { grid-template-columns: repeat(2, 1fr); }
  .ggFeatSectionCols { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .ggHeroSection { grid-template-columns: 1fr; gap: 48px; padding-top: 72px; }
  .ggHeroSectionRight { display: none; }
  .ggPfSectionCols { grid-template-columns: 1fr; }
  .ggSupSectionInnerContainer { grid-template-columns: 1fr; }
  .ggSupSectionInnerRight { display: none; }
  .ggGarInnerSection { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .ggHeroSectionTitle { font-size: clamp(32px, 8vw, 44px); }
  .ggHeroSectionTitle span { display: block; }
  .ggFvtSectionCols  { grid-template-columns: 1fr; }
  .ggHiwSectionCols  { grid-template-columns: 1fr 1fr; }
  .ggDfdSectionCols  { grid-template-columns: 1fr; }
  .ggHeroCtaRow      { flex-direction: column; align-items: flex-start; }
  .ggFreePlanRow     { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .ggHiwSectionCols  { grid-template-columns: 1fr; }
  :root { --r-xl: 20px; }
}
