/*
Theme Name: Growth Flow
Theme URI: https://www.growth-flow.co.uk
Author: Growth Flow
Author URI: https://www.growth-flow.co.uk
Description: Premium SEO and advertising agency theme for Growth Flow. Smart Growth. Better Results.
Version: 2.7.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: growth-flow
Tags: business, marketing, seo, agency, one-page, custom-header, custom-logo, featured-images, full-width-template, threaded-comments, translation-ready
*/

/* =========================================
   GROWTH FLOW THEME - MAIN STYLESHEET
   ========================================= */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #071A33;
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- CSS VARIABLES --- */
:root {
  --navy:       #071A33;
  --navy-mid:   #0B2A4A;
  --blue:       #005EDC;
  --blue-bright:#1578FF;
  --aqua:       #00C7C7;
  --teal:       #12B8A6;
  --cyan-soft:  #EAF8FF;
  --grey-pale:  #F6FAFD;
  --white:      #FFFFFF;
  --text-grey:  #5C6B7A;
  --border:     #DDEAF2;
  --shadow-sm:  0 2px 8px rgba(7,26,51,0.07);
  --shadow-md:  0 4px 20px rgba(7,26,51,0.10);
  --shadow-lg:  0 8px 40px rgba(7,26,51,0.13);
  --radius-sm:  12px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --max-width:  1180px;
  --transition: all 0.25s ease;
}

/* --- UTILITY --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-grey);
  max-width: 600px;
  line-height: 1.7;
}

.text-blue   { color: var(--blue-bright); }
.text-aqua   { color: var(--aqua); }
.text-teal   { color: var(--teal); }
.text-center { text-align: center; }

.gradient-text {
  background: linear-gradient(135deg, var(--blue-bright), var(--aqua));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(21,120,255,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #004CC5, #1265E0);
  box-shadow: 0 6px 24px rgba(21,120,255,0.45);
  transform: translateY(-1px);
  color: var(--white);
}

.btn-outline {
  border: 2px solid var(--blue-bright);
  color: var(--blue-bright);
  background: transparent;
}
.btn-outline:hover {
  background: var(--blue-bright);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--cyan-soft);
  transform: translateY(-1px);
}

.btn-white-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--white);
  transform: translateY(-1px);
}

.btn svg, .btn img { width: 16px; height: 16px; }

/* =========================================
   BROWSER FRAME
   ========================================= */
.browser-frame {
  background: #E8EDF2;
  padding: 10px 16px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 200;
}

.browser-dots { display: flex; gap: 6px; }
.browser-dot  {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot-red   { background: #FF5F57; }
.dot-yellow{ background: #FEBC2E; }
.dot-green { background: #28C840; }

.browser-bar {
  flex: 1;
  display: flex;
  justify-content: center;
}

.browser-url {
  background: var(--white);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 12px;
  color: var(--text-grey);
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 300px;
  width: 100%;
  justify-content: center;
}

/* =========================================
   HEADER / NAVIGATION
   ========================================= */
#masthead {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(7,26,51,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}

/* Logo */
.site-branding { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.site-branding img { height: 44px; width: auto; }
.site-branding-text .site-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  display: block;
}
.site-branding-text .site-tagline {
  font-size: 10px;
  color: var(--text-grey);
  font-weight: 500;
  letter-spacing: 0.3px;
  display: block;
}

/* Nav */
.main-navigation { flex: 1; display: flex; justify-content: center; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-menu li a:hover { color: var(--blue-bright); }
.nav-menu li.current-menu-item > a {
  color: var(--blue-bright);
}
.nav-menu li.current-menu-item > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--blue-bright);
  border-radius: 2px;
}

/* Header CTA */
.header-cta { flex-shrink: 0; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* =========================================
   HERO SECTION
   ========================================= */
#hero {
  padding: 72px 0 80px;
  background: linear-gradient(160deg, #FFFFFF 55%, var(--cyan-soft) 100%);
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 20px;
  display: block;
}

.hero-headline {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero-headline .word-found  { color: var(--blue-bright); }
.hero-headline .word-clicked{ color: var(--blue-bright); }
.hero-headline .word-chosen { color: var(--aqua); }

.hero-subtext {
  font-size: 17px;
  color: var(--text-grey);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-mid);
}

.trust-check {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-check svg { width: 11px; height: 11px; color: white; }

/* Hero illustration */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
}

/* Floating service bubbles */
.service-bubble {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  border: 1px solid var(--border);
  animation: float 4s ease-in-out infinite;
}

.service-bubble img { width: 28px; height: 28px; }
.service-bubble.bubble-search { top: 5%;  left: -5%;  animation-delay: 0s; }
.service-bubble.bubble-ads    { top: 2%;  right: 10%; animation-delay: 0.8s; }
.service-bubble.bubble-analytics { right: -5%; top: 35%; animation-delay: 1.6s; }
.service-bubble.bubble-local  { bottom: 22%; left: -5%; animation-delay: 0.4s; }
.service-bubble.bubble-growth { bottom: 8%; right: 8%; animation-delay: 1.2s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* Hero background ripple placeholder */
.hero-ripple-bg {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 120%;
  opacity: 0.3;
  pointer-events: none;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
#services {
  padding: 96px 0;
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21,120,255,0.2);
}

.service-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon img { width: 40px; height: 40px; }

.service-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 4px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-grey);
  line-height: 1.6;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--blue-bright);
  transition: var(--transition);
  margin-top: 4px;
}
.service-link:hover {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  color: white;
}
.service-link svg { width: 14px; height: 14px; }

/* =========================================
   STATS / RESULTS SECTION
   ========================================= */
#stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--cyan-soft) 0%, #EBF3FF 100%);
  position: relative;
  overflow: hidden;
}

.stats-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: center;
}

.stats-left .eyebrow { color: var(--blue-bright); }

.stats-headline {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 8px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,0.8);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.stat-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cyan-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-icon-wrap img { width: 26px; height: 26px; }
.stat-icon-wrap svg { width: 22px; height: 22px; color: var(--blue-bright); }
.stat-pound-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-bright);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-mid);
  line-height: 1.3;
}

.stat-desc {
  font-size: 11px;
  color: var(--text-grey);
  line-height: 1.4;
}

/* =========================================
   PROCESS SECTION
   ========================================= */
#process {
  padding: 96px 0;
  background: var(--white);
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 6px, transparent 6px, transparent 14px);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(21,120,255,0.3);
  flex-shrink: 0;
}

.step-icon {
  width: 40px; height: 40px;
  margin-bottom: 14px;
  opacity: 0.7;
}
.step-icon img { width: 40px; height: 40px; }

.process-step h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13.5px;
  color: var(--text-grey);
  line-height: 1.65;
}

/* =========================================
   CASE STUDY SECTION
   ========================================= */
#case-study {
  padding: 80px 0;
  background: var(--grey-pale);
}

.case-study-inner {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.case-study-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-logo-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

.case-study-logo-badge img { height: 24px; width: auto; }
.case-study-logo-badge span { font-size: 10px; font-weight: 700; color: var(--navy); }

.case-study-content .eyebrow { margin-bottom: 8px; }

.case-study-content h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}

.case-study-content .subtitle {
  font-size: 14px;
  color: var(--text-grey);
  margin-bottom: 22px;
}

.case-study-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }

.case-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--navy-mid);
  font-weight: 500;
}

.bullet-check {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.bullet-check svg { width: 10px; height: 10px; color: white; }

.case-study-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-bright);
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}
.case-study-link:hover { gap: 10px; }

.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-width: 240px;
}

.case-stat {
  background: var(--grey-pale);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  border: 1px solid var(--border);
}

.case-stat-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.5px;
}

.case-stat-number.blue  { color: var(--blue-bright); }
.case-stat-number.teal  { color: var(--teal); }
.case-stat-number.navy  { color: var(--navy); }

.case-stat-label { font-size: 12px; color: var(--text-grey); margin-top: 4px; font-weight: 500; line-height: 1.4; }
.case-stat-sub   { font-size: 11px; color: var(--text-grey); margin-top: 3px; }

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
#testimonials {
  padding: 96px 0;
  background: var(--white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #F5A623;
  font-size: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--navy-mid);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.author-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.author-role { font-size: 12px; color: var(--text-grey); margin-top: 2px; }

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.carousel-dot.active { background: var(--blue-bright); width: 24px; border-radius: 4px; }

/* =========================================
   CTA BANNER SECTION
   ========================================= */
#cta-banner {
  padding: 80px 0;
  background: var(--white);
}

.cta-banner-inner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 50%, var(--teal) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-banner-inner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 30%;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-fish-circle {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.25);
}

.cta-fish-circle img { width: 38px; height: 38px; }

.cta-text h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* =========================================
   FOOTER
   ========================================= */
#colophon {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding-top: 64px;
}

.footer-main {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr auto;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Footer brand col */
.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.footer-logo-text .title { font-size: 16px; font-weight: 800; color: var(--white); display: block; }
.footer-logo-text .tagline { font-size: 10px; color: rgba(255,255,255,0.5); }

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link:hover { background: var(--blue-bright); border-color: var(--blue-bright); }
.social-link svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
.social-link:hover svg { color: white; }

/* Footer cols */
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--aqua); }

/* Contact col */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--aqua); }

/* Google Partner badge */
.google-partner-badge {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  height: fit-content;
}

.google-partner-badge img { height: 48px; width: auto; }
.badge-text { font-size: 11px; color: var(--text-grey); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; max-width: 80px; line-height: 1.3; }

/* Footer bottom */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* =========================================
   RESPONSIVE - TABLET (max 1024px)
   ========================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stats-inner   { grid-template-columns: 1fr; gap: 32px; }
  .stats-left    { text-align: center; }
  .footer-main   { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand  { grid-column: 1 / -1; }
  .google-partner-badge { grid-column: 1 / -1; width: fit-content; }
  .case-study-inner { grid-template-columns: 240px 1fr; }
  .case-stats { grid-column: 1 / -1; grid-template-columns: repeat(4,1fr); }
  .hero-headline { font-size: 38px; }
}

/* =========================================
   RESPONSIVE - MOBILE (max 768px)
   ========================================= */
@media (max-width: 768px) {
  /* Header */
  .main-navigation { display: none; }
  .main-navigation.is-open { display: flex; }
  .menu-toggle { display: flex; }

  .main-navigation {
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: flex-start;
    z-index: 99;
  }
  .nav-menu { flex-direction: column; width: 100%; gap: 0; }
  .nav-menu li a { padding: 12px 0; display: block; font-size: 16px; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: 2; }
  .hero-content { order: 1; }
  .hero-headline { font-size: 32px; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .service-bubble { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .process-step { align-items: flex-start; text-align: left; flex-direction: row; gap: 20px; }
  .step-number { flex-shrink: 0; }

  /* Case study */
  .case-study-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-stats { grid-template-columns: 1fr 1fr; }
  .case-study-image { height: 200px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-banner-inner {
    flex-direction: column;
    padding: 40px 28px;
    gap: 32px;
    text-align: center;
  }
  .cta-left { flex-direction: column; align-items: center; text-align: center; }
  .cta-buttons { justify-content: center; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-main { grid-template-columns: 1fr; }
  .case-stats { grid-template-columns: 1fr 1fr; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* =========================================
   PREMIUM WEBSITE REVAMP
   ========================================= */
:root {
  --premium-ink: #06152b;
  --premium-blue: #126fff;
  --premium-teal: #0bbfaf;
  --premium-mint: #e8fbf8;
  --premium-sky: #eef7ff;
  --premium-line: #d9e7f2;
  --premium-muted: #657386;
  --premium-shadow: 0 22px 70px rgba(7, 26, 51, 0.13);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(18, 111, 255, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.container {
  max-width: 1240px;
}

#masthead {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 231, 242, 0.88);
  box-shadow: 0 10px 36px rgba(7, 26, 51, 0.06);
}

.header-inner {
  height: 92px;
}

.site-branding img,
#masthead .site-logo-img {
  height: clamp(58px, 4.6vw, 76px);
  max-width: 290px;
  object-fit: contain;
}

.nav-menu {
  gap: 8px;
}

.nav-menu li a {
  border-radius: 8px;
  color: rgba(7, 26, 51, 0.82);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 13px;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item > a {
  background: var(--premium-sky);
  color: var(--premium-blue);
}

.nav-menu li.current-menu-item > a::after {
  display: none;
}

.btn {
  border-radius: 8px;
  font-weight: 900;
  min-height: 48px;
  padding: 0 22px;
}

.btn svg {
  width: 15px;
  height: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, #005edc, var(--premium-blue));
  box-shadow: 0 12px 30px rgba(18, 111, 255, 0.28);
}

.btn-outline {
  background: #ffffff;
  border: 1px solid rgba(18, 111, 255, 0.38);
  box-shadow: 0 10px 26px rgba(7, 26, 51, 0.06);
}

.premium-home {
  overflow: hidden;
}

.premium-eyebrow {
  color: var(--premium-blue);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  line-height: 1.3;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.premium-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(11, 191, 175, 0.16), transparent 32%),
    radial-gradient(circle at 46% 0%, rgba(18, 111, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
  padding: clamp(64px, 8vw, 112px) 0 64px;
  position: relative;
}

.premium-hero::after {
  background: linear-gradient(90deg, transparent, rgba(18, 111, 255, 0.16), transparent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
}

.premium-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(36px, 6vw, 78px);
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
}

.premium-hero-copy h1 {
  color: var(--premium-ink);
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
  max-width: 760px;
}

.premium-hero-copy p {
  color: var(--premium-muted);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.72;
  margin: 24px 0 0;
  max-width: 620px;
}

.premium-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.premium-hero-proof {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  max-width: 680px;
}

.premium-hero-proof div,
.premium-proof-grid div,
.premium-service-card,
.premium-product-grid article,
.premium-process-grid article,
.premium-report-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(217, 231, 242, 0.92);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(7, 26, 51, 0.08);
}

.premium-hero-proof div {
  padding: 15px;
}

.premium-hero-proof strong {
  color: var(--premium-ink);
  display: block;
  font-size: 14px;
  line-height: 1.25;
}

.premium-hero-proof span {
  color: var(--premium-muted);
  display: block;
  font-size: 12px;
  line-height: 1.45;
  margin-top: 5px;
}

.premium-hero-visual {
  min-width: 0;
  position: relative;
}

.premium-visual-shell {
  background: linear-gradient(145deg, #071a33, #0b2a4a 48%, #0a4b88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
  overflow: hidden;
  padding: 14px;
}

.premium-visual-toolbar {
  display: flex;
  gap: 7px;
  padding: 4px 4px 14px;
}

.premium-visual-toolbar span {
  background: rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  height: 10px;
  width: 10px;
}

.premium-visual-main {
  align-items: center;
  background:
    radial-gradient(circle at 72% 26%, rgba(0, 199, 199, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 247, 255, 0.94));
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.92fr) minmax(220px, 1fr);
  min-height: 470px;
  overflow: hidden;
  padding: clamp(22px, 3vw, 36px);
}

.premium-visual-main img {
  filter: drop-shadow(0 24px 42px rgba(18, 111, 255, 0.2));
  justify-self: center;
  max-height: 330px;
  object-fit: contain;
  width: 100%;
}

.premium-visual-report {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 231, 242, 0.92);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(7, 26, 51, 0.12);
  padding: 24px;
}

.premium-visual-report > span {
  color: var(--premium-blue);
  display: block;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.premium-visual-report h2 {
  color: var(--premium-ink);
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 22px;
}

.premium-score-grid {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.premium-score-grid div {
  background: var(--premium-sky);
  border: 1px solid rgba(18, 111, 255, 0.12);
  border-radius: 8px;
  padding: 12px;
}

.premium-score-grid strong,
.premium-score-grid em {
  display: block;
  font-style: normal;
}

.premium-score-grid strong {
  color: var(--premium-ink);
  font-size: 15px;
}

.premium-score-grid em {
  color: var(--premium-muted);
  font-size: 12px;
  margin-top: 2px;
}

.premium-floating-note {
  background: #ffffff;
  border: 1px solid var(--premium-line);
  border-radius: 8px;
  bottom: -28px;
  box-shadow: 0 18px 50px rgba(7, 26, 51, 0.13);
  max-width: 290px;
  padding: 18px;
  position: absolute;
  right: 24px;
}

.premium-floating-note strong {
  color: var(--premium-ink);
  display: block;
  font-size: 15px;
}

.premium-floating-note span {
  color: var(--premium-muted);
  display: block;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 5px;
}

.premium-proof-strip,
.premium-services,
.premium-products,
.premium-process,
.premium-reporting,
.premium-cta {
  padding: clamp(72px, 7vw, 110px) 0;
}

.premium-proof-strip {
  background: #ffffff;
}

.premium-proof-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premium-proof-grid div {
  padding: 24px;
}

.premium-proof-grid span {
  color: var(--premium-teal);
  display: block;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.4px;
  margin-bottom: 18px;
}

.premium-proof-grid strong {
  color: var(--premium-ink);
  display: block;
  font-size: 21px;
  line-height: 1.15;
}

.premium-proof-grid p {
  color: var(--premium-muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 12px 0 0;
}

.premium-section-head {
  margin-bottom: 42px;
  max-width: 820px;
}

.premium-section-head h2 {
  color: var(--premium-ink);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.premium-section-head p {
  color: var(--premium-muted);
  font-size: 17px;
  line-height: 1.72;
  margin: 18px 0 0;
  max-width: 720px;
}

.premium-service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premium-service-card {
  min-height: 100%;
  padding: 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.premium-service-card:hover,
.premium-product-grid article:hover,
.premium-process-grid article:hover {
  border-color: rgba(18, 111, 255, 0.28);
  box-shadow: 0 22px 62px rgba(7, 26, 51, 0.12);
  transform: translateY(-4px);
}

.premium-card-icon {
  align-items: center;
  background: var(--premium-sky);
  border-radius: 8px;
  display: flex;
  height: 52px;
  justify-content: center;
  margin-bottom: 18px;
  width: 52px;
}

.premium-card-icon img {
  height: 34px;
  object-fit: contain;
  width: 34px;
}

.premium-service-card > span {
  color: var(--premium-blue);
  display: block;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 10px;
}

.premium-service-card h3 {
  color: var(--premium-ink);
  font-size: 24px;
  line-height: 1.12;
  margin: 0 0 12px;
}

.premium-service-card p {
  color: var(--premium-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.premium-service-card a,
.premium-product-grid a {
  color: var(--premium-blue);
  display: inline-flex;
  font-size: 14px;
  font-weight: 950;
  margin-top: 22px;
}

.premium-system-section {
  background: linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
  padding: clamp(72px, 7vw, 110px) 0;
}

.premium-system-panel {
  background:
    radial-gradient(circle at 82% 16%, rgba(11, 191, 175, 0.26), transparent 30%),
    linear-gradient(135deg, #06152b, #0b2a4a 56%, #0c3f73);
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
  color: #ffffff;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.64fr);
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px);
}

.premium-system-copy h2,
.premium-cta-panel h2 {
  color: #ffffff;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.premium-system-copy p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.72;
  margin: 18px 0 0;
  max-width: 680px;
}

.premium-system-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.premium-system-list div,
.premium-system-metrics div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 17px;
}

.premium-system-list strong,
.premium-system-list span,
.premium-system-metrics strong,
.premium-system-metrics span {
  display: block;
}

.premium-system-list strong,
.premium-system-metrics strong {
  color: #ffffff;
  font-size: 16px;
}

.premium-system-list span,
.premium-system-metrics span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.55;
  margin-top: 4px;
}

.premium-system-metrics {
  align-content: center;
  display: grid;
  gap: 14px;
}

.premium-system-metrics strong {
  color: var(--premium-teal);
  font-size: 34px;
  line-height: 1;
}

.premium-product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premium-product-grid article {
  padding: 28px;
}

.premium-product-grid article.featured {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--premium-blue), var(--premium-teal)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 24px 70px rgba(18, 111, 255, 0.16);
}

.premium-product-grid span {
  color: var(--premium-teal);
  display: block;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 18px;
}

.premium-product-grid h3 {
  color: var(--premium-ink);
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 14px;
}

.premium-product-grid p,
.premium-process-grid p,
.premium-reporting p {
  color: var(--premium-muted);
  line-height: 1.68;
  margin: 0;
}

.premium-process {
  background: #ffffff;
}

.premium-process-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.premium-process-grid article {
  padding: 24px;
}

.premium-process-grid span {
  color: var(--premium-blue);
  display: block;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 28px;
}

.premium-process-grid h3 {
  color: var(--premium-ink);
  font-size: 23px;
  margin: 0 0 10px;
}

.premium-reporting {
  background: linear-gradient(180deg, #f3f9ff 0%, #ffffff 100%);
}

.premium-reporting-grid {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
}

.premium-reporting h2 {
  color: var(--premium-ink);
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 18px;
}

.premium-reporting .btn {
  margin-top: 28px;
}

.premium-report-card {
  padding: 28px;
}

.premium-report-card-head {
  align-items: center;
  border-bottom: 1px solid var(--premium-line);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding-bottom: 18px;
}

.premium-report-card-head strong {
  color: var(--premium-ink);
  font-size: 20px;
}

.premium-report-card-head span {
  background: var(--premium-mint);
  border-radius: 999px;
  color: #08796f;
  font-size: 12px;
  font-weight: 950;
  padding: 7px 10px;
}

.premium-report-card ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

.premium-report-card li {
  color: var(--premium-ink);
  font-size: 15px;
  line-height: 1.5;
  padding-left: 26px;
  position: relative;
}

.premium-report-card li::before {
  background: var(--premium-teal);
  border-radius: 999px;
  content: "";
  height: 8px;
  left: 4px;
  position: absolute;
  top: 9px;
  width: 8px;
}

.premium-cta {
  padding-top: 0;
}

.premium-cta-panel,
.footer-cta-strip {
  background:
    radial-gradient(circle at 90% 20%, rgba(11, 191, 175, 0.24), transparent 30%),
    linear-gradient(135deg, #06152b, #0b2a4a 58%, #126fff);
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
}

.premium-cta-panel .premium-eyebrow,
.footer-cta-strip span {
  color: var(--premium-teal);
}

.premium-cta-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.premium-footer {
  background: #06152b;
  padding-top: 34px;
}

.footer-cta-strip {
  align-items: center;
  margin-bottom: 46px;
}

.footer-cta-strip h2 {
  color: #ffffff;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 8px 0 0;
}

.footer-main {
  grid-template-columns: minmax(250px, 1.2fr) repeat(4, minmax(0, 0.72fr));
}

.footer-logo img {
  filter: none;
  height: 58px;
}

.footer-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-mini-proof span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 900;
  padding: 7px 9px;
}

.footer-contact-col {
  min-width: 190px;
}

@media (max-width: 1120px) {
  .premium-hero-grid,
  .premium-system-panel,
  .premium-reporting-grid {
    grid-template-columns: 1fr;
  }

  .premium-hero-visual {
    max-width: 780px;
  }

  .premium-service-grid,
  .premium-product-grid,
  .premium-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 768px) {
  .header-inner {
    height: 82px;
  }

  .site-branding img,
  #masthead .site-logo-img {
    height: 54px;
    max-width: 210px;
  }

  .main-navigation {
    top: 82px;
  }

  .premium-hero {
    padding-top: 48px;
  }

  .premium-hero-copy h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .premium-hero-proof,
  .premium-proof-grid,
  .premium-service-grid,
  .premium-product-grid,
  .premium-process-grid,
  .premium-visual-main,
  .premium-cta-panel,
  .footer-cta-strip {
    grid-template-columns: 1fr;
  }

  .premium-floating-note {
    margin-top: 16px;
    max-width: none;
    position: static;
  }

  .premium-visual-main {
    min-height: auto;
  }

  .premium-visual-main img {
    max-height: 260px;
  }

  .premium-section-head h2,
  .premium-system-copy h2,
  .premium-cta-panel h2,
  .premium-reporting h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .premium-cta-actions {
    justify-content: flex-start;
  }

  .premium-cta-actions .btn,
  .footer-cta-strip .btn,
  .premium-hero-actions .btn {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .premium-hero,
  .premium-proof-strip,
  .premium-services,
  .premium-products,
  .premium-process,
  .premium-reporting,
  .premium-system-section {
    padding-left: 0;
    padding-right: 0;
  }

  .premium-visual-shell,
  .premium-system-panel,
  .premium-cta-panel,
  .footer-cta-strip {
    margin-left: -2px;
    margin-right: -2px;
  }
}

/* =========================================
   ACCESSIBILITY
   ========================================= */
:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =========================================
   WP ALIGNMENT CLASSES
   ========================================= */
.alignleft  { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter{ display: block; margin: 0 auto 1em; }

/* =========================================
   REAL ASSET OVERRIDES & ADDITIONS
   ========================================= */

/* Logo in header */
.site-logo-img {
    height: 52px;
    width: auto;
    max-width: 220px;
    display: block;
}

/* Footer logo */
.footer-logo { text-decoration: none; display: inline-block; margin-bottom: 14px; }
.footer-logo-img {
    height: 44px;
    width: auto;
    max-width: 180px;
    filter: brightness(0) invert(1);
    display: block;
}

/* Hero waves background */
.hero-waves {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.waves-bg-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0.5;
    object-fit: cover;
}
#hero { position: relative; }
#hero .container { position: relative; z-index: 1; }

/* Hero fish image */
.hero-fish-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(21,120,255,0.15));
}
.hero-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service icon sizing */
.service-icon img {
    width: 52px;
    height: auto;
    max-height: 52px;
    object-fit: contain;
    display: block;
}

/* CTA fish icon */
.cta-fish-circle img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

/* Google Partner badge in footer */
.google-partner-badge {
    background: transparent;
    padding: 0;
    box-shadow: none;
    align-self: flex-start;
    margin-top: 8px;
}
.google-partner-badge img {
    width: 200px;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

/* Testimonial avatar images */
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border);
    flex-shrink: 0;
    background: var(--cyan-soft);
}
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Case study image */
.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Process — remove step icon (we removed those, keep it clean) */
.step-icon { display: none; }

/* Process clean layout */
.process-step {
    padding: 0 24px;
    text-align: center;
    align-items: center;
}

/* Mobile hero fish */
@media (max-width: 768px) {
    .hero-fish-img { max-width: 100%; }
    .site-logo-img { height: 40px; }
    .footer-logo-img { height: 36px; }
    .google-partner-badge img { width: 160px; }
}

/* =========================================
   HIGH-END MOTION AND GRAPHIC LAYER
   ========================================= */
.premium-hero {
  background:
    linear-gradient(90deg, rgba(18, 111, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 111, 255, 0.04) 1px, transparent 1px),
    url("images/waves-bg.png") left bottom / min(760px, 58vw) auto no-repeat,
    linear-gradient(180deg, #ffffff 0%, #f2f9ff 100%);
  background-size: 64px 64px, 64px 64px, min(760px, 58vw) auto, auto;
}

.premium-hero-grid,
.premium-proof-grid,
.premium-section-head,
.premium-service-grid,
.premium-system-panel,
.premium-product-grid,
.premium-process-grid,
.premium-reporting-grid,
.premium-cta-panel,
.footer-cta-strip,
.footer-main,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.premium-visual-shell,
.premium-system-panel,
.premium-cta-panel,
.footer-cta-strip {
  border-radius: 8px;
}

.premium-visual-main {
  background:
    linear-gradient(90deg, rgba(18, 111, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 111, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 247, 255, 0.96));
  background-size: 42px 42px, 42px 42px, auto;
}

.premium-motion-stage {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 330px;
  position: relative;
}

.premium-motion-stage img {
  animation: gf-float 5.5s ease-in-out infinite;
  filter: drop-shadow(0 28px 45px rgba(18, 111, 255, 0.24));
  max-height: 330px;
  object-fit: contain;
  position: relative;
  width: min(100%, 390px);
  z-index: 2;
}

.premium-motion-stage::before,
.premium-motion-stage::after {
  background: linear-gradient(90deg, transparent, rgba(18, 111, 255, 0.28), rgba(0, 199, 199, 0.28), transparent);
  content: "";
  height: 2px;
  left: 5%;
  position: absolute;
  right: 5%;
  z-index: 1;
}

.premium-motion-stage::before {
  animation: gf-signal 3.2s ease-in-out infinite;
  top: 30%;
}

.premium-motion-stage::after {
  animation: gf-signal 3.2s ease-in-out infinite reverse;
  bottom: 30%;
}

.premium-signal-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 231, 242, 0.95);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(7, 26, 51, 0.12);
  padding: 12px 14px;
  position: absolute;
  width: 168px;
  z-index: 3;
}

.premium-signal-card strong,
.premium-signal-card span {
  display: block;
}

.premium-signal-card strong {
  color: var(--premium-ink);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.premium-signal-card span {
  color: var(--premium-muted);
  font-size: 11px;
  line-height: 1.35;
  margin-top: 4px;
}

.premium-signal-card-one {
  left: 0;
  top: 42px;
}

.premium-signal-card-two {
  bottom: 38px;
  right: 0;
}

.premium-marquee {
  background: #06152b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.premium-marquee::before,
.premium-marquee::after {
  bottom: 0;
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  width: min(12vw, 180px);
  z-index: 2;
}

.premium-marquee::before {
  background: linear-gradient(90deg, #06152b, transparent);
  left: 0;
}

.premium-marquee::after {
  background: linear-gradient(270deg, #06152b, transparent);
  right: 0;
}

.premium-marquee-track {
  animation: gf-marquee 28s linear infinite;
  display: flex;
  gap: 14px;
  padding: 18px 0;
  width: max-content;
}

.premium-marquee-track span {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 950;
  gap: 9px;
  min-height: 46px;
  padding: 8px 18px 8px 10px;
}

.premium-marquee-track img {
  background: #ffffff;
  border-radius: 999px;
  height: 30px;
  object-fit: contain;
  padding: 5px;
  width: 30px;
}

.premium-service-card,
.premium-product-grid article,
.premium-process-grid article,
.premium-report-card,
.premium-proof-grid div {
  position: relative;
}

.premium-service-card::after,
.premium-product-grid article::after,
.premium-process-grid article::after {
  background: linear-gradient(90deg, var(--premium-blue), var(--premium-teal));
  content: "";
  height: 3px;
  left: 18px;
  opacity: 0;
  position: absolute;
  right: 18px;
  top: 0;
  transition: opacity 0.22s ease;
}

.premium-service-card:hover::after,
.premium-product-grid article:hover::after,
.premium-process-grid article:hover::after {
  opacity: 1;
}

.premium-system-graphic {
  align-items: center;
  display: grid;
  min-height: 430px;
  position: relative;
}

.premium-system-graphic > img {
  bottom: -58px;
  filter: drop-shadow(0 30px 54px rgba(0, 199, 199, 0.18));
  max-width: 520px;
  opacity: 0.58;
  position: absolute;
  right: -82px;
  width: 120%;
}

.premium-system-graphic .premium-system-metrics {
  position: relative;
  z-index: 2;
}

.premium-product-grid article > img {
  background: linear-gradient(180deg, #f2f9ff, #ffffff);
  border: 1px solid rgba(217, 231, 242, 0.94);
  border-radius: 8px;
  height: 58px;
  margin-bottom: 22px;
  object-fit: contain;
  padding: 10px;
  width: 58px;
}

.premium-report-preview {
  background:
    linear-gradient(90deg, rgba(18, 111, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 111, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #eff8ff);
  background-size: 30px 30px, 30px 30px, auto;
  border: 1px solid rgba(217, 231, 242, 0.96);
  border-radius: 8px;
  margin: 22px 0;
  min-height: 178px;
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.premium-report-preview::after {
  background: linear-gradient(135deg, var(--premium-blue), var(--premium-teal));
  bottom: 22px;
  content: "";
  height: 48px;
  left: 20px;
  position: absolute;
  width: 74%;
}

.premium-report-preview div {
  display: flex;
  gap: 8px;
  margin-bottom: 44px;
}

.premium-report-preview div span {
  background: rgba(18, 111, 255, 0.22);
  border-radius: 999px;
  height: 9px;
  width: 9px;
}

.premium-report-preview strong,
.premium-report-preview em {
  display: block;
  position: relative;
  z-index: 2;
}

.premium-report-preview strong {
  color: var(--premium-ink);
  font-size: 22px;
  line-height: 1.1;
}

.premium-report-preview em {
  color: var(--premium-muted);
  font-size: 13px;
  font-style: normal;
  margin-top: 7px;
}

.premium-footer {
  overflow: hidden;
  position: relative;
}

.footer-wave-art {
  bottom: -120px;
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
  right: -100px;
  width: min(620px, 52vw);
}

.premium-footer .footer-logo-panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: inline-flex;
  margin-bottom: 18px;
  padding: 0;
}

.premium-footer .footer-logo-img {
  filter: none !important;
  height: 54px;
  max-width: 210px;
}

@keyframes gf-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes gf-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes gf-signal {
  0%, 100% { opacity: 0.22; transform: translateX(-10px); }
  50% { opacity: 0.86; transform: translateX(10px); }
}

@media (prefers-reduced-motion: reduce) {
  .premium-marquee-track,
  .premium-motion-stage img,
  .premium-motion-stage::before,
  .premium-motion-stage::after {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .premium-system-graphic {
    min-height: 360px;
  }

  .premium-system-graphic > img {
    max-width: 460px;
    right: -40px;
  }
}

@media (max-width: 768px) {
  .premium-motion-stage {
    min-height: 280px;
  }

  .premium-signal-card {
    position: relative;
  }

  .premium-signal-card-one,
  .premium-signal-card-two {
    bottom: auto;
    left: auto;
    position: absolute;
    right: auto;
    top: auto;
  }

  .premium-signal-card-one {
    left: 8px;
    top: 18px;
  }

  .premium-signal-card-two {
    bottom: 18px;
    right: 8px;
  }

  .premium-marquee-track {
    animation-duration: 22s;
  }

  .premium-system-graphic {
    min-height: auto;
  }

  .premium-system-graphic > img {
    bottom: auto;
    margin: 10px auto 22px;
    max-width: 360px;
    opacity: 0.5;
    position: relative;
    right: auto;
    width: 100%;
  }

  .footer-wave-art {
    width: 380px;
  }
}

/* =========================================
   AGENCY ILLUSTRATED DIRECTION
   Softer, less box-led visual system inspired by premium agency themes.
   ========================================= */
.premium-home {
  background:
    url("images/waves-bg.png") left 620px / min(920px, 82vw) auto no-repeat,
    linear-gradient(180deg, #f6f8ff 0%, #ffffff 24%, #f4fbff 58%, #ffffff 100%);
}

.premium-home .container {
  max-width: 1240px;
}

.premium-hero {
  background:
    url("images/footer-waves.png") right -120px bottom -130px / min(720px, 58vw) auto no-repeat,
    linear-gradient(130deg, #f8f7ff 0%, #f4fbff 45%, #ffffff 100%);
  min-height: min(820px, calc(100vh - 92px));
  overflow: hidden;
  padding: clamp(76px, 9vw, 132px) 0 clamp(62px, 7vw, 92px);
}

.premium-hero::before {
  background: rgba(18, 111, 255, 0.06);
  clip-path: ellipse(72% 38% at 74% 42%);
  content: "";
  inset: 0 0 0 38%;
  pointer-events: none;
  position: absolute;
}

.premium-hero-grid {
  gap: clamp(34px, 6vw, 94px);
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
}

.premium-eyebrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 111, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(7, 26, 51, 0.055);
  color: #5a68d8;
  display: inline-flex;
  font-size: 12px;
  letter-spacing: 0.8px;
  margin-bottom: 22px;
  padding: 11px 16px;
  text-transform: none;
}

.premium-hero-copy h1 {
  color: #151f46;
  font-size: clamp(52px, 6.8vw, 92px);
  letter-spacing: 0;
  line-height: 0.97;
  max-width: 820px;
}

.premium-hero-copy p {
  color: #68728d;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.78;
  max-width: 650px;
}

.premium-hero-actions {
  margin-top: 38px;
}

.premium-hero-actions .btn {
  border-radius: 999px;
  min-height: 58px;
  padding-left: 28px;
  padding-right: 28px;
}

.premium-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.premium-hero-proof div {
  align-items: center;
  background: rgba(255, 255, 255, 0.74);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(7, 26, 51, 0.06);
  display: inline-flex;
  gap: 9px;
  padding: 10px 14px;
}

.premium-hero-proof div::before {
  background: linear-gradient(135deg, var(--premium-blue), var(--premium-teal));
  border-radius: 999px;
  content: "";
  height: 10px;
  width: 10px;
}

.premium-hero-proof strong {
  color: #151f46;
  font-size: 13px;
}

.premium-hero-proof span {
  display: none;
}

.premium-visual-shell {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  padding: 0;
}

.premium-visual-toolbar {
  display: none;
}

.premium-visual-main {
  background: transparent;
  display: block;
  min-height: 570px;
  overflow: visible;
  padding: 0;
  position: relative;
}

.premium-visual-main::before {
  background:
    url("images/waves-bg.png") center bottom / 100% auto no-repeat,
    linear-gradient(150deg, rgba(255, 255, 255, 0.78), rgba(238, 248, 255, 0.58));
  border-radius: 50% 50% 8px 8px;
  content: "";
  height: 82%;
  inset: auto 1% 0;
  position: absolute;
}

.premium-motion-stage {
  min-height: 540px;
}

.premium-motion-stage img {
  max-height: 500px;
  width: min(100%, 610px);
}

.premium-visual-report {
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  bottom: 56px;
  box-shadow: 0 26px 74px rgba(7, 26, 51, 0.12);
  max-width: 320px;
  padding: 22px;
  position: absolute;
  right: 0;
  z-index: 4;
}

.premium-visual-report h2 {
  font-size: 22px;
  line-height: 1.08;
}

.premium-score-grid div {
  border: 0;
  box-shadow: none;
}

.premium-signal-card {
  border: 0;
  box-shadow: 0 20px 56px rgba(7, 26, 51, 0.12);
}

.premium-signal-card-one {
  left: 6%;
  top: 16%;
}

.premium-signal-card-two {
  bottom: 16%;
  right: 8%;
}

.premium-floating-note {
  background: #151f46;
  border: 0;
  border-radius: 8px;
  bottom: 18px;
  color: #ffffff;
  left: 0;
  right: auto;
}

.premium-floating-note strong {
  color: #ffffff;
}

.premium-floating-note span {
  color: rgba(255, 255, 255, 0.72);
}

.premium-marquee {
  background: #151f46;
  border: 0;
}

.premium-marquee-track span {
  background: rgba(255, 255, 255, 0.12);
  border: 0;
}

.premium-proof-strip {
  background: #ffffff;
  padding-bottom: clamp(40px, 5vw, 78px);
  padding-top: clamp(52px, 6vw, 84px);
}

.premium-proof-grid {
  align-items: stretch;
  background: #151f46;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(21, 31, 70, 0.18);
  gap: 0;
  overflow: hidden;
}

.premium-proof-grid div {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: clamp(26px, 3.2vw, 42px);
}

.premium-proof-grid div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.premium-proof-grid span {
  color: #8ff3e9;
}

.premium-proof-grid strong {
  color: #ffffff;
}

.premium-proof-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.premium-services,
.premium-products,
.premium-process,
.premium-reporting {
  background: transparent;
}

.premium-section-head {
  max-width: 900px;
}

.premium-section-head h2,
.premium-reporting h2,
.premium-system-copy h2,
.premium-cta-panel h2 {
  color: #151f46;
  font-size: clamp(38px, 5vw, 72px);
  letter-spacing: 0;
  line-height: 0.98;
}

.premium-section-head p {
  color: #68728d;
  font-size: 18px;
}

.premium-service-grid {
  display: grid;
  gap: clamp(18px, 2.2vw, 30px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.premium-service-card {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.78);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 20px 64px rgba(7, 26, 51, 0.07);
  display: grid;
  gap: 0 20px;
  grid-template-columns: 72px minmax(0, 1fr);
  min-height: auto;
  padding: clamp(24px, 3vw, 34px);
}

.premium-service-card::after,
.premium-product-grid article::after,
.premium-process-grid article::after {
  display: none;
}

.premium-card-icon {
  background: #f1f5ff;
  border-radius: 999px;
  grid-row: 1 / span 4;
  height: 64px;
  margin: 0;
  width: 64px;
}

.premium-service-card > span {
  color: #5a68d8;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}

.premium-service-card h3 {
  color: #151f46;
  font-size: clamp(24px, 2.5vw, 34px);
}

.premium-service-card p {
  color: #68728d;
  font-size: 15px;
}

.premium-service-card a,
.premium-product-grid a {
  background: transparent;
  color: #126fff;
  margin-top: 18px;
}

.premium-system-section {
  background:
    url("images/waves-bg.png") right bottom / min(820px, 66vw) auto no-repeat,
    linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
}

.premium-system-panel {
  background: transparent;
  box-shadow: none;
  color: #151f46;
  padding: 0;
}

.premium-system-copy p {
  color: #68728d;
}

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

.premium-system-list div {
  background: rgba(255, 255, 255, 0.78);
  border: 0;
  box-shadow: 0 18px 54px rgba(7, 26, 51, 0.07);
}

.premium-system-list strong {
  color: #151f46;
}

.premium-system-list span {
  color: #68728d;
}

.premium-system-metrics div {
  background: #151f46;
  border: 0;
  box-shadow: 0 22px 70px rgba(21, 31, 70, 0.18);
}

.premium-system-metrics strong {
  color: #8ff3e9;
}

.premium-system-metrics span {
  color: rgba(255, 255, 255, 0.72);
}

.premium-products {
  background: #f6f8ff;
}

.premium-product-grid {
  gap: 20px;
}

.premium-product-grid article {
  background: #ffffff;
  border: 0;
  box-shadow: 0 24px 70px rgba(7, 26, 51, 0.075);
  overflow: hidden;
  padding: clamp(26px, 3vw, 36px);
}

.premium-product-grid article.featured {
  background:
    url("images/footer-waves.png") right -130px bottom -160px / 360px auto no-repeat,
    #151f46;
  box-shadow: 0 26px 80px rgba(21, 31, 70, 0.24);
}

.premium-product-grid article.featured h3,
.premium-product-grid article.featured p {
  color: #ffffff;
}

.premium-product-grid article.featured a,
.premium-product-grid article.featured span {
  color: #8ff3e9;
}

.premium-product-grid article > img {
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(18, 111, 255, 0.1);
}

.premium-process-grid {
  align-items: stretch;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 28px 86px rgba(7, 26, 51, 0.08);
  gap: 0;
  overflow: hidden;
}

.premium-process-grid article {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: clamp(24px, 3vw, 36px);
}

.premium-process-grid article + article {
  border-left: 1px solid rgba(217, 231, 242, 0.78);
}

.premium-reporting {
  background:
    linear-gradient(120deg, #ffffff 0%, #f7f8ff 100%);
}

.premium-report-card {
  background: #ffffff;
  border: 0;
  box-shadow: 0 28px 86px rgba(7, 26, 51, 0.09);
}

.premium-report-preview {
  border: 0;
}

.premium-cta-panel,
.footer-cta-strip {
  background:
    url("images/footer-waves.png") right -120px center / 420px auto no-repeat,
    #151f46;
}

.premium-cta-panel h2,
.footer-cta-strip h2 {
  color: #ffffff;
}

@media (max-width: 1120px) {
  .premium-hero-grid {
    grid-template-columns: 1fr;
  }

  .premium-visual-main {
    min-height: 520px;
  }

  .premium-visual-report {
    right: 5%;
  }
}

@media (max-width: 768px) {
  .premium-hero {
    min-height: 0;
    padding-top: 48px;
  }

  .premium-hero-copy h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .premium-visual-main {
    min-height: 420px;
  }

  .premium-motion-stage {
    min-height: 390px;
  }

  .premium-motion-stage img {
    max-height: 360px;
    width: min(100%, 430px);
  }

  .premium-visual-report,
  .premium-floating-note {
    bottom: auto;
    left: auto;
    margin-top: 14px;
    max-width: none;
    position: relative;
    right: auto;
  }

  .premium-signal-card {
    width: 150px;
  }

  .premium-proof-grid,
  .premium-service-grid,
  .premium-product-grid,
  .premium-process-grid {
    grid-template-columns: 1fr;
  }

  .premium-proof-grid div + div,
  .premium-process-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(217, 231, 242, 0.78);
  }

  .premium-proof-grid div + div {
    border-top-color: rgba(255, 255, 255, 0.12);
  }

  .premium-service-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .premium-card-icon {
    height: 52px;
    width: 52px;
  }

  .premium-card-icon img {
    height: 30px;
    width: 30px;
  }
}

/* =========================================
   FLOW AND SCROLL DIRECTION
   Tighter section rhythm with connected motion scenes.
   ========================================= */
html,
body {
  overflow-x: hidden;
}

.premium-home {
  --gf-flow-overlap: clamp(30px, 4.8vw, 68px);
  background:
    url("images/waves-bg.png") left 560px / min(820px, 72vw) auto no-repeat,
    url("images/footer-waves.png") right 41% / min(620px, 56vw) auto no-repeat,
    linear-gradient(180deg, #f7f8ff 0%, #ffffff 21%, #f5fbff 48%, #ffffff 78%, #f6f8ff 100%);
}

.premium-hero {
  margin-bottom: calc(var(--gf-flow-overlap) * -0.75);
  min-height: 0;
  overflow: visible;
  padding: clamp(52px, 6.4vw, 88px) 0 clamp(34px, 4.8vw, 64px);
  z-index: 2;
}

.premium-hero::before {
  clip-path: ellipse(70% 37% at 76% 43%);
  transform: translate3d(0, var(--gf-curve-shift, 0), 0);
  transition: transform 0.18s linear;
}

.premium-hero::after {
  background: #ffffff;
  bottom: calc(var(--gf-flow-overlap) * -1.05);
  clip-path: ellipse(64% 54% at 50% 0%);
  content: "";
  height: clamp(70px, 9vw, 132px);
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 0;
}

.premium-hero-grid {
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
}

.premium-hero-copy h1 {
  font-size: clamp(48px, 6.2vw, 82px);
}

.premium-hero-copy p {
  line-height: 1.62;
  margin-top: 18px;
}

.premium-hero-actions {
  margin-top: 28px;
}

.premium-hero-proof {
  margin-top: 24px;
}

.premium-visual-main {
  min-height: clamp(440px, 42vw, 548px);
}

.premium-visual-main::before {
  border-radius: 48% 48% 8px 8px;
  height: 80%;
}

.premium-motion-stage {
  min-height: clamp(390px, 39vw, 510px);
  transform: translate3d(0, var(--gf-hero-shift, 0), 0);
  transition: transform 0.18s linear;
  will-change: transform;
}

.premium-motion-stage img {
  max-height: clamp(360px, 38vw, 474px);
}

.premium-visual-report {
  bottom: clamp(36px, 4vw, 50px);
  transform: translate3d(0, var(--gf-report-shift, 0), 0);
  transition: transform 0.18s linear;
}

.premium-floating-note {
  bottom: clamp(6px, 2vw, 16px);
  transform: translate3d(0, var(--gf-note-shift, 0), 0);
  transition: transform 0.18s linear;
}

.premium-marquee {
  z-index: 3;
}

.premium-marquee-track {
  padding: 14px 0;
}

.premium-marquee-track span {
  min-height: 40px;
}

.premium-proof-strip {
  padding: clamp(30px, 4vw, 54px) 0 clamp(34px, 4.2vw, 58px);
  position: relative;
  z-index: 2;
}

.premium-proof-grid {
  transform: translateY(calc(var(--gf-flow-overlap) * -0.38));
}

.premium-proof-grid div {
  padding: clamp(22px, 2.7vw, 34px);
}

.premium-services,
.premium-system-section,
.premium-products,
.premium-process,
.premium-reporting,
.premium-cta {
  overflow: hidden;
  position: relative;
}

.premium-services,
.premium-products,
.premium-process,
.premium-reporting {
  padding: clamp(42px, 5vw, 72px) 0;
}

.premium-system-section {
  margin-top: calc(var(--gf-flow-overlap) * -0.2);
  padding: clamp(44px, 5vw, 72px) 0;
}

.premium-cta {
  padding: clamp(38px, 5vw, 70px) 0 clamp(54px, 6vw, 86px);
}

.premium-services::before,
.premium-products::before,
.premium-process::before,
.premium-reporting::before {
  color: rgba(18, 111, 255, 0.045);
  font-size: clamp(76px, 13vw, 188px);
  font-weight: 950;
  left: 50%;
  letter-spacing: 0;
  line-height: 0.8;
  pointer-events: none;
  position: absolute;
  top: clamp(4px, 1.8vw, 24px);
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 0;
}

.premium-services::before {
  content: "SERVICES";
}

.premium-products::before {
  content: "PRODUCTS";
}

.premium-process::before {
  content: "PROCESS";
}

.premium-reporting::before {
  content: "PROOF";
}

.premium-services .container,
.premium-system-section .container,
.premium-products .container,
.premium-process .container,
.premium-reporting .container,
.premium-cta .container {
  position: relative;
  z-index: 1;
}

.premium-section-head {
  margin-bottom: clamp(24px, 3vw, 34px);
}

.premium-section-head h2,
.premium-reporting h2,
.premium-system-copy h2,
.premium-cta-panel h2 {
  font-size: clamp(34px, 4.35vw, 62px);
}

.premium-section-head p,
.premium-system-copy p,
.premium-reporting p {
  line-height: 1.58;
  margin-top: 14px;
}

.premium-service-grid {
  gap: clamp(14px, 2vw, 24px);
}

.premium-service-card {
  box-shadow: 0 16px 50px rgba(7, 26, 51, 0.065);
  padding: clamp(21px, 2.5vw, 30px);
}

.premium-system-panel {
  gap: clamp(24px, 4vw, 42px);
}

.premium-system-list {
  margin-top: 22px;
}

.premium-system-graphic {
  min-height: clamp(320px, 32vw, 430px);
}

.premium-system-graphic > img {
  transform: translate3d(0, var(--gf-system-shift, 0), 0);
  transition: transform 0.18s linear;
  will-change: transform;
}

.premium-product-grid {
  gap: clamp(14px, 2vw, 22px);
}

.premium-product-grid article {
  min-height: auto;
  padding: clamp(22px, 2.5vw, 30px);
}

.premium-process-grid article {
  padding: clamp(22px, 2.6vw, 32px);
}

.premium-reporting-grid {
  gap: clamp(26px, 4vw, 44px);
}

.premium-report-card {
  transform: translate3d(0, var(--gf-report-card-shift, 0), 0);
  transition: transform 0.18s linear;
  will-change: transform;
}

.premium-cta-panel {
  padding: clamp(30px, 4.6vw, 52px);
}

.gf-flow-ready {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--gf-stagger, 0s),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--gf-stagger, 0s);
  will-change: opacity, transform;
}

.gf-flow-ready.gf-flow-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .gf-flow-ready,
  .gf-flow-ready.gf-flow-in,
  .premium-motion-stage,
  .premium-visual-report,
  .premium-floating-note,
  .premium-system-graphic > img,
  .premium-report-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1120px) {
  .premium-hero-grid {
    grid-template-columns: 1fr;
  }

  .premium-hero {
    margin-bottom: 0;
  }

  .premium-proof-grid {
    transform: none;
  }
}

@media (max-width: 768px) {
  .premium-home {
    --gf-flow-overlap: 0px;
  }

  .premium-hero {
    padding: 34px 0 30px;
  }

  .premium-hero::after {
    display: none;
  }

  .premium-hero-copy h1 {
    font-size: clamp(38px, 11.5vw, 56px);
    line-height: 1;
  }

  .premium-hero-copy p {
    font-size: 16px;
    line-height: 1.55;
  }

  .premium-hero-actions {
    gap: 10px;
  }

  .premium-visual-main {
    min-height: 360px;
  }

  .premium-motion-stage {
    min-height: 330px;
  }

  .premium-motion-stage img {
    max-height: 310px;
  }

  .premium-proof-strip,
  .premium-services,
  .premium-system-section,
  .premium-products,
  .premium-process,
  .premium-reporting,
  .premium-cta {
    padding: 34px 0;
  }

  .premium-section-head {
    margin-bottom: 20px;
  }

  .premium-section-head h2,
  .premium-reporting h2,
  .premium-system-copy h2,
  .premium-cta-panel h2 {
    font-size: clamp(32px, 10vw, 46px);
    line-height: 1.02;
  }

  .premium-services::before,
  .premium-products::before,
  .premium-process::before,
  .premium-reporting::before {
    font-size: clamp(58px, 18vw, 100px);
    top: 8px;
  }

  .premium-service-card {
    gap: 0 14px;
    padding: 20px;
  }

  .premium-product-grid article,
  .premium-process-grid article,
  .premium-report-card,
  .premium-cta-panel {
    padding: 22px;
  }

  .gf-flow-ready {
    transform: translate3d(0, 20px, 0);
  }
}

/* =========================================
   CHIGZ BLUEPRINT IMPLEMENTATION
   Premium content depth, proof structure and tighter conversion sections.
   ========================================= */
.premium-problems,
.premium-founder,
.premium-case-framework,
.premium-scorecard,
.premium-faq {
  overflow: hidden;
  padding: clamp(42px, 5vw, 74px) 0;
  position: relative;
}

.premium-problems {
  background:
    url("images/footer-waves.png") right -160px bottom -180px / min(540px, 48vw) auto no-repeat,
    linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
}

.premium-problems::before,
.premium-case-framework::before,
.premium-faq::before {
  color: rgba(18, 111, 255, 0.043);
  font-size: clamp(66px, 12vw, 172px);
  font-weight: 950;
  left: 50%;
  letter-spacing: 0;
  line-height: 0.8;
  pointer-events: none;
  position: absolute;
  top: clamp(4px, 1.8vw, 24px);
  transform: translateX(-50%);
  white-space: nowrap;
}

.premium-problems::before {
  content: "PROBLEMS";
}

.premium-case-framework::before {
  content: "RESULTS";
}

.premium-faq::before {
  content: "FAQS";
}

.premium-problems .container,
.premium-founder .container,
.premium-case-framework .container,
.premium-scorecard .container,
.premium-faq .container {
  position: relative;
  z-index: 1;
}

.premium-problem-grid,
.premium-case-grid,
.premium-faq-grid {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
}

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

.premium-problem-grid article,
.premium-case-grid article,
.premium-faq-grid article {
  background: rgba(255, 255, 255, 0.82);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 58px rgba(7, 26, 51, 0.07);
  min-width: 0;
  padding: clamp(20px, 2.4vw, 30px);
}

.premium-problem-grid img {
  background: #f1f5ff;
  border-radius: 999px;
  height: 58px;
  margin-bottom: 20px;
  object-fit: contain;
  padding: 10px;
  width: 58px;
}

.premium-problem-grid h3,
.premium-case-grid h3,
.premium-faq-grid h3 {
  color: #151f46;
  font-size: clamp(20px, 2vw, 27px);
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0 0 10px;
}

.premium-problem-grid p,
.premium-case-grid p,
.premium-faq-grid p,
.premium-scorecard-panel p,
.premium-founder-panel p {
  color: #68728d;
  line-height: 1.62;
  margin: 0;
}

.premium-founder {
  background:
    url("images/waves-bg.png") left bottom / min(700px, 58vw) auto no-repeat,
    #ffffff;
}

.premium-founder-panel,
.premium-scorecard-panel {
  background:
    radial-gradient(circle at 88% 16%, rgba(11, 191, 175, 0.2), transparent 30%),
    #151f46;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(21, 31, 70, 0.18);
  color: #ffffff;
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  padding: clamp(28px, 4.6vw, 54px);
}

.premium-founder-panel h2,
.premium-scorecard-panel h2 {
  color: #ffffff;
  font-size: clamp(34px, 4.35vw, 62px);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0 0 18px;
}

.premium-founder-panel p,
.premium-scorecard-panel p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 780px;
}

.premium-founder-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.premium-founder-points span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 900;
  padding: 9px 13px;
}

.premium-founder-timeline {
  display: grid;
  gap: 14px;
}

.premium-founder-timeline article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 18px;
}

.premium-founder-timeline strong,
.premium-founder-timeline span,
.premium-case-grid span {
  display: block;
}

.premium-founder-timeline strong {
  color: #8ff3e9;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
}

.premium-founder-timeline span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.premium-case-framework {
  background:
    url("images/waves-bg.png") right bottom / min(680px, 58vw) auto no-repeat,
    #ffffff;
}

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

.premium-case-grid span {
  color: #0bbfaf;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.4px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.premium-text-link {
  color: #126fff;
  display: inline-flex;
  font-weight: 950;
  margin-top: 24px;
}

.premium-scorecard {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
  padding-top: 0;
}

.premium-scorecard-panel {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
}

.premium-scorecard-panel .btn {
  justify-self: end;
  white-space: nowrap;
}

.premium-faq {
  background: #ffffff;
}

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

.premium-faq-grid article {
  box-shadow: none;
  border: 1px solid rgba(217, 231, 242, 0.9);
}

.premium-footer .footer-main {
  grid-template-columns: minmax(230px, 1.1fr) repeat(5, minmax(0, 0.72fr));
}

@media (max-width: 1180px) {
  .premium-problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .premium-founder-panel,
  .premium-scorecard-panel {
    grid-template-columns: 1fr;
  }

  .premium-scorecard-panel .btn {
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .premium-problems,
  .premium-founder,
  .premium-case-framework,
  .premium-scorecard,
  .premium-faq {
    padding: 34px 0;
  }

  .premium-problem-grid,
  .premium-case-grid,
  .premium-faq-grid {
    grid-template-columns: 1fr;
  }

  .premium-problems::before,
  .premium-case-framework::before,
  .premium-faq::before {
    font-size: clamp(58px, 18vw, 100px);
    top: 8px;
  }

  .premium-founder-panel,
  .premium-scorecard-panel {
    padding: 24px;
  }

  .premium-founder-panel h2,
  .premium-scorecard-panel h2 {
    font-size: clamp(32px, 10vw, 46px);
    line-height: 1.02;
  }

  .premium-footer .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .premium-footer .footer-main {
    grid-template-columns: 1fr;
  }
}

/* Focused premium homepage refresh */
.premium-home-v3 {
  background: #f6fbff;
  color: #071832;
  overflow: hidden;
}

.premium-home-v3 .container {
  width: min(1180px, calc(100% - 40px));
  max-width: none;
}

.premium-home-v3 .premium-eyebrow {
  color: #0d7df2;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.premium-home-v3 .btn {
  min-height: 54px;
}

#hero.gf-hero-v3 {
  position: relative;
  padding: 74px 0 48px;
  background:
    linear-gradient(90deg, rgba(246, 251, 255, 0.98) 0%, rgba(246, 251, 255, 0.84) 48%, rgba(233, 247, 255, 0.92) 100%),
    linear-gradient(rgba(13, 125, 242, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 125, 242, 0.06) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

.gf-hero-v3::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 125, 242, 0.22), transparent);
}

.gf-hero-v3-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.78fr);
  gap: 54px;
  align-items: center;
}

.gf-hero-v3-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.gf-hero-v3-copy h1 {
  margin: 18px 0 20px;
  max-width: 760px;
  color: #06142d;
  font-size: 5.8rem;
  line-height: 0.94;
  letter-spacing: 0;
}

.gf-hero-v3-lede {
  max-width: 650px;
  margin: 0 0 30px;
  color: #516174;
  font-size: 1.22rem;
  line-height: 1.7;
}

.gf-hero-v3-actions,
.gf-hero-v3-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.gf-hero-v3-actions {
  margin-bottom: 24px;
}

.gf-hero-v3-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(13, 125, 242, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #18304f;
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 12px 36px rgba(6, 24, 50, 0.06);
}

.gf-hero-v3-proof span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: #12c9c3;
  box-shadow: 0 0 0 5px rgba(18, 201, 195, 0.13);
}

.gf-hero-v3-visual {
  position: relative;
  min-height: 540px;
}

.gf-visual-console {
  position: absolute;
  top: 34px;
  right: 8px;
  width: min(420px, 96%);
  padding: 22px;
  border: 1px solid rgba(149, 184, 219, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(5, 20, 45, 0.96), rgba(8, 45, 82, 0.92)),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  box-shadow: 0 32px 80px rgba(7, 24, 50, 0.22);
  translate: 0 var(--gf-console-shift, 0);
  transition: translate 0.18s linear;
}

.gf-console-top,
.gf-console-hero-row,
.gf-console-route,
.gf-report-mock-head,
.gf-report-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gf-console-top {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.gf-console-top strong {
  color: #82f6e9;
}

.gf-console-hero-row {
  padding: 24px 0 22px;
  gap: 22px;
}

.gf-console-hero-row span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gf-console-hero-row strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 4rem;
  line-height: 1;
}

.gf-console-ring {
  display: grid;
  width: 108px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#12c9c3 0 78%, rgba(255, 255, 255, 0.16) 78% 100%);
}

.gf-console-ring span {
  width: 74px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #061833;
}

.gf-console-bars {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.gf-console-bars span {
  display: block;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.gf-console-bars span::after {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1479ff, #12c9c3);
  animation: gfBarLoad 1.2s ease-out both;
}

.gf-console-route {
  gap: 10px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.gf-console-route i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(18, 201, 195, 0.12), rgba(18, 201, 195, 0.9));
}

.gf-hero-v3-fish {
  position: absolute;
  right: 94px;
  bottom: 54px;
  z-index: 2;
  width: min(430px, 88%);
  filter: drop-shadow(0 30px 54px rgba(17, 104, 202, 0.24));
  animation: gfHeroFloat 6s ease-in-out infinite;
}

.gf-hero-v3-chip {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  min-width: 132px;
  padding: 13px 15px;
  border: 1px solid rgba(13, 125, 242, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(7, 24, 50, 0.12);
  translate: 0 var(--gf-chip-shift, 0);
  transition: translate 0.18s linear;
}

.gf-hero-v3-chip strong {
  color: #06142d;
  font-size: 0.92rem;
}

.gf-hero-v3-chip span {
  color: #607286;
  font-size: 0.76rem;
  font-weight: 750;
}

.gf-chip-one {
  top: 102px;
  left: 12px;
}

.gf-chip-two {
  right: 4px;
  bottom: 164px;
}

.gf-chip-three {
  left: 44px;
  bottom: 68px;
}

.gf-home-marquee {
  border-top: 0;
  border-bottom: 1px solid rgba(13, 125, 242, 0.12);
  background: #ffffff;
}

.gf-home-marquee::before {
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.gf-home-marquee::after {
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.gf-home-marquee .premium-marquee-track span {
  border: 1px solid rgba(183, 211, 234, 0.72);
  background: rgba(255, 255, 255, 0.88);
  color: #173452;
  box-shadow: 0 12px 34px rgba(7, 24, 50, 0.06);
}

.gf-growth-system,
.gf-service-snapshot,
.gf-product-lane,
.gf-report-proof {
  padding: 58px 0;
}

.gf-growth-system {
  background: #ffffff;
}

.gf-service-snapshot {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(237, 248, 255, 0.92)),
    linear-gradient(90deg, transparent 0, transparent 49%, rgba(13, 125, 242, 0.08) 50%, transparent 51%);
  background-size: auto, 110px 110px;
}

.gf-product-lane {
  background: #f7fbff;
}

.gf-section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.52fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 30px;
}

.gf-section-split h2 {
  max-width: 760px;
  margin: 12px 0 0;
  color: #071832;
  font-size: 3.1rem;
  line-height: 1;
  letter-spacing: 0;
}

.gf-section-split p {
  margin: 0;
  color: #5f7185;
  font-size: 1rem;
  line-height: 1.7;
}

.gf-system-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gf-system-lanes article,
.gf-service-strip a,
.gf-product-row article {
  position: relative;
  border: 1px solid rgba(191, 213, 231, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 52px rgba(7, 24, 50, 0.07);
}

.gf-system-lanes article {
  min-height: 254px;
  padding: 26px;
  overflow: hidden;
}

.gf-system-lanes article::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #1479ff, #12c9c3);
  transform: scaleX(0.38);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.gf-system-lanes article:hover::after {
  transform: scaleX(1);
}

.gf-system-lanes span,
.gf-product-row article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 36px;
  margin-bottom: 52px;
  border-radius: 999px;
  background: rgba(20, 121, 255, 0.1);
  color: #0d63d8;
  font-size: 0.82rem;
  font-weight: 900;
}

.gf-system-lanes h3,
.gf-product-row h3 {
  margin: 0 0 10px;
  color: #071832;
  font-size: 1.55rem;
  line-height: 1.08;
}

.gf-system-lanes p,
.gf-product-row p {
  margin: 0;
  color: #5d6f84;
  font-size: 0.96rem;
  line-height: 1.66;
}

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

.gf-service-strip a {
  display: grid;
  gap: 12px;
  min-height: 178px;
  padding: 18px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.gf-service-strip a:hover,
.gf-product-row article:hover {
  border-color: rgba(18, 201, 195, 0.55);
  box-shadow: 0 26px 70px rgba(7, 24, 50, 0.11);
  transform: translateY(-4px);
}

.gf-service-strip img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.gf-service-strip strong {
  color: #071832;
  font-size: 1rem;
  line-height: 1.18;
}

.gf-service-strip span {
  color: #607286;
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.45;
}

.gf-product-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gf-product-row article {
  display: grid;
  min-height: 306px;
  padding: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.gf-product-row article > span {
  justify-self: start;
  margin-bottom: 38px;
}

.gf-product-row a {
  align-self: end;
  justify-self: start;
  margin-top: 22px;
  color: #0d63d8;
  font-weight: 900;
  text-decoration: none;
}

.gf-product-featured {
  background:
    linear-gradient(145deg, rgba(8, 29, 61, 0.96), rgba(4, 63, 92, 0.94)),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px) !important;
  background-size: auto, 36px 36px, 36px 36px !important;
  border-color: rgba(18, 201, 195, 0.44) !important;
}

.gf-product-featured h3,
.gf-product-featured p,
.gf-product-featured a {
  color: #ffffff;
}

.gf-product-featured > span {
  background: rgba(18, 201, 195, 0.16) !important;
  color: #8ff7ef !important;
}

.gf-report-proof {
  background: #06142d;
  color: #ffffff;
}

.gf-report-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(330px, 0.68fr);
  gap: 42px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(17, 68, 127, 0.42), rgba(3, 17, 39, 0.76)),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.gf-report-copy h2 {
  max-width: 720px;
  margin: 12px 0 18px;
  color: #ffffff;
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: 0;
}

.gf-report-copy p {
  max-width: 620px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.04rem;
  line-height: 1.72;
}

.gf-report-mock {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: #071832;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  translate: 0 var(--gf-proof-shift, 0);
  transition: translate 0.18s linear;
}

.gf-report-mock-head {
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(12, 35, 63, 0.1);
}

.gf-report-mock-head img {
  width: 148px;
  max-height: 44px;
  object-fit: contain;
}

.gf-report-mock-head span {
  color: #0d63d8;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gf-report-chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: end;
  height: 190px;
  margin-top: 20px;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f5fbff, #e9f6ff);
}

.gf-report-chart span {
  display: block;
  height: var(--height);
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #1479ff, #12c9c3);
  box-shadow: 0 14px 30px rgba(13, 125, 242, 0.2);
}

.gf-report-metrics {
  gap: 8px;
  margin-top: 12px;
  color: #607286;
  font-size: 0.74rem;
  font-weight: 850;
}

.gf-home-final-cta {
  padding-top: 62px;
}

@keyframes gfHeroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
  50% {
    transform: translate3d(0, -16px, 0) rotate(1deg);
  }
}

@keyframes gfBarLoad {
  from {
    transform: scaleX(0.2);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@media (max-width: 1180px) {
  .gf-hero-v3-copy h1 {
    font-size: 4.8rem;
  }

  .gf-hero-v3-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr);
    gap: 34px;
  }

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

@media (max-width: 900px) {
  #hero.gf-hero-v3 {
    padding-top: 48px;
  }

  .gf-hero-v3-grid,
  .gf-section-split,
  .gf-report-panel {
    grid-template-columns: 1fr;
  }

  .gf-hero-v3-copy h1 {
    font-size: 4rem;
  }

  .gf-hero-v3-visual {
    min-height: 470px;
  }

  .gf-visual-console {
    right: 0;
  }

  .gf-hero-v3-fish {
    right: 84px;
    width: 360px;
  }

  .gf-system-lanes,
  .gf-product-row {
    grid-template-columns: 1fr;
  }

  .gf-system-lanes article,
  .gf-product-row article {
    min-height: auto;
  }

  .gf-system-lanes span,
  .gf-product-row article > span {
    margin-bottom: 28px;
  }

  .gf-report-copy h2,
  .gf-section-split h2 {
    font-size: 2.7rem;
  }
}

@media (max-width: 640px) {
  .premium-home-v3 .container {
    width: min(calc(100% - 28px), 1180px);
  }

  .gf-hero-v3-copy h1 {
    font-size: 3.25rem;
  }

  .gf-hero-v3-lede {
    font-size: 1.04rem;
  }

  .gf-hero-v3-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .gf-hero-v3-visual {
    min-height: 420px;
  }

  .gf-visual-console {
    width: 100%;
    padding: 18px;
  }

  .gf-console-hero-row strong {
    font-size: 3rem;
  }

  .gf-console-ring {
    width: 88px;
  }

  .gf-console-ring span {
    width: 60px;
  }

  .gf-hero-v3-fish {
    right: 20px;
    bottom: 54px;
    width: 310px;
  }

  .gf-hero-v3-chip {
    min-width: 112px;
    padding: 10px 12px;
  }

  .gf-chip-one {
    top: 202px;
    left: 8px;
  }

  .gf-chip-two {
    right: 2px;
    bottom: 130px;
  }

  .gf-chip-three {
    left: 18px;
    bottom: 30px;
  }

  .gf-growth-system,
  .gf-service-snapshot,
  .gf-product-lane,
  .gf-report-proof {
    padding: 42px 0;
  }

  .gf-section-split {
    gap: 16px;
    margin-bottom: 22px;
  }

  .gf-section-split h2,
  .gf-report-copy h2 {
    font-size: 2.2rem;
  }

  .gf-service-strip {
    grid-template-columns: 1fr 1fr;
  }

  .gf-service-strip a {
    min-height: 154px;
    padding: 15px;
  }

  .gf-report-panel {
    padding: 22px;
  }

  .gf-report-chart {
    height: 150px;
    gap: 8px;
    padding: 14px;
  }
}

@media (max-width: 420px) {
  .gf-hero-v3-copy h1 {
    font-size: 2.74rem;
  }

  .gf-service-strip {
    grid-template-columns: 1fr 1fr;
  }

  .gf-console-route {
    font-size: 0.66rem;
  }

  .gf-report-metrics {
    flex-wrap: wrap;
  }
}

@media (max-width: 340px) {
  .gf-service-strip {
    grid-template-columns: 1fr;
  }
}

/* Hero animation and richer dashboard treatment */
#hero.gf-hero-v3 {
  padding: 70px 0 54px;
  background:
    linear-gradient(120deg, rgba(5, 18, 42, 0.96) 0%, rgba(7, 39, 83, 0.94) 52%, rgba(4, 78, 96, 0.9) 100%),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 58px 58px, 58px 58px;
  color: #ffffff;
}

.gf-hero-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(20, 121, 255, 0.22), transparent 34%),
    linear-gradient(288deg, rgba(18, 201, 195, 0.2), transparent 36%);
  pointer-events: none;
}

.gf-hero-v3::after {
  background: linear-gradient(90deg, transparent, rgba(130, 246, 233, 0.34), transparent);
}

.gf-hero-v3 .container {
  position: relative;
  z-index: 1;
}

.gf-hero-v3-copy h1 {
  color: #ffffff;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.gf-hero-v3-lede {
  color: rgba(235, 246, 255, 0.82);
}

.gf-hero-v3 .premium-eyebrow {
  display: inline-flex;
  padding: 11px 15px;
  border: 1px solid rgba(130, 246, 233, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #82f6e9;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.gf-hero-v3 .btn-outline {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.gf-hero-v3 .btn-outline:hover {
  border-color: rgba(130, 246, 233, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.gf-hero-v3-proof span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: #f7fbff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.gf-hero-v3-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
}

.gf-hero-v3-visual {
  min-height: 560px;
}

.gf-hero-media-stack {
  position: relative;
  min-height: 530px;
}

.gf-hero-video-card {
  position: absolute;
  top: 16px;
  right: 0;
  z-index: 3;
  width: min(430px, 92%);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(130, 246, 233, 0.28);
  border-radius: 8px;
  background: #071832;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.gf-hero-video-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gf-hero-video-card span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 18, 42, 0.68);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gf-hero-v3 .gf-visual-console {
  top: auto;
  right: auto;
  bottom: 86px;
  left: 0;
  z-index: 4;
  width: min(340px, 78%);
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px;
  backdrop-filter: blur(18px);
}

.gf-hero-v3 .gf-console-hero-row {
  padding: 18px 0 16px;
}

.gf-hero-v3 .gf-console-hero-row strong {
  font-size: 3.35rem;
}

.gf-hero-v3 .gf-console-ring {
  width: 88px;
}

.gf-hero-v3 .gf-console-ring span {
  width: 60px;
  background: rgba(5, 18, 42, 0.86);
}

.gf-hero-chart-wall {
  position: absolute;
  right: 42px;
  bottom: 8px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  width: min(390px, 82%);
  height: 155px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05)),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: auto, 22px 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.gf-hero-chart-wall span {
  display: block;
  height: var(--height);
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #82f6e9, #1479ff);
  box-shadow: 0 12px 28px rgba(18, 201, 195, 0.22);
}

.gf-hero-chip-row {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 18px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gf-hero-v3 .gf-hero-v3-chip {
  position: relative;
  inset: auto;
  min-width: 116px;
  padding: 12px 14px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.gf-hero-v3 .gf-hero-v3-chip strong {
  color: #ffffff;
}

.gf-hero-v3 .gf-hero-v3-chip span {
  color: rgba(235, 246, 255, 0.74);
}

.gf-chip-one,
.gf-chip-two,
.gf-chip-three {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}

.gf-growth-system {
  background:
    linear-gradient(135deg, #06142d 0%, #0b2546 68%, #074c5a 100%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 52px 52px, 52px 52px;
  color: #ffffff;
}

.gf-growth-system .gf-section-split h2,
.gf-growth-system .gf-system-lanes h3 {
  color: #ffffff;
}

.gf-growth-system .gf-section-split p,
.gf-growth-system .gf-system-lanes p {
  color: rgba(235, 246, 255, 0.72);
}

.gf-growth-system .gf-system-lanes article {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
    linear-gradient(90deg, rgba(130, 246, 233, 0.12), transparent 48%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.gf-growth-system .gf-system-lanes span {
  background: rgba(130, 246, 233, 0.14);
  color: #82f6e9;
}

@media (max-width: 1180px) {
  .gf-hero-v3-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.82fr);
  }

  .gf-hero-video-card {
    width: min(390px, 92%);
  }

  .gf-hero-v3 .gf-visual-console {
    width: min(320px, 78%);
  }
}

@media (max-width: 900px) {
  #hero.gf-hero-v3 {
    padding: 46px 0 44px;
  }

  .gf-hero-v3-grid {
    grid-template-columns: 1fr;
  }

  .gf-hero-v3-visual {
    min-height: 590px;
  }

  .gf-hero-media-stack {
    min-height: 560px;
  }

  .gf-hero-video-card {
    top: 0;
    right: 0;
    width: min(430px, 100%);
  }

  .gf-hero-v3 .gf-visual-console {
    bottom: 116px;
    left: 0;
    width: min(340px, 76%);
  }

  .gf-hero-chart-wall {
    right: 0;
    width: min(390px, 86%);
  }
}

@media (max-width: 640px) {
  #hero.gf-hero-v3 {
    padding-top: 30px;
  }

  .gf-hero-v3-lede {
    margin-bottom: 22px;
  }

  .gf-hero-v3-actions {
    margin-bottom: 14px;
  }

  .gf-hero-v3-proof {
    display: none;
  }

  .gf-hero-v3-visual {
    min-height: auto;
    margin-top: 14px;
  }

  .gf-hero-v3-visual.gf-flow-ready {
    opacity: 1;
    transform: none;
  }

  .gf-hero-media-stack {
    display: grid;
    gap: 14px;
    min-height: auto;
  }

  .gf-hero-video-card,
  .gf-hero-v3 .gf-visual-console,
  .gf-hero-chart-wall {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
  }

  .gf-hero-v3 .gf-visual-console {
    padding: 16px;
  }

  .gf-hero-v3 .gf-console-hero-row strong {
    font-size: 2.85rem;
  }

  .gf-hero-chart-wall {
    height: 122px;
    padding: 14px;
  }

  .gf-hero-chip-row {
    position: relative;
    inset: auto;
    margin-top: 14px;
  }

  .gf-hero-v3 .gf-hero-v3-chip {
    flex: 1 1 126px;
  }
}

/* Clean hero media pass: keep the animation unobstructed */
#hero.gf-hero-v3 {
  background:
    linear-gradient(115deg, rgba(5, 18, 42, 0.97) 0%, rgba(7, 38, 77, 0.95) 58%, rgba(238, 249, 255, 0.98) 58.2%, rgba(248, 252, 255, 0.98) 100%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 58px 58px, 58px 58px;
}

#hero.gf-hero-v3 .gf-hero-v3-proof {
  max-width: 520px;
}

.gf-hero-v3-visual {
  display: grid;
  min-height: auto;
  align-items: center;
}

.gf-hero-media-stack {
  position: relative;
  display: grid;
  gap: 16px;
  justify-items: center;
  min-height: auto;
  padding: 24px;
  border: 1px solid rgba(190, 218, 237, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 250, 255, 0.96)),
    linear-gradient(rgba(13, 125, 242, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 125, 242, 0.05) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.18);
}

.gf-hero-video-card {
  position: relative;
  inset: auto;
  z-index: 2;
  width: min(430px, 100%);
  border: 0;
  background: #f8fcff;
  box-shadow: none;
}

.gf-hero-video-card video {
  object-fit: contain;
  background: #f8fcff;
}

.gf-hero-video-card span {
  display: none;
}

.gf-hero-v3 .gf-visual-console,
.gf-hero-chart-wall {
  display: none;
}

.gf-hero-chip-row {
  position: relative;
  inset: auto;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(430px, 100%);
  margin: 0;
}

.gf-hero-v3 .gf-hero-v3-chip {
  position: relative;
  inset: auto;
  min-width: 0;
  padding: 12px 13px;
  border-color: rgba(178, 209, 231, 0.9);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(7, 24, 50, 0.08);
  backdrop-filter: none;
}

.gf-hero-v3 .gf-hero-v3-chip strong {
  color: #06142d;
}

.gf-hero-v3 .gf-hero-v3-chip span {
  color: #637487;
}

@media (max-width: 900px) {
  #hero.gf-hero-v3 {
    background:
      linear-gradient(180deg, rgba(5, 18, 42, 0.97) 0%, rgba(7, 38, 77, 0.96) 63%, rgba(238, 249, 255, 0.98) 63.2%, rgba(248, 252, 255, 0.98) 100%),
      linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: auto, 58px 58px, 58px 58px;
  }

  .gf-hero-media-stack {
    width: min(520px, 100%);
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .gf-hero-media-stack {
    padding: 12px;
  }

  .gf-hero-chip-row {
    grid-template-columns: 1fr;
  }

  .gf-hero-v3 .gf-hero-v3-chip {
    display: none;
  }
}

/* Navigation, footer and animation colour pass */
#masthead .nav-menu li a,
#masthead .nav-menu li.current-menu-item > a {
  border: 1px solid transparent;
  background: transparent;
  color: rgba(7, 26, 51, 0.86);
  box-shadow: none;
}

#masthead .nav-menu li a:hover,
#masthead .nav-menu li a:focus-visible {
  border-color: rgba(21, 120, 255, 0.28);
  background: rgba(21, 120, 255, 0.1);
  color: var(--premium-blue);
}

#masthead .nav-menu li.current-menu-item > a::after {
  display: none;
}

#hero.gf-hero-v3 {
  background:
    linear-gradient(115deg, rgba(5, 18, 42, 0.97) 0%, rgba(7, 38, 77, 0.95) 56%, #ffffff 56.2%, #ffffff 100%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 58px 58px, 58px 58px;
}

.gf-hero-media-stack {
  width: min(610px, 100%);
  padding: 18px;
  border-color: rgba(221, 234, 242, 0.96);
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(7, 26, 51, 0.16);
}

.gf-hero-video-card {
  width: min(560px, 100%);
  background: #ffffff;
}

.gf-hero-video-card video {
  background: #ffffff;
}

.gf-hero-chip-row {
  width: min(560px, 100%);
}

#colophon.premium-footer,
#colophon.site-footer {
  background: #ffffff;
  color: #5c6b7a;
  border-top: 1px solid rgba(221, 234, 242, 0.95);
}

.premium-footer .footer-wave-art {
  opacity: 0.08;
}

.premium-footer .footer-cta-strip {
  border: 1px solid rgba(221, 234, 242, 0.96);
  background:
    linear-gradient(135deg, rgba(234, 248, 255, 0.92), rgba(255, 255, 255, 0.98)),
    url("images/footer-waves.png") right -120px center / 420px auto no-repeat;
  color: #071a33;
  box-shadow: 0 18px 55px rgba(7, 26, 51, 0.08);
}

.premium-footer .footer-cta-strip span {
  color: var(--premium-blue);
}

.premium-footer .footer-cta-strip h2,
.premium-footer .footer-col h4,
.premium-footer .footer-logo-text .title {
  color: #071a33;
}

.premium-footer .footer-main {
  border-bottom-color: rgba(221, 234, 242, 0.96);
}

.premium-footer .footer-logo-panel {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.premium-footer .footer-brand-desc,
.premium-footer .footer-col ul li a,
.premium-footer .footer-contact-item,
.premium-footer .footer-contact-item a,
.premium-footer .footer-bottom p,
.premium-footer .footer-bottom-links a {
  color: #5c6b7a;
}

.premium-footer .footer-mini-proof span {
  border-color: rgba(21, 120, 255, 0.18);
  background: rgba(21, 120, 255, 0.08);
  color: #0b2a4a;
}

.premium-footer .footer-col ul li a:hover,
.premium-footer .footer-contact-item a:hover,
.premium-footer .footer-bottom-links a:hover {
  color: var(--premium-blue);
}

.premium-footer .footer-contact-item svg {
  color: var(--aqua);
}

#hero.gf-hero-v3 .gf-hero-v3-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(590px, 0.95fr);
  gap: 34px;
}

#hero.gf-hero-v3 .gf-hero-v3-copy h1 {
  font-size: 5.45rem;
}

#hero.gf-hero-v3 .gf-hero-media-stack {
  justify-self: end;
  width: min(610px, 100%);
  padding: 14px;
}

#hero.gf-hero-v3 .gf-hero-video-card {
  width: min(560px, 100%);
}

#hero.gf-hero-v3 .gf-hero-chip-row {
  width: min(560px, 100%);
}

@media (max-width: 900px) {
  #hero.gf-hero-v3 {
    background:
      linear-gradient(180deg, rgba(5, 18, 42, 0.97) 0%, rgba(7, 38, 77, 0.96) 62%, #ffffff 62.2%, #ffffff 100%),
      linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: auto, 58px 58px, 58px 58px;
  }

  .gf-hero-media-stack {
    width: min(610px, 100%);
  }
}

@media (max-width: 1180px) {
  #hero.gf-hero-v3 .gf-hero-v3-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(510px, 0.95fr);
  }

  #hero.gf-hero-v3 .gf-hero-v3-copy h1 {
    font-size: 4.75rem;
  }
}

@media (max-width: 980px) {
  #hero.gf-hero-v3 .gf-hero-v3-grid {
    grid-template-columns: 1fr;
  }

  #hero.gf-hero-v3 .gf-hero-media-stack {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  #hero.gf-hero-v3 .gf-hero-v3-copy h1 {
    font-size: 3.05rem;
    line-height: 1.02;
  }

  .gf-hero-media-stack {
    width: 100%;
    padding: 10px;
  }
}

/* Compact premium homepage scale */
#hero.gf-hero-v3 {
  padding: 40px 0 30px;
}

#hero.gf-hero-v3 .gf-hero-v3-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(490px, 0.86fr);
  gap: 28px;
}

#hero.gf-hero-v3 .gf-hero-v3-copy h1 {
  max-width: 580px;
  margin: 14px 0;
  font-size: 3.65rem;
  line-height: 1;
}

#hero.gf-hero-v3 .gf-hero-v3-lede {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: 1.02rem;
  line-height: 1.62;
}

.premium-home-v3 .premium-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

#hero.gf-hero-v3 .gf-hero-media-stack {
  width: min(485px, 100%);
  padding: 12px;
}

#hero.gf-hero-v3 .gf-hero-video-card,
#hero.gf-hero-v3 .gf-hero-chip-row {
  width: min(465px, 100%);
}

#hero.gf-hero-v3 .gf-hero-v3-chip {
  padding: 9px 11px;
}

.gf-home-marquee .premium-marquee-track {
  padding: 10px 0;
}

.gf-home-marquee .premium-marquee-track span {
  min-height: 34px;
  font-size: 12px;
}

.gf-growth-system,
.gf-service-snapshot,
.gf-product-lane,
.gf-report-proof {
  padding: 42px 0;
}

.gf-section-split {
  gap: 24px;
  margin-bottom: 22px;
}

.gf-section-split h2,
.gf-report-copy h2,
.premium-cta-panel h2,
.footer-cta-strip h2 {
  font-size: 2.1rem;
  line-height: 1.08;
}

.gf-system-lanes article {
  min-height: 205px;
  padding: 22px;
}

.gf-system-lanes span,
.gf-product-row article > span {
  min-height: 32px;
  margin-bottom: 26px;
}

.gf-system-lanes h3,
.gf-product-row h3,
.gf-service-strip h3 {
  font-size: 1.25rem;
}

.gf-service-strip a {
  min-height: 145px;
  padding: 16px;
}

.gf-product-row article {
  min-height: 260px;
  padding: 22px;
}

.gf-report-panel {
  padding: 28px;
}

.gf-report-chart {
  height: 150px;
}

.gf-home-final-cta {
  padding-top: 42px;
}

.premium-cta {
  padding: 38px 0 50px;
}

.premium-cta-panel {
  padding: 30px;
}

@media (max-width: 1180px) {
  #hero.gf-hero-v3 .gf-hero-v3-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(450px, 0.9fr);
  }

  #hero.gf-hero-v3 .gf-hero-v3-copy h1 {
    font-size: 3.35rem;
  }
}

@media (max-width: 980px) {
  #hero.gf-hero-v3 {
    padding: 30px 0 28px;
  }

  #hero.gf-hero-v3 .gf-hero-v3-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #hero.gf-hero-v3 .gf-hero-media-stack {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  #hero.gf-hero-v3 {
    padding: 22px 0 24px;
  }

  #hero.gf-hero-v3 .gf-hero-v3-copy h1 {
    font-size: 2.15rem;
    line-height: 1.04;
  }

  #hero.gf-hero-v3 .gf-hero-v3-lede {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .gf-growth-system,
  .gf-service-snapshot,
  .gf-product-lane,
  .gf-report-proof {
    padding: 34px 0;
  }

  .gf-section-split h2,
  .gf-report-copy h2,
  .premium-cta-panel h2,
  .footer-cta-strip h2 {
    font-size: 1.65rem;
    line-height: 1.12;
  }

  .gf-system-lanes article,
  .gf-product-row article {
    min-height: 0;
    padding: 18px;
  }

  .gf-service-strip a {
    min-height: 132px;
  }
}

/* Shared section tightening for older page blocks */
#services,
#process,
#testimonials {
  padding: 62px 0;
}

#stats,
#case-study,
#cta-banner {
  padding: 54px 0;
}

.services-header,
.process-header,
.testimonials-header {
  margin-bottom: 38px;
}

.cta-banner-inner {
  padding: 38px 46px;
  gap: 30px;
}

.stats-headline {
  font-size: 2rem;
  line-height: 1.14;
}

.case-study-inner {
  padding: 30px;
  gap: 32px;
}

@media (max-width: 900px) {
  #services,
  #process,
  #testimonials,
  #stats,
  #case-study,
  #cta-banner {
    padding: 42px 0;
  }

  .services-header,
  .process-header,
  .testimonials-header {
    margin-bottom: 28px;
  }

  .cta-banner-inner {
    padding: 28px;
  }

  .stats-headline {
    font-size: 1.75rem;
  }
}

@media (max-width: 640px) {
  #services,
  #process,
  #testimonials,
  #stats,
  #case-study,
  #cta-banner {
    padding: 34px 0;
  }

  .cta-banner-inner,
  .case-study-inner {
    padding: 22px;
  }
}
