/* ==========================================================================
   GROWTH IMPROVERS - Real Estate Lead Generation Agency Stylesheet
   Theme: High-Converting Tech-Driven Performance Marketing
   ========================================================================== */

:root {
  /* Brand Color System (Directly matching logo) */
  --brand-blue: #1054b8;
  --brand-blue-dark: #0a3578;
  --brand-blue-deep: #061e47;
  --brand-blue-light: #e8f1fc;
  --brand-blue-subtle: #f0f6ff;
  
  --brand-green: #6cbd37;
  --brand-green-accent: #7dc142;
  --brand-green-dark: #4f9622;
  --brand-green-light: #f0fae8;
  --brand-green-glow: rgba(125, 193, 66, 0.25);

  --brand-cyan: #00a3e0;
  --brand-cyan-light: #e6f7fd;

  /* Neutrals */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  /* Gradients */
  --gradient-blue: linear-gradient(135deg, #1054b8 0%, #061e47 100%);
  --gradient-blue-card: linear-gradient(135deg, rgba(16, 84, 184, 0.06) 0%, rgba(0, 163, 224, 0.02) 100%);
  --gradient-green: linear-gradient(135deg, #7dc142 0%, #5ba826 100%);
  --gradient-hero: linear-gradient(180deg, #f0f6ff 0%, #ffffff 100%);
  --gradient-dark-section: linear-gradient(135deg, #071f4a 0%, #0a3578 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(16, 84, 184, 0.08), 0 4px 6px -4px rgba(16, 84, 184, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(16, 84, 184, 0.12), 0 8px 10px -6px rgba(16, 84, 184, 0.06);
  --shadow-green: 0 8px 20px -4px rgba(125, 193, 66, 0.35);
  --shadow-blue: 0 8px 20px -4px rgba(16, 84, 184, 0.25);

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Typography */
  --font-heading: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* --------------------------------------------------------------------------
   Reset & Global Typography
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--slate-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brand-blue-deep);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

a {
  color: var(--brand-blue);
  text-decoration: none;
  transition: all 0.2s ease;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --------------------------------------------------------------------------
   Layout Containers & Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-light {
  background-color: var(--white);
}

.section-alt {
  background-color: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.section-blue-subtle {
  background-color: var(--brand-blue-subtle);
  border-top: 1px solid rgba(16, 84, 184, 0.1);
  border-bottom: 1px solid rgba(16, 84, 184, 0.1);
}

.section-dark {
  background: var(--gradient-dark-section);
  color: var(--slate-100);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

/* Circuit Motif Accents */
.circuit-bg {
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(16, 84, 184, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(125, 193, 66, 0.05) 0%, transparent 40%),
    linear-gradient(to right, rgba(16, 84, 184, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(16, 84, 184, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 32px 32px, 32px 32px;
}

.circuit-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 1.5rem 0;
}
.circuit-divider .line {
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--brand-blue), var(--brand-green));
}
.circuit-divider .node {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand-green);
  box-shadow: 0 0 8px var(--brand-green);
}
.circuit-divider .line-rev {
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-blue), transparent);
}

/* --------------------------------------------------------------------------
   Badges & Pill Tags
   -------------------------------------------------------------------------- */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge-pill-blue {
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
  border: 1px solid rgba(16, 84, 184, 0.2);
}

.badge-pill-green {
  background-color: var(--brand-green-light);
  color: var(--brand-green-dark);
  border: 1px solid rgba(125, 193, 66, 0.3);
}

.badge-pill-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #a3e635;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.edit-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.725rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  background-color: #fef3c7;
  color: #92400e;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px dashed #f59e0b;
  margin-left: 4px;
  vertical-align: middle;
  font-weight: 600;
}

/* Section Header Structure */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
}

.section-header .section-subtitle {
  font-size: 1.125rem;
  color: var(--slate-600);
  margin-top: 1rem;
}

.section-header h2 {
  font-size: 2.35rem;
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.85rem;
  }
}

/* --------------------------------------------------------------------------
   Buttons & CTAs
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--brand-green);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background-color: var(--brand-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(108, 189, 55, 0.45);
  color: var(--white);
}

.btn-blue {
  background-color: var(--brand-blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover {
  background-color: var(--brand-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(16, 84, 184, 0.35);
  color: var(--white);
}

.btn-outline-blue {
  background-color: transparent;
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
}
.btn-outline-blue:hover {
  background-color: var(--brand-blue-light);
  color: var(--brand-blue-dark);
  transform: translateY(-2px);
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-pulse {
  position: relative;
}
.btn-pulse::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  border: 2px solid var(--brand-green);
  animation: pulse-border 2s infinite;
  pointer-events: none;
}

@keyframes pulse-border {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.08); opacity: 0; }
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.site-header.scrolled .nav-container {
  height: 84px;
}

.site-header.scrolled .brand-logo img {
  height: 74px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 102px;
  gap: 1.75rem;
  transition: height 0.25s ease;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  height: 88px;
  width: auto;
  object-fit: contain;
  transition: height 0.25s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.865rem;
  font-weight: 600;
  color: var(--slate-700);
  transition: color 0.2s ease;
  position: relative;
  white-space: nowrap;
  padding: 0.35rem 0.15rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-blue);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand-green);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.nav-actions .btn {
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
}

@media (max-width: 1200px) {
  .nav-container {
    gap: 1.25rem;
  }
  .nav-links {
    gap: 0.85rem;
  }
  .nav-links a {
    font-size: 0.82rem;
  }
}

@media (max-width: 1040px) {
  .nav-links {
    gap: 0.65rem;
  }
  .nav-links a {
    font-size: 0.8rem;
  }
}

.phone-quick-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-blue-deep);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  background-color: var(--brand-blue-subtle);
  border: 1px solid rgba(16, 84, 184, 0.15);
}

.phone-quick-link:hover {
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--brand-blue-deep);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 2px solid var(--brand-blue);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  z-index: 999;
}

.mobile-nav-drawer.open {
  display: block;
}

.mobile-nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-drawer a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate-800);
  display: block;
  padding: 0.5rem 0;
}

/* --------------------------------------------------------------------------
   Subpage Dedicated Hero & Breadcrumb Banners
   -------------------------------------------------------------------------- */
.page-hero-section {
  padding: 4.5rem 0 3.75rem 0;
  background: linear-gradient(180deg, rgba(235, 243, 255, 0.8) 0%, rgba(248, 250, 252, 0.4) 100%);
  border-bottom: 1px solid rgba(16, 84, 184, 0.08);
  position: relative;
  overflow: hidden;
}

.page-hero-inner {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--slate-500);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.breadcrumb-nav a {
  color: var(--brand-blue);
  font-weight: 600;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.breadcrumb-nav a:hover {
  color: var(--brand-green-dark);
}

.breadcrumb-separator {
  color: var(--slate-400);
  font-size: 0.75rem;
}

.breadcrumb-current {
  color: var(--slate-700);
  font-weight: 600;
}

.page-hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--brand-blue-deep);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.page-hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--slate-600);
  margin: 0 auto 1.75rem auto;
  max-width: 740px;
}

.page-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}

.page-hero-grid .page-hero-inner {
  text-align: left;
  margin: 0;
  max-width: 100%;
}

.page-hero-grid .breadcrumb-nav {
  justify-content: flex-start;
}

.page-hero-grid .page-hero-subtitle {
  margin: 0 0 1.5rem 0;
}

.page-hero-grid .page-hero-actions {
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.page-hero-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(16, 84, 184, 0.12);
  font-size: 0.825rem;
  color: var(--slate-600);
  font-weight: 600;
}

.page-hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.page-hero-media-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(16, 84, 184, 0.15);
  background: var(--slate-900);
}

.page-hero-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.page-hero-media-wrapper:hover .page-hero-img {
  transform: scale(1.03);
}

.page-hero-float-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(7, 31, 74, 0.88);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-hero-float-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}

.page-hero-float-sub {
  font-size: 0.75rem;
  color: #a3e635;
  font-weight: 600;
}

@media (max-width: 992px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .page-hero-grid .page-hero-inner {
    text-align: center;
  }
  .page-hero-grid .breadcrumb-nav {
    justify-content: center;
  }
  .page-hero-grid .page-hero-subtitle {
    margin: 0 auto 1.5rem auto;
  }
  .page-hero-grid .page-hero-actions {
    justify-content: center;
  }
  .page-hero-trust-row {
    justify-content: center;
  }
  .page-hero-img {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .page-hero-section {
    padding: 2.5rem 0 2.75rem 0;
  }
  .page-hero-title {
    font-size: 1.95rem;
  }
  .page-hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  .page-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .page-hero-actions .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 4.5rem 0 5rem 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.12;
  font-weight: 800;
  color: var(--brand-blue-deep);
  margin-bottom: 1.25rem;
}

.hero-title .highlight-blue {
  color: var(--brand-blue);
}

.hero-title .highlight-green {
  color: var(--brand-green);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--slate-600);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-ticker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--slate-500);
  font-weight: 500;
  flex-wrap: wrap;
}

.hero-ticker-tag {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  color: var(--brand-blue-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Hero Interactive Dashboard Visual */
.hero-visual-card {
  background: var(--white);
  border: 1px solid rgba(16, 84, 184, 0.15);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero-visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--slate-100);
  margin-bottom: 1.25rem;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-green-dark);
  background-color: var(--brand-green-light);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand-green);
  animation: live-blink 1.5s infinite;
}

@keyframes live-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.funnel-flow-visual {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.flow-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  transition: all 0.2s ease;
}

.flow-step.active-step {
  background-color: var(--brand-blue-subtle);
  border-color: rgba(16, 84, 184, 0.25);
}

.flow-step-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.flow-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
}

.flow-icon-blue {
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
}

.flow-icon-green {
  background-color: var(--brand-green-light);
  color: var(--brand-green-dark);
}

.flow-icon-cyan {
  background-color: var(--brand-cyan-light);
  color: var(--brand-cyan);
}

.flow-text-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-blue-deep);
}

.flow-text-sub {
  font-size: 0.75rem;
  color: var(--slate-500);
}

.flow-metric-badge {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--brand-green-dark);
  background-color: var(--brand-green-light);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   Trust Bar / KPI Stat Snapshot
   -------------------------------------------------------------------------- */
.trust-bar-section {
  background-color: #f1f6fd;
  color: var(--slate-900);
  padding: 3.5rem 0;
  position: relative;
  border-top: 1px solid rgba(16, 84, 184, 0.08);
  border-bottom: 1px solid rgba(16, 84, 184, 0.08);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.kpi-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(16, 84, 184, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(16, 84, 184, 0.06);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.kpi-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-green);
  box-shadow: 0 12px 28px rgba(16, 84, 184, 0.12);
}

.kpi-number {
  font-size: 2.35rem;
  font-weight: 800;
  color: #5ab326;
  font-family: var(--font-heading);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.kpi-label {
  font-size: 0.95rem;
  color: #194382;
  font-weight: 700;
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   Builders & Channel Partners Showcase Section
   -------------------------------------------------------------------------- */
.builders-section {
  background-color: var(--white);
  padding: 4.5rem 0 5rem 0;
  position: relative;
}

.partner-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.25rem;
}

.partner-tab-btn {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1px solid var(--slate-300);
  background-color: var(--slate-50);
  color: var(--slate-700);
  cursor: pointer;
  transition: all 0.2s ease;
}

.partner-tab-btn:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.partner-tab-btn.active {
  background-color: var(--brand-blue);
  color: var(--white);
  border-color: var(--brand-blue);
  box-shadow: 0 4px 12px rgba(16, 84, 184, 0.2);
}

.partner-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.15rem;
}

@media (max-width: 1200px) {
  .partner-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .partner-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .partner-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.partner-brand-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.15rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.partner-brand-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-lg);
}

.partner-logo-box {
  width: 100%;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.6rem;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
  overflow: hidden;
}

.partner-logo-box img {
  max-height: 48px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.partner-brand-card:hover .partner-logo-box {
  border-color: rgba(16, 84, 184, 0.3);
  background: var(--brand-blue-subtle);
}

.partner-brand-card:hover .partner-logo-box img {
  transform: scale(1.08);
}

.partner-name-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-blue-deep);
  margin-bottom: 0.5rem;
  line-height: 1.25;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-badge-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  display: inline-block;
}

.partner-badge-builder {
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
  border: 1px solid rgba(16, 84, 184, 0.2);
}

.partner-badge-cp {
  background-color: var(--brand-green-light);
  color: var(--brand-green-dark);
  border: 1px solid rgba(125, 193, 66, 0.3);
}

.partner-disclaimer-box {
  margin-top: 2.5rem;
  padding: 1rem 1.5rem;
  background-color: var(--slate-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  text-align: center;
  font-size: 0.8rem;
  color: var(--slate-500);
  line-height: 1.5;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   Interactive Real Estate ROI & Lead Calculator
   -------------------------------------------------------------------------- */
.calculator-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 84, 184, 0.15);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 900px) {
  .calculator-grid {
    grid-template-columns: 1fr;
  }
  .calculator-inputs {
    border-right: none;
    border-bottom: 1px solid var(--slate-200);
  }
}

.calculator-inputs {
  padding: 2.5rem;
  background-color: var(--white);
  border-right: 1px solid var(--slate-200);
}

.calculator-outputs {
  padding: 2.5rem;
  background: linear-gradient(135deg, #071f4a 0%, #0d387b 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-group {
  margin-bottom: 1.75rem;
}

.calc-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-blue-deep);
  margin-bottom: 0.6rem;
}

.property-type-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.property-tab-btn {
  padding: 0.65rem 0.75rem;
  font-size: 0.825rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-300);
  background-color: var(--slate-50);
  color: var(--slate-700);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.property-tab-btn.active {
  background-color: var(--brand-blue);
  color: var(--white);
  border-color: var(--brand-blue);
  box-shadow: 0 4px 10px rgba(16, 84, 184, 0.25);
}

.slider-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slider-val-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.slider-val-display .current-budget {
  font-size: 1.35rem;
  color: var(--brand-blue);
  font-family: var(--font-heading);
}

.custom-range-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--slate-200);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  accent-color: var(--brand-blue);
  cursor: pointer;
}

.output-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.output-stat-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.output-stat-val {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--brand-green-accent);
  font-family: var(--font-heading);
}

.output-stat-label {
  font-size: 0.75rem;
  color: var(--slate-300);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   Services / Funnel Architecture
   -------------------------------------------------------------------------- */
.funnel-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1050px;
  margin: 0 auto;
}

.funnel-card {
  display: grid;
  grid-template-columns: 80px 1.4fr 1.2fr;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  position: relative;
}

.funnel-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}

.funnel-card-num {
  font-size: 2.25rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--brand-blue-light);
  line-height: 1;
}

.funnel-card-main h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  color: var(--brand-blue-deep);
}

.funnel-card-main p {
  font-size: 0.925rem;
  color: var(--slate-600);
}

.funnel-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.funnel-tech-tag {
  font-size: 0.725rem;
  font-weight: 600;
  background: var(--slate-100);
  color: var(--slate-700);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
}

.funnel-result-box {
  background-color: var(--brand-green-light);
  border-left: 4px solid var(--brand-green);
  padding: 0.85rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-green-dark);
}

/* --------------------------------------------------------------------------
   6. Ad Creatives & Visual Media Showcase
   -------------------------------------------------------------------------- */
.creatives-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.creatives-filter-btn {
  padding: 0.6rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid var(--slate-300);
  background-color: var(--white);
  color: var(--slate-700);
  cursor: pointer;
  transition: all 0.2s ease;
}

.creatives-filter-btn:hover {
  background-color: var(--brand-blue-subtle);
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.creatives-filter-btn.active {
  background-color: var(--brand-blue);
  color: var(--white);
  border-color: var(--brand-blue);
  box-shadow: 0 4px 14px rgba(16, 84, 184, 0.3);
}

.creatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.creative-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.creative-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(16, 84, 184, 0.3);
}

.creative-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--slate-900);
}

.creative-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
}

.creative-card:hover .creative-img-wrapper img {
  transform: scale(1.06);
}

.creative-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 31, 74, 0.45);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 3;
}

.creative-card:hover .creative-hover-overlay {
  opacity: 1;
}

.creative-preview-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  color: var(--brand-blue-deep);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transform: translateY(8px);
  transition: transform 0.25s ease;
}

.creative-card:hover .creative-preview-pill {
  transform: translateY(0);
}

.creative-card-top-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

.creative-format-pill {
  background: rgba(7, 31, 74, 0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.creative-metric-pill {
  background: rgba(108, 189, 55, 0.95);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.creative-card-meta {
  padding: 1.15rem;
  background: var(--white);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
}

.creative-meta-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.creative-builder-logo-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--slate-200);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.creative-builder-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.creative-title-block {
  flex: 1;
  min-width: 0;
}

.creative-project-name {
  font-size: 0.975rem;
  font-weight: 800;
  color: var(--brand-blue-deep);
  margin: 0;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.creative-builder-name {
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--brand-green-dark);
  margin-top: 1px;
}

.creative-location-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.775rem;
  color: var(--slate-500);
  font-weight: 500;
}

.creative-highlight-pill {
  background-color: #f1f8ee;
  border: 1px solid rgba(108, 189, 55, 0.3);
  color: #235c0d;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  line-height: 1.35;
}

.creative-category-badge {
  font-size: 0.68rem;
  font-weight: 700;
  background: var(--brand-green-light);
  color: var(--brand-green-dark);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  border: 1px solid rgba(108, 189, 55, 0.3);
}

.creatives-cta-banner {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, #071f4a 0%, #0d387b 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.creatives-cta-text h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.creatives-cta-text p {
  color: var(--slate-300);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Lightbox Modal */
.creative-card {
  cursor: pointer;
}

.creative-lightbox-modal {
  border: none;
  border-radius: var(--radius-xl);
  padding: 0;
  max-width: 940px;
  width: 90%;
  background: #071f4a;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  margin: auto;
}

.creative-lightbox-modal::backdrop {
  background: rgba(7, 31, 74, 0.85);
  backdrop-filter: blur(8px);
}

.lightbox-dialog-content {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  position: relative;
}

.lightbox-media-box {
  background: #030d1f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 420px;
}

.lightbox-media-box img {
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.lightbox-details-box {
  padding: 2.5rem 2rem;
  background: linear-gradient(180deg, #071f4a 0%, #0a2b66 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lightbox-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.lightbox-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  line-height: 1;
}

.lightbox-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

@media (max-width: 840px) {
  .creatives-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .lightbox-dialog-content {
    grid-template-columns: 1fr;
  }
  .lightbox-media-box {
    min-height: 280px;
    padding: 1rem;
  }
}

/* --------------------------------------------------------------------------
   Process / 5-Step Launch Protocol
   -------------------------------------------------------------------------- */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
}

.process-step-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  position: relative;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.process-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-green);
  box-shadow: var(--shadow-lg);
}

.step-num-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(108, 189, 55, 0.3);
}

.process-step-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.process-step-card p {
  font-size: 0.85rem;
  color: var(--slate-600);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   Portfolio / Case Studies (Filterable Results Cards)
   -------------------------------------------------------------------------- */
.case-study-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid var(--slate-300);
  background-color: var(--white);
  color: var(--slate-700);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.filter-btn.active {
  background-color: var(--brand-blue);
  color: var(--white);
  border-color: var(--brand-blue);
  box-shadow: 0 4px 12px rgba(16, 84, 184, 0.25);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 1024px) {
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}

.case-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 20px rgba(16, 84, 184, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 84, 184, 0.35);
  box-shadow: 0 16px 36px rgba(16, 84, 184, 0.12);
}

.case-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.case-card-logo-box {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.case-card-logo-box img {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.case-card-title-group {
  flex-grow: 1;
}

.case-project-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #10386e;
  line-height: 1.25;
  margin-bottom: 0.2rem;
  font-family: var(--font-heading);
}

.case-builder-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #55b326;
  margin-bottom: 0.15rem;
}

.case-location-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b;
}

.case-category-pill {
  font-size: 0.725rem;
  font-weight: 700;
  color: #1550a2;
  background: #eaf1fb;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.case-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.case-strategy-pill {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e53a2;
  background: #eef4fc;
  border: 1px solid #d8e6f8;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
}

.case-metrics-container {
  background: #f1f8ee;
  border: 1px solid #d8edd4;
  border-radius: 16px;
  padding: 1.15rem 0.85rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 0.35rem;
  margin-bottom: 1.15rem;
}

.case-metric-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.case-metric-cell .metric-title {
  font-size: 0.65rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.case-metric-cell .metric-number {
  font-size: 1.3rem;
  font-weight: 800;
  color: #48a31e;
  line-height: 1;
  font-family: var(--font-heading);
}

.case-duration-text {
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 1.15rem;
  font-weight: 500;
}

.case-duration-text strong {
  color: #0f172a;
  font-weight: 800;
}

.case-bottom-summary {
  font-size: 0.85rem;
  color: #64748b;
  font-style: italic;
  line-height: 1.45;
  border-top: 1px solid #f1f5f9;
  padding-top: 0.85rem;
  margin: 0;
}

.case-footer-note {
  font-size: 0.75rem;
  color: var(--slate-400);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--slate-100);
  padding-top: 0.75rem;
}

/* --------------------------------------------------------------------------
   Why Real Estate Chooses Us & Comparison Matrix
   -------------------------------------------------------------------------- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.diff-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.25s ease;
}

.diff-card:hover {
  border-color: var(--brand-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.diff-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.diff-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.diff-card p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.5;
}

/* Comparison Table */
.comparison-wrapper {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comp-table th {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  background-color: var(--slate-100);
  color: var(--slate-700);
  border-bottom: 2px solid var(--slate-200);
}

.comp-table th.brand-col-header {
  background-color: var(--brand-blue);
  color: var(--white);
  text-align: center;
}

.comp-table td {
  padding: 1.1rem 1.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--slate-200);
  color: var(--slate-700);
}

.comp-table td.brand-col {
  background-color: var(--brand-blue-subtle);
  font-weight: 700;
  color: var(--brand-blue-dark);
  text-align: center;
}

.check-icon-green {
  color: var(--brand-green);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cross-icon-red {
  color: #ef4444;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testi-card {
  background: var(--white);
  border: 1px solid rgba(16, 84, 184, 0.2);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: var(--brand-green);
  font-family: Georgia, serif;
  opacity: 0.7;
}

.testi-quote {
  font-size: 0.95rem;
  color: var(--slate-700);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--slate-100);
  padding-top: 1rem;
}

.testi-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.testi-author-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.testi-author-info p {
  font-size: 0.775rem;
  color: var(--slate-500);
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.open {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-blue-deep);
  cursor: pointer;
}

.faq-chevron {
  transition: transform 0.25s ease;
  color: var(--brand-blue);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--slate-600);
  font-size: 0.925rem;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

/* --------------------------------------------------------------------------
   Lead Capture & Audit Section
   -------------------------------------------------------------------------- */
.audit-section {
  background: var(--gradient-dark-section);
  color: var(--white);
  position: relative;
}

.audit-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.audit-info h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.audit-info p {
  font-size: 1.05rem;
  color: var(--slate-200);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.audit-perks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audit-perk-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.perk-check-icon {
  color: var(--brand-green-accent);
  background: rgba(125, 193, 66, 0.2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  color: var(--slate-800);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lead-form-card h3 {
  font-size: 1.45rem;
  color: var(--brand-blue-deep);
  margin-bottom: 0.35rem;
}

.lead-form-card .form-subtitle {
  font-size: 0.85rem;
  color: var(--slate-500);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--slate-700);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--slate-800);
  background-color: var(--slate-50);
  transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(16, 84, 184, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.775rem;
  color: var(--slate-500);
  margin-top: 0.85rem;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Modal Lead Capture Dialog (Native <dialog>)
   -------------------------------------------------------------------------- */
.lead-modal {
  margin: auto;
  border: none;
  border-radius: var(--radius-xl);
  padding: 0;
  max-width: 580px;
  width: 90%;
  background: var(--white);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}

.lead-modal::backdrop {
  background: rgba(7, 31, 74, 0.75);
  backdrop-filter: blur(6px);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem 1rem 1.75rem;
  border-bottom: 1px solid var(--slate-100);
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--slate-400);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  border-radius: var(--radius-sm);
}

.modal-close-btn:hover {
  color: var(--slate-700);
  background: var(--slate-100);
}

.modal-body {
  padding: 1.5rem 1.75rem 1.75rem 1.75rem;
}

/* Form alert response */
.form-alert {
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  display: none;
  font-size: 0.9rem;
}
.form-alert.success {
  display: block;
  background-color: var(--brand-green-light);
  color: var(--brand-green-dark);
  border: 1px solid rgba(108, 189, 55, 0.3);
}
.form-alert.error {
  display: block;
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* --------------------------------------------------------------------------
   Floating Conversion Widgets
   -------------------------------------------------------------------------- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  font-size: 1.85rem;
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.65);
  color: var(--white);
}

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  padding: 0.75rem 1rem;
  z-index: 850;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}

.mobile-sticky-bar-inner {
  display: flex;
  gap: 0.75rem;
}

.mobile-sticky-bar .btn {
  flex: 1;
  padding: 0.75rem 0.5rem;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   About Us & Contact Us Page Components
   -------------------------------------------------------------------------- */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.about-story-card {
  background: var(--white);
  border: 1px solid rgba(16, 84, 184, 0.15);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-story-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--brand-green-dark);
  background: var(--brand-green-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.about-stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--slate-100);
}

.about-stat-box {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 1.15rem 1rem;
  text-align: center;
}

.about-stat-number {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--brand-blue-deep);
  font-family: var(--font-heading);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.about-stat-label {
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--slate-600);
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.35rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-lg);
}

.pillar-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.pillar-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  color: var(--brand-blue-deep);
}

.pillar-card p {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.5;
}

.about-corridors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.corridor-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.corridor-card:hover {
  border-color: var(--brand-green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.corridor-card h3 {
  font-size: 1.15rem;
  color: var(--brand-blue-deep);
  margin-bottom: 0.5rem;
}

.corridor-badge {
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--brand-green-dark);
  background: var(--brand-green-light);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 0.75rem;
}

/* Mission & Vision Section Styles */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.mission-vision-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: hidden;
}

.mission-vision-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.mission-card {
  border-top: 4px solid var(--brand-green);
}

.vision-card {
  border-top: 4px solid var(--brand-blue);
}

.mission-vision-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.mission-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--brand-green-light);
  color: var(--brand-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.vision-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.mission-vision-header h3 {
  font-size: 1.6rem;
  color: var(--brand-blue-deep);
  margin: 0;
  font-family: var(--font-heading);
}

.mission-tagline {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-800);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--slate-100);
}

.mission-points-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mission-point-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--slate-600);
  line-height: 1.55;
}

.mission-point-item strong {
  color: var(--brand-blue-deep);
}

.mission-point-bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-green-light);
  color: var(--brand-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.vision-point-bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* Founder Section Styles */
.founder-card-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(16, 84, 184, 0.15);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
}

.founder-profile-col {
  background: linear-gradient(135deg, #071f4a 0%, #0d387b 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(163, 230, 53, 0.45);
}

.founder-photo-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}

.founder-photo-wrapper:hover .founder-photo-img {
  transform: scale(1.04);
}

.founder-photo-wrapper .founder-status-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(7, 31, 74, 0.9);
  backdrop-filter: blur(8px);
  margin-top: 0;
  white-space: nowrap;
}

.founder-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.725rem;
  font-weight: 700;
  color: #a3e635;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-top: 0.75rem;
  border: 1px solid rgba(163, 230, 53, 0.3);
}

.status-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #a3e635;
  box-shadow: 0 0 8px #a3e635;
}

.founder-name {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}

.founder-title {
  font-size: 0.9rem;
  color: var(--slate-300);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.founder-experience-pill {
  display: inline-block;
  font-size: 0.775rem;
  font-weight: 700;
  color: #071f4a;
  background-color: #a3e635;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.founder-highlights-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.25rem;
}

.founder-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.825rem;
  color: var(--slate-200);
  line-height: 1.4;
}

.highlight-check {
  color: #a3e635;
  font-weight: 800;
}

.founder-quote-box {
  background: #f1f8ee;
  border-left: 4px solid var(--brand-green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  position: relative;
  margin-top: 1.5rem;
}

.founder-quote-icon {
  position: absolute;
  top: 6px;
  left: 12px;
  font-size: 2.5rem;
  color: rgba(108, 189, 55, 0.25);
  font-family: serif;
  line-height: 1;
}

.founder-quote-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1b4b0e;
  font-style: italic;
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.founder-quote-author {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--brand-blue-deep);
}

@media (max-width: 1024px) {
  .founder-card-layout {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 2rem;
  }
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-lg);
}

.contact-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.contact-info-card h3 {
  font-size: 1.2rem;
  color: var(--brand-blue-deep);
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.contact-link-highlight {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link-highlight:hover {
  color: var(--brand-green-dark);
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }
  .about-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-corridors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }
  .about-corridors-grid {
    grid-template-columns: 1fr;
  }
}

.contact-photo-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(16, 84, 184, 0.15);
  margin-top: 2rem;
  position: relative;
  background-color: var(--slate-900);
}

.contact-photo-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.contact-photo-card:hover .contact-photo-img {
  transform: scale(1.03);
}

.contact-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 31, 74, 0.95) 100%);
  color: var(--white);
  padding: 1.25rem 1.25rem 0.85rem 1.25rem;
  font-size: 0.825rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.visual-feature-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.25s ease;
}

.visual-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-xl);
}

.visual-feature-img-box {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background-color: var(--slate-900);
}

.visual-feature-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.visual-feature-card:hover .visual-feature-img-box img {
  transform: scale(1.05);
}

.visual-feature-body {
  padding: 1.25rem 1.35rem;
}

.visual-feature-badge {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--brand-green-dark);
  background: var(--brand-green-light);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 0.65rem;
}

.visual-feature-body h3 {
  font-size: 1.05rem;
  color: var(--brand-blue-deep);
  margin-bottom: 0.4rem;
  font-family: var(--font-heading);
  line-height: 1.3;
}

.visual-feature-body p {
  font-size: 0.825rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  .contact-visual-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .visual-feature-img-box {
    height: 220px;
  }
}
    height: 200px;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--slate-900);
  color: var(--slate-300);
  padding: 4.5rem 0 2rem 0;
  border-top: 3px solid var(--brand-green);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand-logo {
  height: 115px;
  max-width: 320px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.12);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--slate-400);
  margin-top: 1rem;
  line-height: 1.5;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--brand-green);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--slate-400);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--brand-green-accent);
  padding-left: 4px;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--slate-300);
}

.contact-info-item a {
  color: var(--slate-300);
}
.contact-info-item a:hover {
  color: var(--brand-green-accent);
}

.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.825rem;
  color: var(--slate-500);
  flex-wrap: wrap;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   Responsive Media Queries & Full Mobile Optimization
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .kpi-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .case-studies-grid,
  .diff-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .audit-grid {
    grid-template-columns: 1fr;
  }

  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .calculator-inputs {
    border-right: none;
    border-bottom: 1px solid var(--slate-200);
  }
}

@media (max-width: 768px) {
  /* Global Layout & Viewport Safety */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-text-size-adjust: 100%;
  }

  .container {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-tight {
    padding: 2.25rem 0;
  }

  .section-header {
    margin-bottom: 2.25rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .section-header .section-subtitle {
    font-size: 0.95rem;
    margin-top: 0.75rem;
  }

  /* Header & Navigation */
  .nav-links,
  .phone-quick-link {
    display: none;
  }

  .site-header {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }

  .site-header .nav-container {
    height: 68px;
    gap: 0.75rem;
  }

  .site-header.scrolled .nav-container {
    height: 60px;
  }

  .brand-logo img {
    height: 48px;
    max-width: 155px;
  }

  .site-header.scrolled .brand-logo img {
    height: 42px;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .nav-actions .btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background-color: var(--brand-blue-subtle);
    border: 1px solid rgba(16, 84, 184, 0.15);
    color: var(--brand-blue-deep);
    padding: 0;
  }

  .mobile-nav-drawer {
    top: 68px;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    padding: 1.25rem 1.5rem 2rem 1.5rem;
    border-bottom: 3px solid var(--brand-green);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

  .mobile-nav-drawer ul {
    gap: 0.25rem;
  }

  .mobile-nav-drawer a {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-blue-deep);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--slate-100);
  }

  .mobile-nav-drawer a:hover {
    color: var(--brand-green-dark);
  }

  /* Hero Section */
  .hero-section {
    padding: 2.25rem 0 3.25rem 0;
  }

  .hero-title {
    font-size: 1.95rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-ticker {
    font-size: 0.775rem;
    gap: 0.5rem;
  }

  .hero-ticker-tag {
    font-size: 0.725rem;
    padding: 0.2rem 0.5rem;
  }

  .hero-visual-card {
    padding: 1.25rem 1rem;
  }

  .flow-step {
    padding: 0.65rem 0.75rem;
  }

  .flow-text-title {
    font-size: 0.8rem;
  }

  .flow-metric-badge {
    font-size: 0.75rem;
    padding: 2px 6px;
  }

  /* KPI Grid */
  .trust-bar-section {
    padding: 2.25rem 0;
  }

  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .kpi-card {
    padding: 1.25rem 0.65rem;
    border-radius: 12px;
  }

  .kpi-card:last-child {
    grid-column: span 2;
  }

  .kpi-number {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
  }

  .kpi-label {
    font-size: 0.775rem;
  }

  /* Developer & Partner Grid */
  .builders-section {
    padding: 3rem 0;
  }

  .partner-filter-tabs {
    gap: 0.4rem;
    margin-bottom: 1.5rem;
  }

  .partner-tab-btn {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }

  .partner-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .partner-brand-card {
    padding: 0.85rem 0.5rem;
    border-radius: 10px;
  }

  .partner-logo-box {
    height: 48px;
    width: 100%;
  }

  .partner-logo-box img {
    max-height: 38px;
  }

  .partner-name-text {
    font-size: 0.8rem;
    margin: 0.35rem 0 0.25rem 0;
  }

  .partner-badge-tag {
    font-size: 0.65rem;
    padding: 1px 6px;
  }

  /* Funnel Architecture */
  .funnel-card {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1.25rem 1rem;
  }

  .funnel-header-col {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .funnel-card-num {
    font-size: 1.5rem;
    min-width: 36px;
  }

  /* Ad Creatives Section */
  .creatives-filters {
    gap: 0.4rem;
    margin-bottom: 1.5rem;
  }

  .creatives-filter-btn {
    font-size: 0.75rem;
    padding: 0.45rem 0.75rem;
  }

  .creatives-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .creative-card-meta {
    padding: 0.85rem 1rem;
  }

  .creative-builder-logo-box {
    width: 38px;
    height: 38px;
  }

  .creative-project-name {
    font-size: 0.925rem;
  }

  .creative-highlight-pill {
    font-size: 0.725rem;
    padding: 4px 6px;
  }

  .creatives-cta-banner {
    margin-top: 2.25rem;
    padding: 1.75rem 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .creatives-cta-banner .btn {
    width: 100%;
  }

  /* Lightbox Modal */
  .creative-lightbox-modal {
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lightbox-dialog-content {
    grid-template-columns: 1fr;
  }

  .lightbox-media-box {
    min-height: 240px;
    padding: 1rem;
  }

  .lightbox-details-box {
    padding: 1.5rem 1.25rem;
  }

  /* ROI Calculator */
  .calculator-inputs,
  .calculator-outputs {
    padding: 1.5rem 1.15rem;
  }

  .property-type-tabs {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .property-tab-btn {
    padding: 0.55rem 0.65rem;
    font-size: 0.775rem;
  }

  .calc-output-main-number {
    font-size: 2.35rem;
  }

  /* Process Timeline */
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-step-card {
    padding: 1.25rem 1rem;
  }

  /* Case Studies */
  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .case-card {
    padding: 1.35rem 1.15rem;
    border-radius: 14px;
  }

  .case-card-header {
    gap: 0.75rem;
  }

  .case-card-logo-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .case-project-name {
    font-size: 1.1rem;
  }

  .case-metrics-container {
    padding: 0.75rem 0.4rem;
    gap: 0.25rem;
    border-radius: 12px;
  }

  .case-metric-cell .metric-title {
    font-size: 0.6rem;
  }

  .case-metric-cell .metric-number {
    font-size: 1.05rem;
  }

  /* Comparison Table */
  .diff-grid {
    grid-template-columns: 1fr;
  }

  .comparison-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
  }

  .comp-table {
    min-width: 520px;
  }

  .comp-table th,
  .comp-table td {
    padding: 0.75rem 0.85rem;
    font-size: 0.8rem;
  }

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

  .testi-card {
    padding: 1.5rem 1.15rem;
  }

  /* Lead Capture Forms */
  .lead-form-card {
    padding: 1.5rem 1.15rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px; /* Prevents auto-zoom in iOS Safari */
    padding: 0.75rem 0.85rem;
  }

  /* Modal Lead Capture */
  .lead-modal {
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-header {
    padding: 1.15rem 1.25rem 0.75rem 1.25rem;
  }

  .modal-body {
    padding: 1rem 1.25rem 1.5rem 1.25rem;
  }

  /* Floating Widgets & Mobile Sticky Bar */
  .floating-whatsapp-btn {
    bottom: 78px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.65rem;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
  }

  .mobile-sticky-bar {
    display: block;
    padding: 0.65rem 0.85rem;
  }

  .mobile-sticky-bar .btn {
    padding: 0.7rem 0.5rem;
    font-size: 0.825rem;
  }

  body {
    padding-bottom: 74px;
  }

  /* Footer */
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-brand-logo {
    height: 70px;
    max-width: 220px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

@media (min-width: 540px) and (max-width: 768px) {
  .creatives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-actions .btn {
    display: inline-flex;
    padding: 0.45rem 0.85rem;
    font-size: 0.775rem;
  }
}


/* --------------------------------------------------------------------------
   Full Funnel Strategy Component (Brand Blue & Green Theme)
   -------------------------------------------------------------------------- */
.full-funnel-strategy-section {
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
  color: var(--slate-800);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(16, 84, 184, 0.1);
  border-bottom: 1px solid rgba(16, 84, 184, 0.1);
}

.funnel-strategy-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3rem auto;
}

.funnel-strategy-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand-blue-deep);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.gradient-text-funnel {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.funnel-strategy-subtitle {
  font-size: 1.1rem;
  color: var(--slate-600);
  line-height: 1.6;
}

.funnel-stage-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.funnel-stage-tab {
  background: var(--white);
  border: 1px solid var(--slate-300);
  color: var(--slate-700);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.925rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-sm);
}

.funnel-stage-tab:hover {
  background: var(--brand-blue-subtle);
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.funnel-stage-tab.active {
  background: linear-gradient(135deg, var(--brand-blue-deep) 0%, var(--brand-blue) 100%);
  color: var(--white);
  border-color: var(--brand-blue);
  box-shadow: 0 6px 18px rgba(16, 84, 184, 0.25);
}

.funnel-stage-tab .tab-badge-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.funnel-stage-tab.active .tab-badge-num {
  background: var(--brand-green);
  color: var(--white);
}

.funnel-stage-card-wrapper {
  position: relative;
}

.funnel-stage-card {
  display: none;
  background: var(--white);
  border: 1px solid rgba(16, 84, 184, 0.15);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  animation: fadeInFunnel 0.35s ease forwards;
}

.funnel-stage-card.active {
  display: block;
}

@keyframes fadeInFunnel {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.funnel-stage-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.775rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--brand-green-light);
  color: var(--brand-green-dark);
  border: 1px solid rgba(108, 189, 55, 0.4);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
}

.funnel-stage-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.funnel-stage-left {
  display: flex;
  gap: 1.5rem;
}

.funnel-step-indicator-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.funnel-step-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(108, 189, 55, 0.35);
}

.funnel-step-line {
  width: 2px;
  flex-grow: 1;
  background: linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-green) 100%);
  opacity: 0.3;
  margin-top: 10px;
}

.funnel-stage-info h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--brand-blue-deep);
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.funnel-stage-info p.stage-intro {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.funnel-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.funnel-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--slate-700);
  font-weight: 500;
}

.funnel-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-green-light);
  color: var(--brand-green-dark);
  border: 1px solid rgba(108, 189, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Stage Visual Mockups */
.funnel-stage-visual-box {
  background: var(--brand-blue-subtle);
  border: 1px solid rgba(16, 84, 184, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}

.channel-sphere-matrix {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  width: 100%;
  padding: 0.5rem;
}

.channel-sphere-item {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(16, 84, 184, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
  animation: floatSphere 3.6s ease-in-out infinite alternate;
}

/* Staggered animation delays for floating wave effect */
.channel-sphere-item:nth-child(1) { animation-delay: 0s; }
.channel-sphere-item:nth-child(2) { animation-delay: 0.3s; }
.channel-sphere-item:nth-child(3) { animation-delay: 0.6s; }
.channel-sphere-item:nth-child(4) { animation-delay: 0.9s; }
.channel-sphere-item:nth-child(5) { animation-delay: 1.2s; }
.channel-sphere-item:nth-child(6) { animation-delay: 0.4s; }
.channel-sphere-item:nth-child(7) { animation-delay: 0.7s; }
.channel-sphere-item:nth-child(8) { animation-delay: 1.0s; }
.channel-sphere-item:nth-child(9) { animation-delay: 1.3s; }
.channel-sphere-item:nth-child(10) { animation-delay: 0.2s; }
.channel-sphere-item:nth-child(11) { animation-delay: 0.8s; }
.channel-sphere-item:nth-child(12) { animation-delay: 1.1s; }
.channel-sphere-item:nth-child(13) { animation-delay: 0.5s; }
.channel-sphere-item:nth-child(14) { animation-delay: 1.4s; }
.channel-sphere-item:nth-child(15) { animation-delay: 0.1s; }

@keyframes floatSphere {
  0% {
    transform: translateY(0px) scale(1);
    box-shadow: 0 4px 10px rgba(16, 84, 184, 0.08);
    border-color: var(--slate-200);
  }
  50% {
    transform: translateY(-8px) scale(1.06);
    box-shadow: 0 10px 22px rgba(16, 84, 184, 0.18);
    border-color: rgba(16, 84, 184, 0.35);
  }
  100% {
    transform: translateY(4px) scale(0.97);
    box-shadow: 0 2px 6px rgba(16, 84, 184, 0.05);
    border-color: rgba(108, 189, 55, 0.3);
  }
}

.channel-sphere-item:hover {
  transform: translateY(-12px) scale(1.25) !important;
  border-color: var(--brand-green) !important;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(108, 189, 55, 0.35) !important;
  z-index: 10;
}

.channel-sphere-item.sphere-pulse::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 8px var(--brand-green);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* Animated Story / Reel Mockup Showcase */
.reels-grid-mockup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  align-items: center;
  perspective: 1000px;
}

.reel-item-mockup {
  aspect-ratio: 9/16;
  border-radius: 16px;
  background: var(--slate-900);
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 24px rgba(16, 84, 184, 0.15);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  animation: floatReel 4s ease-in-out infinite alternate;
}

.reel-item-1 {
  animation-delay: 0s;
  transform: translateY(4px);
}

.reel-item-hero {
  animation: floatReelHero 4s ease-in-out infinite alternate 0.6s !important;
  border-color: var(--brand-blue) !important;
  box-shadow: 0 16px 36px rgba(16, 84, 184, 0.25) !important;
  z-index: 2;
}

.reel-item-3 {
  animation-delay: 1.2s;
  transform: translateY(6px);
}

@keyframes floatReel {
  0% {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(2px);
  }
}

@keyframes floatReelHero {
  0% {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 14px 32px rgba(16, 84, 184, 0.22);
  }
  50% {
    transform: translateY(-14px) scale(1.08);
    box-shadow: 0 20px 42px rgba(108, 189, 55, 0.3);
    border-color: var(--brand-green);
  }
  100% {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 28px rgba(16, 84, 184, 0.2);
  }
}

.reel-item-mockup:hover {
  transform: translateY(-16px) scale(1.12) !important;
  border-color: var(--brand-green) !important;
  box-shadow: 0 20px 45px rgba(108, 189, 55, 0.35) !important;
  z-index: 10;
}

.reel-item-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.reel-item-mockup:hover img {
  transform: scale(1.08);
}

/* Light shimmer sweep across reel cards */
.reel-item-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  animation: reelShimmer 5s infinite;
  z-index: 3;
  pointer-events: none;
}

@keyframes reelShimmer {
  0%, 75% { left: -150%; }
  100% { left: 150%; }
}

/* Play Button Overlay */
.reel-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
  transition: background 0.3s ease;
}

.reel-play-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  padding-left: 2px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-play-btn {
  width: 40px;
  height: 40px;
  background: var(--brand-green);
  color: var(--white);
  font-size: 0.95rem;
  box-shadow: 0 0 16px rgba(108, 189, 55, 0.6);
}

.reel-item-mockup:hover .reel-play-btn {
  transform: scale(1.2);
  background: var(--brand-green);
  color: var(--white);
}

/* Live Tour Pill */
.reel-live-pill {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(220, 38, 38, 0.9);
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 4;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  animation: livePulse 1.2s infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.3); }
}

/* Tag Badges & Captions */
.reel-tag-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(16, 84, 184, 0.9);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  z-index: 4;
}

.reel-tag-badge.green-badge {
  background: rgba(22, 101, 52, 0.9);
  color: #dcfce7;
  border: 1px solid rgba(134, 239, 172, 0.4);
}

.reel-footer-caption {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  font-size: 0.675rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 4;
}

.google-search-simulator {
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(16, 84, 184, 0.12);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.google-search-bar {
  background: var(--white);
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.google-search-bar:hover,
.google-search-simulator:hover .google-search-bar {
  border-color: var(--brand-blue);
  box-shadow: 0 4px 16px rgba(16, 84, 184, 0.2);
}

.google-search-input-area {
  flex-grow: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-800);
  min-height: 24px;
}

.typing-text {
  color: var(--brand-blue-deep);
  white-space: nowrap;
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 18px;
  background-color: var(--brand-blue);
  margin-left: 2px;
  animation: blinkCursor 0.75s infinite;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.google-search-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.google-search-suggestions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border-top: 1px solid var(--slate-100);
  padding-top: 0.75rem;
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: var(--slate-600);
  font-weight: 500;
  background: var(--slate-50);
  transition: all 0.2s ease;
}

.suggestion-item.active-suggestion {
  background: var(--brand-blue-subtle);
  color: var(--brand-blue-deep);
  font-weight: 700;
}

.suggestion-badge {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand-green-dark);
  background: var(--brand-green-light);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.search-intent-box {
  width: 100%;
  background: var(--white);
  color: var(--slate-800);
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-full);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 0.95rem;
}

.search-keyword-tag {
  color: var(--brand-blue);
  font-weight: 700;
}

/* Bottom Visual Stills / Campaign Gallery */
.funnel-gallery-section {
  border-top: 1px solid var(--slate-100);
  padding-top: 1.75rem;
  margin-top: 1rem;
}

.funnel-gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.funnel-gallery-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-blue-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.funnel-gallery-arrows {
  display: flex;
  gap: 0.5rem;
}

.funnel-arrow-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 700;
}

.funnel-arrow-btn:hover {
  background: var(--brand-blue);
  color: var(--white);
  border-color: var(--brand-blue);
}

.funnel-gallery-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.funnel-gallery-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.funnel-gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--brand-green);
  box-shadow: var(--shadow-md);
}

.funnel-gallery-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.funnel-gallery-meta {
  padding: 0.9rem 1rem;
}

.funnel-gallery-meta h4 {
  font-size: 0.875rem;
  color: var(--brand-blue-deep);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.funnel-gallery-meta span {
  font-size: 0.75rem;
  color: var(--brand-green-dark);
  font-weight: 700;
}

@media (max-width: 992px) {
  .funnel-strategy-title {
    font-size: 2.25rem;
  }
  .funnel-stage-card {
    padding: 2rem 1.5rem;
  }
  .funnel-stage-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .funnel-gallery-cards {
    grid-template-columns: 1fr;
  }
}


/* --------------------------------------------------------------------------
   Enhanced High-Trust Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #071f4a;
  color: var(--slate-300);
  padding: 5rem 0 2rem 0;
  border-top: 4px solid var(--brand-green);
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 2.75rem;
  margin-bottom: 3.5rem;
}

.footer-brand-logo-card {
  background: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  display: inline-block;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-founder-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.85rem;
  font-size: 0.8rem;
  color: #e2e8f0;
  margin-bottom: 1.25rem;
}

.founder-badge-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: #94a3b8;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

.contact-icon {
  flex-shrink: 0;
}

.footer-highlight-link {
  color: var(--brand-green-accent) !important;
  font-weight: 700;
}

.footer-highlight-link:hover {
  text-decoration: underline;
}

.footer-col h4.footer-heading {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.footer-col h4.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2.5px;
  background-color: var(--brand-green);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--brand-green-accent);
  transform: translateX(4px);
}

.footer-cta-desc {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-trust-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-trust-item {
  font-size: 0.775rem;
  color: #a3e635;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.825rem;
  color: #94a3b8;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--brand-green-accent);
}

@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.85rem;
  }
}


/* --------------------------------------------------------------------------
   9 Core Real Estate Services Grid CSS
   -------------------------------------------------------------------------- */
.services-core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-core-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-core-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-core-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 84, 184, 0.3);
  box-shadow: 0 16px 36px -10px rgba(16, 84, 184, 0.15);
}

.service-core-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-core-card:hover .service-icon-box {
  transform: scale(1.1) rotate(4deg);
}

.service-icon-box.blue-icon {
  background: var(--brand-blue-light);
  border: 1px solid rgba(16, 84, 184, 0.15);
}

.service-icon-box.green-icon {
  background: var(--brand-green-light);
  border: 1px solid rgba(108, 189, 55, 0.2);
}

.service-emoji {
  font-size: 1.85rem;
}

.service-title {
  font-size: 1.25rem;
  color: var(--brand-blue-deep);
  font-family: var(--font-heading);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--slate-700);
  font-weight: 600;
}

.service-features-list li span {
  color: var(--brand-green);
  font-weight: 800;
}

@media (max-width: 1024px) {
  .services-core-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 680px) {
  .services-core-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}


/* ==========================================================================
   9 Core Real Estate Services Grid CSS
   ========================================================================== */
.core-services-section {
  position: relative;
  overflow: hidden;
}

.services-core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-core-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 20px -2px rgba(16, 84, 184, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-core-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1054B8, #6CBD37);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-core-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 84, 184, 0.3);
  box-shadow: 0 20px 35px -10px rgba(16, 84, 184, 0.15);
}

.service-core-card:hover::before {
  opacity: 1;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.service-core-card:hover .service-icon-box {
  transform: scale(1.12) rotate(4deg);
}

.service-icon-box.blue-icon {
  background: rgba(16, 84, 184, 0.08);
  border: 1px solid rgba(16, 84, 184, 0.18);
}

.service-icon-box.green-icon {
  background: rgba(108, 189, 55, 0.1);
  border: 1px solid rgba(108, 189, 55, 0.25);
}

.service-emoji {
  font-size: 1.85rem;
  line-height: 1;
}

.service-category-tag {
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1054B8;
  background: rgba(16, 84, 184, 0.08);
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(16, 84, 184, 0.15);
}

.service-category-tag.green-tag {
  color: #4d8f22;
  background: rgba(108, 189, 55, 0.12);
  border-color: rgba(108, 189, 55, 0.25);
}

.service-content-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.3rem;
  color: #071f4a;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.35rem;
  flex-grow: 1;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-top: 1.15rem;
  border-top: 1px solid #f1f5f9;
  margin-bottom: 1.35rem;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.825rem;
  color: #334155;
  font-weight: 600;
}

.check-bullet {
  color: #6CBD37;
  font-weight: 800;
  font-size: 0.95rem;
  background: rgba(108, 189, 55, 0.12);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card-footer {
  padding-top: 1rem;
  border-top: 1px dashed #e2e8f0;
}

.service-cta-link {
  background: none;
  border: none;
  color: #1054B8;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s ease;
}

.service-cta-link:hover {
  color: #6CBD37;
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .services-core-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 680px) {
  .services-core-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}


/* ==========================================================================
   Blog & SEO Articles Styling
   ========================================================================== */

/* Blog Hub (blog.html) */
.blog-hero-section {
  padding: 5rem 0 3rem 0;
  background: linear-gradient(180deg, #071f4a 0%, #0a2a66 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
}

.blog-hero-title {
  font-size: 2.75rem;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.blog-hero-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 720px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

/* Category Filter Bar */
.blog-filters-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.blog-filter-btn {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #475569;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: #1054B8;
  color: #ffffff;
  border-color: #1054B8;
  box-shadow: 0 4px 12px rgba(16, 84, 184, 0.25);
}

/* Featured Hero Article Card */
.blog-featured-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(16, 84, 184, 0.1);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  margin-bottom: 4rem;
  transition: all 0.3s ease;
}

.blog-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(16, 84, 184, 0.18);
  border-color: rgba(16, 84, 184, 0.3);
}

.blog-featured-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(16, 84, 184, 0.1);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  margin-bottom: 4rem;
  transition: all 0.3s ease;
}

.blog-featured-img-box {
  position: relative;
  background: #071f4a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.blog-featured-img-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #071f4a;
}

.blog-featured-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.blog-featured-card:hover .blog-featured-img-box img {
  transform: scale(1.04);
}

.blog-featured-content {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.blog-category-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(16, 84, 184, 0.1);
  color: #1054B8;
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(16, 84, 184, 0.2);
}

.blog-category-badge.green {
  background: rgba(108, 189, 55, 0.12);
  color: #4d8f22;
  border-color: rgba(108, 189, 55, 0.25);
}

.blog-featured-title {
  font-size: 1.85rem;
  color: #071f4a;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.blog-featured-title a {
  color: #071f4a;
  transition: color 0.2s ease;
}

.blog-featured-title a:hover {
  color: #1054B8;
}

.blog-featured-excerpt {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

/* Blog 3-Column Grid */
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  margin-bottom: 4rem;
}

.blog-post-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(16, 84, 184, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.blog-post-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 84, 184, 0.3);
  box-shadow: 0 16px 36px -8px rgba(16, 84, 184, 0.15);
}

.blog-post-thumb {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: #071f4a;
}

.blog-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-post-card:hover .blog-post-thumb img {
  transform: scale(1.06);
}

.blog-post-body {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-post-title {
  font-size: 1.25rem;
  color: #071f4a;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.blog-post-title a {
  color: #071f4a;
  transition: color 0.2s ease;
}

.blog-post-title a:hover {
  color: #1054B8;
}

.blog-post-excerpt {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.blog-post-footer {
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #64748b;
}

.blog-read-more-btn {
  color: #1054B8;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s ease;
}

.blog-read-more-btn:hover {
  color: #6CBD37;
  transform: translateX(4px);
}

/* ==========================================================================
   Single Blog Article Page (blog/*.html)
   ========================================================================== */
.article-header-section {
  padding: 4.5rem 0 2.5rem 0;
  background: linear-gradient(180deg, #071f4a 0%, #0d2e6e 100%);
  color: #ffffff;
}

.article-hero-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.article-h1-title {
  font-size: 2.85rem;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.article-deck-lead {
  font-size: 1.2rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.article-author-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.author-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #6CBD37;
}

.author-details {
  font-size: 0.9rem;
}

.author-name {
  font-weight: 800;
  color: #ffffff;
}

.author-title {
  color: #94a3b8;
  font-size: 0.8rem;
}

/* Article Main Content Layout */
.article-layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  padding: 3.5rem 0;
}

.article-main-body {
  max-width: 800px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
}

.article-main-body h2 {
  font-size: 1.95rem;
  color: #071f4a;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-weight: 800;
  margin: 2.5rem 0 1rem 0;
  line-height: 1.3;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f1f5f9;
}

.article-main-body h3 {
  font-size: 1.4rem;
  color: #1054B8;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-weight: 700;
  margin: 2rem 0 0.85rem 0;
  line-height: 1.35;
}

.article-main-body p {
  margin-bottom: 1.4rem;
}

.article-main-body ul,
.article-main-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-main-body li {
  margin-bottom: 0.6rem;
  line-height: 1.65;
}

.article-main-body strong {
  color: #0f172a;
}

.article-lead-figure {
  margin: 0 0 2.5rem 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.article-lead-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.article-lead-figure figcaption {
  font-size: 0.8rem;
  color: #64748b;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

/* Callouts & Key Takeaways */
.article-callout-box {
  background: linear-gradient(135deg, rgba(16, 84, 184, 0.05) 0%, rgba(108, 189, 55, 0.08) 100%);
  border-left: 4px solid #1054B8;
  border-radius: 0 16px 16px 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.article-callout-title {
  font-weight: 800;
  color: #071f4a;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Data Tables */
.article-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.925rem;
  text-align: left;
}

.article-table th {
  background: #071f4a;
  color: #ffffff;
  padding: 0.9rem 1.15rem;
  font-weight: 700;
}

.article-table td {
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
}

.article-table tr:last-child td {
  border-bottom: none;
}

.article-table tr:nth-child(even) td {
  background: #f8fafc;
}

/* Table of Contents Box (Sidebar & Inline) */
.toc-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  position: sticky;
  top: 100px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.toc-heading {
  font-size: 1rem;
  font-weight: 800;
  color: #071f4a;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.toc-list a {
  color: #475569;
  font-size: 0.85rem;
  line-height: 1.4;
  transition: all 0.2s ease;
  display: block;
}

.toc-list a:hover {
  color: #1054B8;
  padding-left: 4px;
}

/* Sidebar Lead CTA */
.sidebar-cta-card {
  background: linear-gradient(135deg, #071f4a 0%, #1054B8 100%);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 10px 25px rgba(7, 31, 74, 0.25);
}

/* Author Full Bio Box */
.author-bio-full-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin: 3.5rem 0 2rem 0;
}

.author-bio-full-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #6CBD37;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .blog-featured-card {
    grid-template-columns: 1fr;
  }
  .blog-featured-img-box {
    min-height: 260px;
  }
  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-layout-grid {
    grid-template-columns: 1fr;
  }
  .article-h1-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 680px) {
  .blog-posts-grid {
    grid-template-columns: 1fr;
  }
  .blog-hero-title {
    font-size: 2rem;
  }
  .article-h1-title {
    font-size: 1.85rem;
  }
  .author-bio-full-card {
    flex-direction: column;
    text-align: center;
  }
}


/* ==========================================================================
   Live Client Landing Pages Showcase
   ========================================================================== */
.client-landing-pages-section {
  padding: 5rem 0;
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.landing-pages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}

.lp-client-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px -4px rgba(16, 84, 184, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.lp-client-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 84, 184, 0.35);
  box-shadow: 0 20px 45px -8px rgba(16, 84, 184, 0.18);
}

/* Browser Mockup Top Bar */
.lp-browser-header {
  background: #071f4a;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-browser-dots {
  display: flex;
  gap: 6px;
}

.lp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.lp-dot.red { background: #ef4444; }
.lp-dot.yellow { background: #f59e0b; }
.lp-dot.green { background: #10b981; }

.lp-browser-url-bar {
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 14px;
  border-radius: 9999px;
  font-size: 0.75rem;
  color: #cbd5e1;
  font-family: monospace;
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-live-badge {
  font-size: 0.7rem;
  font-weight: 800;
  color: #6CBD37;
  background: rgba(108, 189, 55, 0.15);
  padding: 2px 8px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.lp-live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6CBD37;
  display: inline-block;
  box-shadow: 0 0 8px #6CBD37;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* Card Visual Thumbnail */
.lp-preview-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #030d1f;
}

.lp-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lp-client-card:hover .lp-preview-thumb img {
  transform: scale(1.05);
}

.lp-corridor-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(7, 31, 74, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Card Body & Info */
.lp-card-body {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.lp-project-title {
  font-size: 1.35rem;
  color: #071f4a;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-weight: 800;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-asset-type {
  font-size: 0.825rem;
  color: #1054B8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.lp-tech-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.lp-tech-checklist li {
  font-size: 0.85rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lp-tech-checklist li span.check-icon {
  color: #6CBD37;
  font-weight: 800;
}

.lp-card-footer {
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.lp-visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #1054B8 0%, #0d4394 100%);
  color: #ffffff;
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(16, 84, 184, 0.2);
}

.lp-visit-btn:hover {
  background: linear-gradient(135deg, #6CBD37 0%, #58a329 100%);
  color: #ffffff;
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(108, 189, 55, 0.35);
}

@media (max-width: 900px) {
  .landing-pages-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


/* Expandable Client Portals Styling */
.lp-more-wrapper {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.lp-readmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  color: #1054B8;
  border: 2px solid #1054B8;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(16, 84, 184, 0.1);
}

.lp-readmore-btn:hover {
  background: #1054B8;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 84, 184, 0.25);
}

.lp-extra-grid {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeInPortals 0.4s ease forwards;
}

.lp-extra-grid.is-visible {
  display: grid;
}

@keyframes fadeInPortals {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .lp-extra-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


/* ==========================================================================
   Perigon Group Luxury Signature Flagship Showcase
   ========================================================================== */
.perigon-flagship-card {
  background: linear-gradient(135deg, #040e21 0%, #071f4a 45%, #0b1528 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(4, 14, 33, 0.7), 0 0 35px -5px rgba(212, 175, 55, 0.15);
  margin-bottom: 3.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.perigon-flagship-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 25px 60px -10px rgba(4, 14, 33, 0.8), 0 0 50px 0 rgba(212, 175, 55, 0.25);
}

.perigon-flagship-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  padding: 3rem;
  align-items: center;
}

.perigon-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.08) 100%);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #fbbf24;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.perigon-title {
  font-size: 2.15rem;
  color: #ffffff;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.perigon-subtitle {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.perigon-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.perigon-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #e2e8f0;
  line-height: 1.5;
}

.perigon-gold-icon {
  color: #fbbf24;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.perigon-actions-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-luxury-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #d4af37 0%, #b89728 100%);
  color: #071f4a !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
}

.btn-luxury-gold:hover {
  background: linear-gradient(135deg, #fcd34d 0%, #d4af37 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
  color: #030d1f !important;
}

.perigon-author-tag {
  font-size: 0.825rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.perigon-preview-box {
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

.perigon-browser-top {
  background: #071f4a;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.perigon-browser-url {
  background: rgba(255, 255, 255, 0.12);
  padding: 3px 12px;
  border-radius: 9999px;
  font-size: 0.725rem;
  color: #cbd5e1;
  font-family: monospace;
}

.perigon-img-wrap {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #071f4a;
}

.perigon-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.perigon-flagship-card:hover .perigon-img-wrap img {
  transform: scale(1.04);
}

@media (max-width: 960px) {
  .perigon-flagship-inner {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }
  .perigon-img-wrap {
    height: 240px;
  }
}
