/*
 * gws-pages.css
 * Place at: /assets/css/gws-pages.css
 * Loaded AFTER main.css — zero changes to main.css, inner-pages.css, about-pages.css
 * Google Workspace product pages — vibrant, colourful, conversion-focused
 */

/* ═══════════════════════════════════════════════════════════════
   GOOGLE BRAND TOKENS
═══════════════════════════════════════════════════════════════ */
:root {
  --gb:  #4285F4;  /* Gmail blue  */
  --gr:  #EA4335;  /* Google red  */
  --gy:  #FBBC04;  /* Google yellow */
  --gg:  #34A853;  /* Google green */
  --gp:  #673AB7;  /* Forms purple */
  --gt:  #00897B;  /* AppSheet teal */
  --gb-f: rgba(66,133,244,.08);
  --gb-d: rgba(66,133,244,.18);
  --gr-f: rgba(234,67,53,.08);
  --gg-f: rgba(52,168,83,.08);
  --gy-f: rgba(251,188,4,.1);
  --gp-f: rgba(103,58,183,.08);
}

/* ═══════════════════════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════════════════════ */
.gws-breadcrumb {
  background: var(--sw);
  border-bottom: 1px solid var(--border);
  padding: .65rem 0;
  font-size: .8rem;
  color: var(--ink-50);
}
.gws-breadcrumb a { color: var(--gb); transition: color .2s; }
.gws-breadcrumb a:hover { color: #1557B0; }
.gws-breadcrumb span { margin: 0 .45rem; opacity: .4; }

/* ═══════════════════════════════════════════════════════════════
   HERO — Google-branded gradient
═══════════════════════════════════════════════════════════════ */
.gws-hero {
  background: linear-gradient(135deg, #0d1b4b 0%, #1a2f7a 40%, #0d3b26 100%);
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.gws-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(66,133,244,.2) 0%, transparent 65%);
  pointer-events: none;
}
.gws-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(52,168,83,.12) 0%, transparent 65%);
  pointer-events: none;
}
/* Decorative Google colour dots */
.gws-hero-dots {
  position: absolute;
  top: 2rem; right: 2rem;
  display: flex;
  gap: .6rem;
  z-index: 0;
  opacity: .55;
}
.gws-hero-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
}

.gws-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.gws-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .3rem .9rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.25rem;
  letter-spacing: .03em;
}
.gws-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gg);
  flex-shrink: 0;
}
.gws-hero h1 {
  font-family: var(--fd);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 1.1rem;
}
.gws-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #4285F4, #34A853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gws-hero-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.65);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.gws-hero-cta {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.gws-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .78rem 1.75rem;
  font-size: .9375rem;
  font-weight: 700;
  border-radius: var(--r-md);
  background: var(--gb);
  color: #fff;
  transition: all .2s;
}
.gws-btn-primary:hover {
  background: #1557B0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(66,133,244,.4);
}
.gws-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .76rem 1.5rem;
  font-size: .9375rem;
  font-weight: 600;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  border: 1.5px solid rgba(255,255,255,.35);
  transition: all .2s;
}
.gws-btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.7);
  color: #fff;
  transform: translateY(-2px);
}
.gws-hero-trust {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.gws-trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}
.gws-trust-item strong { color: rgba(255,255,255,.85); }

/* ── Hero Right: Pricing card ── */
.gws-price-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.gws-price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gb), var(--gg), var(--gy), var(--gr));
}
.gws-plan-name {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .2rem;
}
.gws-plan-tagline {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.gws-price-display {
  margin-bottom: 1.25rem;
}
.gws-price-from { font-size: .78rem; color: rgba(255,255,255,.45); margin-bottom: .2rem; }
.gws-price-amount {
  display: flex;
  align-items: baseline;
  gap: .2rem;
}
.gws-price-cur {
  font-family: var(--fd);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gy);
}
.gws-price-num {
  font-family: var(--fd);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -.05em;
  color: #fff;
  line-height: 1;
}
.gws-price-per { font-size: .82rem; color: rgba(255,255,255,.4); }
.gws-price-note { font-size: .72rem; color: rgba(255,255,255,.35); margin-top: .25rem; }
.gws-card-feats {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.gws-card-feat {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
}
.gws-feat-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gg);
  display: flex; align-items: center; justify-content: center;
  font-size: .55rem;
  color: #fff;
  font-weight: 900;
  flex-shrink: 0;
}
.gws-card-cta {
  display: block;
  width: 100%;
  padding: .8rem;
  text-align: center;
  font-weight: 700;
  font-size: .9375rem;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--gb), #1a73e8);
  color: #fff;
  transition: all .2s;
  letter-spacing: .01em;
}
.gws-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(66,133,244,.4);
}

/* ═══════════════════════════════════════════════════════════════
   GOOGLE APPS ICON GRID
═══════════════════════════════════════════════════════════════ */
.gws-apps-section {
  background: var(--sw);
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border);
}
.gws-apps-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.gws-apps-header h2 {
  font-family: var(--fd);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: .5rem;
}
.gws-apps-header p {
  font-size: .9375rem;
  color: var(--ink-50);
}
.gws-apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin-inline: auto;
}
.gws-app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding: 1.25rem .75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  cursor: default;
}
.gws-app-item:hover {
  border-color: var(--gb);
  box-shadow: 0 4px 16px rgba(66,133,244,.12);
  transform: translateY(-3px);
}
.gws-app-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gws-app-name {
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink-75);
  line-height: 1.3;
}
.gws-app-item.locked .gws-app-name::after {
  content: ' 🔒';
  font-size: .65rem;
  opacity: .5;
}
/* Individual app icon colours */
.gws-app-gmail    { background: #fce8e6; }
.gws-app-drive    { background: linear-gradient(135deg,#4285f4 0%,#34a853 50%,#fbbc04 100%); }
.gws-app-meet     { background: #e6f4ea; }
.gws-app-calendar { background: #e8f0fe; }
.gws-app-docs     { background: #e8f0fe; }
.gws-app-sheets   { background: #e6f4ea; }
.gws-app-slides   { background: #fef7e0; }
.gws-app-chat     { background: #e8f0fe; }
.gws-app-sites    { background: #e8f0fe; }
.gws-app-forms    { background: #f3e8fd; }
.gws-app-keep     { background: #fef7e0; }
.gws-app-appsheet { background: #e0f2f1; }
.gws-app-gemini   { background: linear-gradient(135deg,#4285f4,#9c27b0); }

/* ═══════════════════════════════════════════════════════════════
   PLAN HIGHLIGHTS — coloured feature cards
═══════════════════════════════════════════════════════════════ */
.gws-highlights { background: var(--surface); padding: 5rem 0; }
.gws-hl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.gws-hl-card {
  border-radius: var(--r-xl);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.gws-hl-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.gws-hl-card.blue  { background: var(--gb-f); border: 1px solid var(--gb-d); }
.gws-hl-card.green { background: var(--gg-f); border: 1px solid rgba(52,168,83,.2); }
.gws-hl-card.yellow{ background: var(--gy-f); border: 1px solid rgba(251,188,4,.25); }
.gws-hl-card.red   { background: var(--gr-f); border: 1px solid rgba(234,67,53,.2); }
.gws-hl-card.purple{ background: var(--gp-f); border: 1px solid rgba(103,58,183,.2); }
.gws-hl-card.teal  { background: rgba(0,137,123,.08); border: 1px solid rgba(0,137,123,.2); }
.gws-hl-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.gws-hl-card.blue  .gws-hl-icon { background: rgba(66,133,244,.15); }
.gws-hl-card.green .gws-hl-icon { background: rgba(52,168,83,.15); }
.gws-hl-card.yellow.gws-hl-icon { background: rgba(251,188,4,.15); }
.gws-hl-card.red   .gws-hl-icon { background: rgba(234,67,53,.15); }
.gws-hl-card.purple.gws-hl-icon { background: rgba(103,58,183,.15); }
.gws-hl-card.teal  .gws-hl-icon { background: rgba(0,137,123,.15); }
.gws-hl-card h4 {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .45rem;
}
.gws-hl-card p { font-size: .82rem; color: var(--ink-50); line-height: 1.65; }
.gws-hl-card .gws-hl-badge {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .18rem .6rem;
  border-radius: 100px;
}
.gws-hl-card.blue  .gws-hl-badge { background: rgba(66,133,244,.15); color: var(--gb); }
.gws-hl-card.green .gws-hl-badge { background: rgba(52,168,83,.15);  color: var(--gg); }
.gws-hl-card.yellow .gws-hl-badge{ background: rgba(251,188,4,.18);  color: #b8860b; }
.gws-hl-card.red   .gws-hl-badge { background: rgba(234,67,53,.12);  color: var(--gr); }
.gws-hl-card.purple .gws-hl-badge{ background: rgba(103,58,183,.12); color: var(--gp); }
.gws-hl-card.teal  .gws-hl-badge { background: rgba(0,137,123,.12);  color: var(--gt); }

/* ═══════════════════════════════════════════════════════════════
   COMPARE SECTION — side-by-side plan comparison
═══════════════════════════════════════════════════════════════ */
.gws-compare { background: var(--sw); padding: 5rem 0; border-top: 1px solid var(--border); }
.gws-compare-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-xl); }
.gws-compare-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.gws-compare-table th {
  padding: 1.25rem 1rem;
  font-family: var(--fd);
  font-size: .85rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--sw);
}
.gws-compare-table th:first-child { text-align: left; background: var(--surface); }
.gws-compare-table th.gws-th-active {
  background: var(--gb-f);
  border-bottom: 2px solid var(--gb);
  color: var(--gb);
}
.gws-compare-table td {
  padding: .85rem 1rem;
  font-size: .85rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
  color: var(--ink-75);
}
.gws-compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
  background: var(--surface);
}
.gws-compare-table tr:last-child td { border-bottom: none; }
.gws-compare-table tr:hover td { background: var(--sw); }
.gws-compare-table tr:hover td:first-child { background: var(--sw); }
.gws-compare-table td.gws-td-active { background: var(--gb-f); }
.gws-check { color: var(--gg); font-weight: 900; font-size: 1rem; }
.gws-dash  { color: var(--border-mid); }
.gws-section-row td {
  background: linear-gradient(90deg, rgba(66,133,244,.05), transparent) !important;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gb) !important;
  padding-top: 1.1rem;
  padding-bottom: .45rem;
  border-bottom: none;
}

/* ═══════════════════════════════════════════════════════════════
   STORAGE VISUALISER
═══════════════════════════════════════════════════════════════ */
.gws-storage { background: var(--surface); padding: 5rem 0; border-top: 1px solid var(--border); }
.gws-storage-card {
  background: linear-gradient(135deg, #0d1b4b 0%, #1a2f7a 100%);
  border-radius: var(--r-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.gws-storage-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(52,168,83,.15), transparent 70%);
  pointer-events: none;
}
.gws-storage-left h3 {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .6rem;
  letter-spacing: -.03em;
}
.gws-storage-left p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.65; }
.gws-storage-num {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  margin-top: 1.25rem;
}
.gws-storage-val {
  font-family: var(--fd);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -.06em;
  background: linear-gradient(90deg, var(--gb), var(--gg));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.gws-storage-unit { font-size: 1.25rem; font-weight: 700; color: rgba(255,255,255,.6); }
.gws-storage-lbl { font-size: .8rem; color: rgba(255,255,255,.4); margin-left: .5rem; }
.gws-storage-right { display: flex; flex-direction: column; gap: .75rem; }
.gws-storage-bar-item {}
.gws-storage-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  margin-bottom: .35rem;
  color: rgba(255,255,255,.65);
}
.gws-storage-bar-label strong { color: #fff; }
.gws-storage-track {
  height: 8px;
  background: rgba(255,255,255,.08);
  border-radius: 100px;
  overflow: hidden;
}
.gws-storage-fill {
  height: 100%;
  border-radius: 100px;
  transition: width .8s ease;
}

/* ═══════════════════════════════════════════════════════════════
   SECURITY SECTION
═══════════════════════════════════════════════════════════════ */
.gws-security { background: var(--sw); padding: 5rem 0; border-top: 1px solid var(--border); }
.gws-sec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.gws-sec-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  transition: border-color .2s, box-shadow .2s;
}
.gws-sec-card:hover { border-color: var(--gb); box-shadow: 0 4px 20px rgba(66,133,244,.1); }
.gws-sec-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--gb-f);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.gws-sec-card h4 {
  font-family: var(--fd);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .4rem;
}
.gws-sec-card p { font-size: .8rem; color: var(--ink-50); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   WHY AZONIC SECTION
═══════════════════════════════════════════════════════════════ */
.gws-why { background: var(--surface); padding: 5rem 0; border-top: 1px solid var(--border); }
.gws-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.gws-why-list { display: flex; flex-direction: column; gap: 1rem; }
.gws-why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem;
  background: var(--sw);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color .2s;
}
.gws-why-item:hover { border-color: var(--gb); }
.gws-why-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--gb-f);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.gws-why-item h4 { font-family: var(--fd); font-size: .875rem; font-weight: 700; color: var(--ink); margin-bottom: .2rem; }
.gws-why-item p  { font-size: .78rem; color: var(--ink-50); line-height: 1.6; margin: 0; }
.gws-why-visual {
  background: linear-gradient(135deg, #0d1b4b, #1a2f7a);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  text-align: center;
}
.gws-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-xl);
  padding: 1.25rem 1.75rem;
  margin-bottom: 1.5rem;
}
.gws-partner-badge span {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.gws-g-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 6px;
  background: #fff;
  flex-shrink: 0;
}
.gws-g-icon span {
  border-radius: 2px;
  display: block;
}
.gws-why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.25rem;
}
.gws-why-stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 1rem;
  text-align: center;
}
.gws-why-stat-val {
  display: block;
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gy);
  margin-bottom: .2rem;
}
.gws-why-stat-lbl {
  font-size: .7rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADER (shared)
═══════════════════════════════════════════════════════════════ */
.gws-sh {
  text-align: center;
  margin-bottom: 3rem;
}
.gws-sh .gws-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gb);
  margin-bottom: .85rem;
}
.gws-sh .gws-tag::before {
  content: '';
  display: inline-block;
  width: 16px; height: 2px;
  background: var(--gb);
}
.gws-sh h2 {
  font-family: var(--fd);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: .65rem;
}
.gws-sh p { font-size: 1rem; color: var(--ink-50); max-width: 620px; margin-inline: auto; line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════ */
.gws-faq { background: var(--surface); padding: 5rem 0; border-top: 1px solid var(--border); }
.gws-faq-list { max-width: 820px; margin-inline: auto; }
.gws-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--sw);
  margin-bottom: .6rem;
  overflow: hidden;
  transition: border-color .2s;
}
.gws-faq-item.open { border-color: var(--gb); }
.gws-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
}
.gws-faq-q:hover { color: var(--gb); }
.gws-faq-arrow { font-size: .7rem; color: var(--ink-30); transition: transform .3s; flex-shrink: 0; }
.gws-faq-item.open .gws-faq-arrow { transform: rotate(180deg); color: var(--gb); }
.gws-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; font-size: .875rem; color: var(--ink-75); line-height: 1.7; }
.gws-faq-item.open .gws-faq-a { max-height: 400px; }
.gws-faq-a-inner { padding: 0 1.25rem 1.25rem; }

/* ═══════════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════════ */
.gws-cta {
  background: linear-gradient(135deg, #0d1b4b 0%, #0a2e1a 100%);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gws-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(66,133,244,.15) 0%, transparent 70%);
  pointer-events: none;
}
.gws-cta::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(52,168,83,.1) 0%, transparent 70%);
  pointer-events: none;
}
.gws-cta-inner { position: relative; z-index: 1; }
.gws-cta h2 {
  font-family: var(--fd);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: .75rem;
}
.gws-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.gws-cta-btns {
  display: flex;
  gap: .85rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-gws-cta {
  display: inline-block;
  padding: .82rem 2rem;
  font-size: .9375rem;
  font-weight: 700;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--gb), #1a73e8);
  color: #fff;
  transition: all .2s;
  text-align: center;
}
.btn-gws-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(66,133,244,.45);
}
.btn-gws-outline {
  display: inline-block;
  padding: .8rem 1.75rem;
  font-size: .9375rem;
  font-weight: 600;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  border: 1.5px solid rgba(255,255,255,.3);
  transition: all .2s;
  text-align: center;
}
.btn-gws-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.65);
  color: #fff;
  transform: translateY(-2px);
}
/* Google coloured dots decoration */
.gws-cta-dots {
  display: flex;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.gws-cta-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .gws-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .gws-price-card { max-width: 440px; }
  .gws-why-grid { grid-template-columns: 1fr; }
  .gws-storage-card { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .gws-hero { padding: 3.5rem 0 3rem; }
  .gws-hero h1 { font-size: 2rem; }
  .gws-apps-grid { grid-template-columns: repeat(4, 1fr); }
  .gws-hl-grid { grid-template-columns: 1fr; }
  .gws-sec-grid { grid-template-columns: 1fr; }
  .gws-highlights, .gws-compare, .gws-storage, .gws-security, .gws-why, .gws-faq, .gws-cta, .gws-apps-section { padding: 3.5rem 0; }
  .gws-cta-btns { flex-direction: column; align-items: center; }
  .btn-gws-cta, .btn-gws-outline { width: 100%; max-width: 320px; }
  .gws-sh { margin-bottom: 2rem; }
}
@media (max-width: 480px) {
  .gws-apps-grid { grid-template-columns: repeat(3, 1fr); }
  .gws-why-stats { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   GOOGLE WORKSPACE LANDING PAGE — /google-workspace/
   Append this block to the END of /assets/css/gws-pages.css
═══════════════════════════════════════════════════════════════ */

/* ── Landing Hero (wider, centred) ─────────────────────────── */
.gwsl-hero {
  background: linear-gradient(135deg, #0a1628 0%, #0d2b52 45%, #062318 100%);
  padding: 5.5rem 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.gwsl-hero::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(66,133,244,.18) 0%, transparent 65%);
  pointer-events: none;
}
.gwsl-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: 5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(52,168,83,.1) 0%, transparent 70%);
  pointer-events: none;
}
.gwsl-hero-inner { position: relative; z-index: 1; max-width: 820px; margin-inline: auto; }
.gwsl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 1.1rem;
  background: rgba(66,133,244,.12);
  border: 1px solid rgba(66,133,244,.3);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.5rem;
  letter-spacing: .02em;
}
.gwsl-hero h1 {
  font-family: var(--fd);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 1.25rem;
}
.gwsl-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #4285F4 0%, #34A853 60%, #FBBC04 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gwsl-hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,.6);
  max-width: 660px;
  margin-inline: auto;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}
.gwsl-hero-cta {
  display: flex;
  gap: .85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Stats row */
.gwsl-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  max-width: 720px;
  margin-inline: auto;
}
.gwsl-hero-stat { background: rgba(255,255,255,.04); padding: 1.1rem 1rem; text-align: center; }
.gwsl-hero-stat-val {
  display: block;
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--gy);
  line-height: 1;
  margin-bottom: .3rem;
}
.gwsl-hero-stat-lbl {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .03em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Trust bar ─────────────────────────────────────────────── */
.gwsl-trust {
  background: var(--sw);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}
.gwsl-trust-inner {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.gwsl-trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--ink-50);
  white-space: nowrap;
}
.gwsl-trust-item strong { color: var(--ink-75); }

/* ── What is GWS ───────────────────────────────────────────── */
.gwsl-what {
  background: var(--surface);
  padding: 5.5rem 0;
}
.gwsl-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}
.gwsl-what-text h2 {
  font-family: var(--fd);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.gwsl-what-text p {
  font-size: .9375rem;
  color: var(--ink-50);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.gwsl-what-text p:last-of-type { margin-bottom: 1.75rem; }
.gwsl-what-highlights { display: flex; flex-direction: column; gap: .85rem; }
.gwsl-what-hl {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: var(--sw);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color .2s, transform .15s;
}
.gwsl-what-hl:hover { border-color: var(--gb); transform: translateX(3px); }
.gwsl-what-hl-icon {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: var(--gb-f);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.gwsl-what-hl h4 { font-family: var(--fd); font-size: .875rem; font-weight: 700; color: var(--ink); margin-bottom: .15rem; }
.gwsl-what-hl p  { font-size: .78rem; color: var(--ink-50); line-height: 1.55; margin: 0; }

/* ── Apps Showcase ─────────────────────────────────────────── */
.gwsl-apps {
  background: var(--navy);
  padding: 5rem 0;
}
.gwsl-apps-sh h2 {
  font-family: var(--fd);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: .5rem;
  text-align: center;
}
.gwsl-apps-sh p {
  font-size: .9375rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  margin-bottom: 2.5rem;
}
.gwsl-apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  max-width: 960px;
  margin-inline: auto;
}
.gwsl-app-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 1.25rem .75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  text-align: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.gwsl-app-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(66,133,244,.5);
  transform: translateY(-3px);
}
.gwsl-app-icon-wrap {
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.gwsl-app-name  { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.8); }
.gwsl-app-desc  { font-size: .7rem; color: rgba(255,255,255,.4); line-height: 1.4; }

/* ── Plans Section ─────────────────────────────────────────── */
.gwsl-plans {
  background: var(--sw);
  padding: 5.5rem 0;
  border-top: 1px solid var(--border);
}
.gwsl-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.gwsl-plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.gwsl-plan-card:hover {
  border-color: var(--gb);
  box-shadow: 0 8px 32px rgba(66,133,244,.12);
  transform: translateY(-4px);
}
.gwsl-plan-card.featured {
  border-color: var(--gb);
  box-shadow: 0 0 0 3px rgba(66,133,244,.15);
}
.gwsl-plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  background: linear-gradient(90deg, var(--gb), var(--gg));
  opacity: 0;
  transition: opacity .2s;
}
.gwsl-plan-card:hover::before,
.gwsl-plan-card.featured::before { opacity: 1; }
.gwsl-plan-pill {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: .2rem .9rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--gb);
  color: #fff;
  border-radius: 100px;
  white-space: nowrap;
}
.gwsl-plan-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.gwsl-plan-name {
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: .2rem;
}
.gwsl-plan-tagline { font-size: .78rem; color: var(--ink-50); margin-bottom: 1.1rem; line-height: 1.45; }
.gwsl-plan-price {
  display: flex;
  align-items: baseline;
  gap: .15rem;
  margin-bottom: .25rem;
}
.gwsl-plan-cur { font-family: var(--fd); font-size: 1.1rem; font-weight: 700; color: var(--gb); }
.gwsl-plan-num { font-family: var(--fd); font-size: 2.4rem; font-weight: 800; letter-spacing: -.05em; color: var(--ink); line-height: 1; }
.gwsl-plan-per { font-size: .78rem; color: var(--ink-50); }
.gwsl-plan-note { font-size: .72rem; color: var(--ink-30); margin-bottom: 1.25rem; }
.gwsl-plan-div { height: 1px; background: var(--border); margin: 1.1rem 0; }
.gwsl-plan-feats { flex: 1; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.gwsl-plan-feat {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .8rem;
  color: var(--ink-75);
}
.gwsl-feat-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #DCFCE7;
  display: flex; align-items: center; justify-content: center;
  font-size: .5rem;
  color: #16A34A;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.gwsl-plan-cta {
  display: block;
  width: 100%;
  padding: .72rem;
  text-align: center;
  font-weight: 700;
  font-size: .875rem;
  border-radius: var(--r-md);
  transition: all .2s;
  cursor: pointer;
}
.gwsl-plan-card:not(.featured) .gwsl-plan-cta {
  border: 1px solid var(--border-mid);
  color: var(--ink);
  background: transparent;
}
.gwsl-plan-card:not(.featured) .gwsl-plan-cta:hover {
  border-color: var(--gb);
  color: var(--gb);
  background: var(--gb-f);
}
.gwsl-plan-card.featured .gwsl-plan-cta {
  background: linear-gradient(135deg, var(--gb), #1a73e8);
  color: #fff;
  border: none;
}
.gwsl-plan-card.featured .gwsl-plan-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(66,133,244,.35);
}
.gwsl-plan-storage {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gb);
  background: var(--gb-f);
  border: 1px solid var(--gb-d);
  border-radius: 100px;
  padding: .18rem .65rem;
  margin-bottom: .85rem;
}

/* ── Why GWS Section ───────────────────────────────────────── */
.gwsl-why {
  background: var(--surface);
  padding: 5.5rem 0;
  border-top: 1px solid var(--border);
}
.gwsl-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.gwsl-why-card {
  background: var(--sw);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.gwsl-why-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.gwsl-why-card.blue   { border-top: 3px solid var(--gb); }
.gwsl-why-card.red    { border-top: 3px solid var(--gr); }
.gwsl-why-card.green  { border-top: 3px solid var(--gg); }
.gwsl-why-card.yellow { border-top: 3px solid var(--gy); }
.gwsl-why-card.purple { border-top: 3px solid var(--gp); }
.gwsl-why-card.teal   { border-top: 3px solid var(--gt); }
.gwsl-why-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.gwsl-why-card.blue   .gwsl-why-icon-wrap { background: var(--gb-f); }
.gwsl-why-card.red    .gwsl-why-icon-wrap { background: var(--gr-f); }
.gwsl-why-card.green  .gwsl-why-icon-wrap { background: var(--gg-f); }
.gwsl-why-card.yellow .gwsl-why-icon-wrap { background: var(--gy-f); }
.gwsl-why-card.purple .gwsl-why-icon-wrap { background: var(--gp-f); }
.gwsl-why-card.teal   .gwsl-why-icon-wrap { background: rgba(0,137,123,.08); }
.gwsl-why-card h3 { font-family: var(--fd); font-size: .9375rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem; letter-spacing: -.01em; }
.gwsl-why-card p  { font-size: .82rem; color: var(--ink-50); line-height: 1.65; }

/* ── vs Free Gmail comparison ──────────────────────────────── */
.gwsl-compare {
  background: var(--sw);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.gwsl-compare-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin-inline: auto;
}
.gwsl-cmp-card {
  border-radius: var(--r-xl);
  padding: 2rem;
  border: 1px solid var(--border);
}
.gwsl-cmp-card.workspace { background: linear-gradient(135deg, #e8f0fe, #e6f4ea); border-color: rgba(66,133,244,.2); }
.gwsl-cmp-card.free      { background: var(--surface); }
.gwsl-cmp-head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.gwsl-cmp-head h3 { font-family: var(--fd); font-size: 1rem; font-weight: 800; color: var(--ink); }
.gwsl-cmp-head small { font-size: .75rem; color: var(--ink-50); }
.gwsl-cmp-list { display: flex; flex-direction: column; gap: .55rem; }
.gwsl-cmp-item { display: flex; align-items: flex-start; gap: .55rem; font-size: .82rem; color: var(--ink-75); }
.gwsl-cmp-yes { color: var(--gg); font-size: .85rem; flex-shrink: 0; margin-top: 1px; }
.gwsl-cmp-no  { color: var(--gr); font-size: .85rem; flex-shrink: 0; margin-top: 1px; }

/* ── Why Azonic ────────────────────────────────────────────── */
.gwsl-azonic {
  background: var(--surface);
  padding: 5.5rem 0;
  border-top: 1px solid var(--border);
}
.gwsl-azonic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.gwsl-azonic-card {
  background: var(--sw);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color .2s, box-shadow .2s;
}
.gwsl-azonic-card:hover { border-color: var(--gb); box-shadow: 0 4px 16px rgba(66,133,244,.1); }
.gwsl-azonic-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--gb-f);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.gwsl-azonic-card h4 { font-family: var(--fd); font-size: .875rem; font-weight: 700; color: var(--ink); margin-bottom: .25rem; }
.gwsl-azonic-card p  { font-size: .78rem; color: var(--ink-50); line-height: 1.6; margin: 0; }

/* ── FAQ ───────────────────────────────────────────────────── */
.gwsl-faq { background: var(--sw); padding: 5rem 0; border-top: 1px solid var(--border); }
.gwsl-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin-inline: auto;
}
.gwsl-faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s;
}
.gwsl-faq-item.open { border-color: var(--gb); }
.gwsl-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.1rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
}
.gwsl-faq-q:hover { color: var(--gb); }
.gwsl-faq-arrow { font-size: .65rem; color: var(--ink-30); transition: transform .3s; flex-shrink: 0; }
.gwsl-faq-item.open .gwsl-faq-arrow { transform: rotate(180deg); color: var(--gb); }
.gwsl-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; font-size: .82rem; color: var(--ink-75); line-height: 1.7; }
.gwsl-faq-item.open .gwsl-faq-a { max-height: 600px; }
.gwsl-faq-a-inner { padding: 0 1.1rem 1.1rem; }

/* ── Landing CTA ───────────────────────────────────────────── */
.gwsl-cta {
  background: linear-gradient(135deg, #0a1628 0%, #062318 100%);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gwsl-cta::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 500px;
  background: radial-gradient(ellipse, rgba(66,133,244,.15) 0%, transparent 65%);
  pointer-events: none;
}
.gwsl-cta-inner { position: relative; z-index: 1; }
.gwsl-cta-g { display: flex; gap: .5rem; justify-content: center; margin-bottom: 1.5rem; }
.gwsl-cta-dot { width: 12px; height: 12px; border-radius: 50%; }
.gwsl-cta h2 {
  font-family: var(--fd);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: .8rem;
}
.gwsl-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 2.25rem;
  line-height: 1.65;
}
.gwsl-cta-btns {
  display: flex;
  gap: .85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .gwsl-what-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .gwsl-hero { padding: 3.5rem 0 3rem; }
  .gwsl-hero h1 { font-size: 2.1rem; }
  .gwsl-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .gwsl-apps-grid { grid-template-columns: repeat(4, 1fr); }
  .gwsl-plans-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .gwsl-why-grid  { grid-template-columns: 1fr; }
  .gwsl-compare-cards { grid-template-columns: 1fr; }
  .gwsl-faq-grid  { grid-template-columns: 1fr; }
  .gwsl-azonic-grid { grid-template-columns: 1fr; }
  .gwsl-what, .gwsl-apps, .gwsl-plans, .gwsl-why, .gwsl-compare, .gwsl-azonic, .gwsl-faq, .gwsl-cta { padding: 3.5rem 0; }
  .gwsl-trust-inner { gap: 1.25rem; }
  .gwsl-cta-btns { flex-direction: column; align-items: center; }
  .btn-gws-cta, .btn-gws-outline { width: 100%; max-width: 320px; }
}
@media (max-width: 480px) {
  .gwsl-apps-grid { grid-template-columns: repeat(3, 1fr); }
  .gwsl-hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── What Is GWS — Animated Apps Right Column ─────────────── */
.gwsl-apps-anim-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gwsl-anim-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  width: 100%;
}
.gwsl-anim-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  padding: .85rem .5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
  animation: gwslFloat 3.5s ease-in-out infinite;
  animation-delay: var(--anim-delay);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  opacity: 0;
  animation-fill-mode: forwards;
}
@keyframes gwslFloat {
  0%   { opacity:0; transform: translateY(12px); }
  15%  { opacity:1; transform: translateY(0); }
  50%  { transform: translateY(-5px); }
  85%  { opacity:1; transform: translateY(0); }
  100% { opacity:1; transform: translateY(0); }
}
.gwsl-anim-card:hover {
  transform: translateY(-4px) scale(1.04) !important;
  box-shadow: 0 8px 24px rgba(66,133,244,.15);
  border-color: var(--gb);
  z-index: 1;
}
.gwsl-anim-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gwsl-anim-name {
  font-size: .68rem;
  font-weight: 600;
  color: var(--ink-75);
  line-height: 1.2;
}
.gwsl-anim-label {
  margin-top: 1.25rem;
  font-size: .78rem;
  color: var(--ink-30);
  font-weight: 500;
  letter-spacing: .04em;
  text-align: center;
}
@media (max-width: 1024px) {
  .gwsl-anim-grid { grid-template-columns: repeat(4, 1fr); }
  .gwsl-apps-anim-wrap { max-width: 420px; margin-inline: auto; }
}
@media (max-width: 480px) {
  .gwsl-anim-grid { grid-template-columns: repeat(3, 1fr); }
}