@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --royal-blue: #2E5BBF;
  --deep-navy: #1E3568;
  --ice-blue: #C9D7EA;
  --soft-silver: #E8EDF5;
  --white: #FFFFFF;
  --royal-blue-light: rgba(46, 91, 191, 0.1);
  --royal-blue-medium: rgba(46, 91, 191, 0.15);
  --gradient-main: linear-gradient(135deg, #1E3568 0%, #2E5BBF 50%, #C9D7EA 100%);
  --gradient-soft: linear-gradient(135deg, #E8EDF5 0%, #C9D7EA 100%);
  --gradient-dark: linear-gradient(135deg, #1E3568 0%, #2E5BBF 100%);
  --shadow-sm: 0 2px 8px rgba(30, 53, 104, 0.08);
  --shadow-md: 0 4px 20px rgba(30, 53, 104, 0.12);
  --shadow-lg: 0 8px 40px rgba(30, 53, 104, 0.16);
  --shadow-card: 0 1px 3px rgba(30, 53, 104, 0.06), 0 6px 16px rgba(30, 53, 104, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--deep-navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 215, 234, 0.5);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 36px;
  width: auto;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-navy);
  letter-spacing: 0.02em;
}

.logo-text span {
  color: var(--royal-blue);
  font-weight: 800;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand .logo-text span {
  color: var(--ice-blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--deep-navy);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--royal-blue);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--royal-blue);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--royal-blue);
  color: var(--white) !important;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.header-cta:hover {
  background: var(--deep-navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.header-cta::after {
  display: none !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--royal-blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--deep-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline {
  background: transparent;
  color: var(--royal-blue);
  border: 2px solid var(--royal-blue);
}

.btn-outline:hover {
  background: var(--royal-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--royal-blue);
}

.btn-white:hover {
  background: var(--soft-silver);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-arrow::after {
  content: '\2192';
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ===================== SECTION UTILITIES ===================== */
.section {
  padding: 100px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--royal-blue);
  margin-bottom: 16px;
}

.section-label .label-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--royal-blue);
  border-radius: 1px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--deep-navy);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #5a6a85;
  max-width: 640px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(201, 215, 234, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-hex-grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpath d='M30 0 L60 15 L60 37 L30 52 L0 37 L0 15 Z' fill='none' stroke='%23C9D7EA' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  color: var(--ice-blue);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.hero h1 .highlight {
  background: linear-gradient(90deg, #C9D7EA, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  opacity: 0.3;
}

.hero-ring {
  position: absolute;
  border: 1px solid rgba(201, 215, 234, 0.25);
  border-radius: 50%;
  animation: ring-rotate 30s linear infinite;
}

.hero-ring:nth-child(1) {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero-ring:nth-child(2) {
  width: 75%;
  height: 75%;
  top: 12.5%;
  left: 12.5%;
  animation-duration: 25s;
  animation-direction: reverse;
}

.hero-ring:nth-child(3) {
  width: 50%;
  height: 50%;
  top: 25%;
  left: 25%;
  animation-duration: 20s;
}

.hero-ring .dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--ice-blue);
  border-radius: 50%;
}

.hero-ring:nth-child(1) .dot { top: 0; left: 50%; transform: translate(-50%, -50%); }
.hero-ring:nth-child(2) .dot { top: 50%; right: 0; transform: translate(50%, -50%); }
.hero-ring:nth-child(3) .dot { bottom: 0; left: 50%; transform: translate(-50%, 50%); }

@keyframes ring-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat .stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.hero-stat .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* ===================== PROBLEM SECTION (Split) ===================== */
.problem-section {
  background: var(--white);
  position: relative;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.problem-left {
  background: var(--soft-silver);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.problem-left::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--ice-blue), transparent);
}

.problem-right {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.problem-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.problem-stat-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border-left: 3px solid var(--royal-blue);
}

.problem-stat-card .stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--royal-blue);
}

.problem-stat-card .stat-text {
  font-size: 0.85rem;
  color: #5a6a85;
  margin-top: 4px;
}

.problem-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.problem-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.problem-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--royal-blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--royal-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.problem-item p {
  font-size: 0.9rem;
  color: #5a6a85;
  line-height: 1.6;
}

/* ===================== AI VALUATION (Cards 2x2) ===================== */
.valuation-section {
  background: var(--soft-silver);
  position: relative;
}

.valuation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ice-blue), transparent);
}

.valuation-header {
  text-align: center;
  margin-bottom: 60px;
}

.valuation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.valuation-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(201, 215, 234, 0.4);
}

.valuation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--royal-blue);
}

.valuation-card .card-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--soft-silver);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.valuation-card .card-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.valuation-card .card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.valuation-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--deep-navy);
}

.valuation-card p {
  font-size: 0.95rem;
  color: #5a6a85;
  line-height: 1.7;
}

.valuation-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===================== NEIGHBORHOOD (Split visual) ===================== */
.neighborhood-section {
  background: var(--white);
  overflow: hidden;
}

.neighborhood-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.neighborhood-visual {
  position: relative;
  height: 480px;
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.neighborhood-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpath d='M30 0 L60 15 L60 37 L30 52 L0 37 L0 15 Z' fill='none' stroke='%23C9D7EA' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 40px 35px;
}

.map-dots {
  position: absolute;
  inset: 40px;
}

.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--royal-blue);
  box-shadow: 0 0 0 4px rgba(46, 91, 191, 0.3);
  animation: map-pulse 3s ease-in-out infinite;
}

.map-dot:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.map-dot:nth-child(2) { top: 45%; left: 60%; animation-delay: 0.5s; }
.map-dot:nth-child(3) { top: 70%; left: 25%; animation-delay: 1s; }
.map-dot:nth-child(4) { top: 35%; left: 75%; animation-delay: 1.5s; }
.map-dot:nth-child(5) { top: 60%; left: 50%; animation-delay: 2s; }

.map-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 215, 234, 0.4), transparent);
  transform-origin: left center;
}

.map-line:nth-child(6) { top: 28%; left: 33%; width: 120px; transform: rotate(25deg); }
.map-line:nth-child(7) { top: 50%; left: 30%; width: 150px; transform: rotate(-15deg); }
.map-line:nth-child(8) { top: 55%; left: 55%; width: 100px; transform: rotate(40deg); }

@keyframes map-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.neighborhood-content .feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--soft-silver);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: var(--royal-blue-light);
  transform: translateX(4px);
}

.feature-check {
  width: 28px;
  height: 28px;
  background: var(--royal-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item span {
  font-weight: 500;
  font-size: 0.95rem;
}

/* ===================== PREDICTIVE INTELLIGENCE ===================== */
.predictive-section {
  background: var(--deep-navy);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.predictive-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpath d='M30 0 L60 15 L60 37 L30 52 L0 37 L0 15 Z' fill='none' stroke='%23C9D7EA' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 60px 52px;
}

.predictive-content {
  position: relative;
  z-index: 1;
}

.predictive-top {
  text-align: center;
  margin-bottom: 64px;
}

.predictive-top .section-label {
  color: var(--ice-blue);
}

.predictive-top .section-label .label-line {
  background: var(--ice-blue);
}

.predictive-top .section-title {
  color: var(--white);
}

.predictive-top .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.predictive-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.predictive-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

.predictive-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 215, 234, 0.3);
  transform: translateY(-4px);
}

.predictive-card .card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.predictive-card .card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(46, 91, 191, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.predictive-card .card-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--ice-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.predictive-card .card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ice-blue);
  padding: 4px 12px;
  border: 1px solid rgba(201, 215, 234, 0.2);
  border-radius: 100px;
}

.predictive-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}

.predictive-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.predictive-cta {
  text-align: center;
}

/* ===================== RISK DETECTION (Cards 2x2) ===================== */
.risk-section {
  background: var(--white);
  position: relative;
}

.risk-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}

.risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.risk-card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.risk-card:nth-child(1) {
  background: var(--deep-navy);
  color: var(--white);
}

.risk-card:nth-child(2) {
  background: var(--soft-silver);
  border: 1px solid var(--ice-blue);
}

.risk-card:nth-child(3) {
  background: var(--soft-silver);
  border: 1px solid var(--ice-blue);
}

.risk-card:nth-child(4) {
  background: var(--royal-blue);
  color: var(--white);
}

.risk-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.risk-card .risk-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.risk-card:nth-child(1) .risk-icon,
.risk-card:nth-child(4) .risk-icon {
  background: rgba(255, 255, 255, 0.12);
}

.risk-card:nth-child(2) .risk-icon,
.risk-card:nth-child(3) .risk-icon {
  background: var(--royal-blue-light);
}

.risk-card .risk-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.risk-card:nth-child(1) .risk-icon svg,
.risk-card:nth-child(4) .risk-icon svg {
  stroke: var(--white);
}

.risk-card:nth-child(2) .risk-icon svg,
.risk-card:nth-child(3) .risk-icon svg {
  stroke: var(--royal-blue);
}

.risk-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.risk-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.risk-card:nth-child(1) p,
.risk-card:nth-child(4) p {
  color: rgba(255, 255, 255, 0.65);
}

.risk-card:nth-child(2) p,
.risk-card:nth-child(3) p {
  color: #5a6a85;
}

/* ===================== VISION SECTION ===================== */
.vision-section {
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 91, 191, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.vision-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vision-content .section-subtitle {
  margin-bottom: 32px;
}

.vision-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.vision-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vision-feature .hex-icon {
  width: 36px;
  height: 36px;
  background: var(--royal-blue);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vision-feature .hex-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vision-feature span {
  font-weight: 500;
  font-size: 0.95rem;
}

.vision-graphic {
  position: relative;
  height: 420px;
}

.vision-hex-cluster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hex-shape {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: all 0.5s ease;
}

.hex-shape:nth-child(1) {
  width: 180px;
  height: 200px;
  background: var(--royal-blue);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
}

.hex-shape:nth-child(2) {
  width: 120px;
  height: 135px;
  background: var(--deep-navy);
  top: 15%;
  left: 25%;
  opacity: 0.2;
}

.hex-shape:nth-child(3) {
  width: 100px;
  height: 112px;
  background: var(--royal-blue);
  bottom: 15%;
  right: 20%;
  opacity: 0.12;
}

.hex-shape:nth-child(4) {
  width: 80px;
  height: 90px;
  background: var(--deep-navy);
  top: 25%;
  right: 25%;
  opacity: 0.1;
}

.hex-shape:nth-child(5) {
  width: 60px;
  height: 67px;
  background: var(--ice-blue);
  bottom: 30%;
  left: 15%;
  opacity: 0.3;
}

/* ===================== CONTACT SECTION ===================== */
.contact-section {
  background: var(--white);
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  padding-top: 20px;
}

.contact-info .section-subtitle {
  margin-bottom: 40px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.channel-icon {
  width: 48px;
  height: 48px;
  background: var(--soft-silver);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--royal-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.channel-text h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.channel-text p {
  font-size: 0.875rem;
  color: #5a6a85;
}

.contact-trust {
  display: flex;
  gap: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--ice-blue);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #5a6a85;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--royal-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form-card {
  background: var(--soft-silver);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  border: 1px solid var(--ice-blue);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form-card .form-subtitle {
  font-size: 0.9rem;
  color: #5a6a85;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--ice-blue);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--deep-navy);
  background: var(--white);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ba8bf;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 3px var(--royal-blue-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--deep-navy);
  color: var(--white);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo img {
  height: 32px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--royal-blue);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

.footer-column h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ice-blue);
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.footer-column ul a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ===================== PAGE HERO (for sub-pages) ===================== */
.page-hero {
  padding: 140px 0 80px;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpath d='M30 0 L60 15 L60 37 L30 52 L0 37 L0 15 Z' fill='none' stroke='%23C9D7EA' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 60px 52px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
}

.page-hero .breadcrumb a:hover {
  color: var(--white);
}

.page-hero .breadcrumb .sep {
  font-size: 0.7rem;
}

/* ===================== LEGAL PAGES ===================== */
.legal-content {
  padding: 80px 0;
}

.legal-content .container {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--deep-navy);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--deep-navy);
}

.legal-content p {
  color: #5a6a85;
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content ul li {
  color: #5a6a85;
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-content .effective-date {
  display: inline-block;
  padding: 8px 16px;
  background: var(--soft-silver);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: #5a6a85;
  margin-bottom: 24px;
}

/* ===================== BLOG PAGE ===================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 80px 0;
}

.blog-article {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
  padding: 40px;
  background: var(--soft-silver);
  border-radius: var(--radius-xl);
  border: 1px solid var(--ice-blue);
  transition: all 0.3s ease;
}

.blog-article:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.blog-article:nth-child(even) {
  grid-template-columns: 1.5fr 1fr;
}

.blog-article:nth-child(even) .blog-article-image {
  order: 2;
}

.blog-article-image {
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.blog-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blog-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpath d='M30 0 L60 15 L60 37 L30 52 L0 37 L0 15 Z' fill='none' stroke='%23C9D7EA' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 40px 35px;
}

.blog-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--ice-blue);
  fill: none;
  stroke-width: 1.5;
  opacity: 0.6;
}

.blog-article-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
}

.blog-category {
  padding: 4px 14px;
  background: var(--royal-blue-light);
  color: var(--royal-blue);
  font-weight: 600;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.7rem;
}

.blog-date {
  color: #8a96aa;
}

.blog-article-content h2 {
  font-size: 1.5rem;
  color: var(--deep-navy);
  line-height: 1.3;
}

.blog-article-content p {
  font-size: 0.95rem;
  color: #5a6a85;
  line-height: 1.7;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--royal-blue);
  transition: gap 0.3s ease;
}

.blog-read-more:hover {
  gap: 12px;
}

.blog-read-more svg {
  width: 16px;
  height: 16px;
  stroke: var(--royal-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===================== CAREERS PAGE ===================== */
.careers-intro {
  padding: 80px 0;
  text-align: center;
}

.careers-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--soft-silver);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--ice-blue);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--royal-blue);
}

.value-card .value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--royal-blue);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card .value-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: #5a6a85;
  line-height: 1.6;
}

.openings-section {
  padding: 80px 0;
  background: var(--soft-silver);
}

.openings-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}

.opening-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--ice-blue);
  transition: all 0.3s ease;
}

.opening-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--royal-blue);
}

.opening-info h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.opening-tags {
  display: flex;
  gap: 8px;
}

.opening-tag {
  padding: 4px 12px;
  background: var(--soft-silver);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #5a6a85;
}

.careers-form-section {
  padding: 80px 0;
  background: var(--white);
}

.careers-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--deep-navy);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.careers-form-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpath d='M30 0 L60 15 L60 37 L30 52 L0 37 L0 15 Z' fill='none' stroke='%23C9D7EA' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 60px 52px;
}

.careers-form-wrapper h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.careers-form-wrapper .form-subtitle {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.careers-form-wrapper .form-group label {
  color: var(--ice-blue);
}

.careers-form-wrapper .form-group input,
.careers-form-wrapper .form-group select,
.careers-form-wrapper .form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.careers-form-wrapper .form-group input::placeholder,
.careers-form-wrapper .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.careers-form-wrapper .form-group input:focus,
.careers-form-wrapper .form-group select:focus,
.careers-form-wrapper .form-group textarea:focus {
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 3px rgba(46, 91, 191, 0.3);
}

.careers-form-wrapper .form-submit {
  background: var(--white);
  color: var(--deep-navy);
}

.careers-form-wrapper .form-submit:hover {
  background: var(--ice-blue);
}

.careers-form-wrapper form {
  position: relative;
  z-index: 1;
}

/* ===================== PRICING PAGE ===================== */
.pricing-section {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--ice-blue);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.pricing-card.featured {
  background: var(--deep-navy);
  color: var(--white);
  border-color: var(--deep-navy);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
}

.pricing-card .plan-badge {
  display: inline-block;
  padding: 4px 16px;
  background: var(--royal-blue-light);
  color: var(--royal-blue);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pricing-card.featured .plan-badge {
  background: rgba(46, 91, 191, 0.3);
  color: var(--ice-blue);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin: 16px 0;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.6;
}

.pricing-card .price-desc {
  font-size: 0.85rem;
  color: #5a6a85;
  margin-bottom: 24px;
}

.pricing-card.featured .price-desc {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(201, 215, 234, 0.3);
}

.pricing-card.featured .pricing-features li {
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features li:last-child {
  border: none;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  stroke: var(--royal-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li svg {
  stroke: var(--ice-blue);
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

.pricing-faq {
  padding: 80px 0;
  background: var(--soft-silver);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.faq-item {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--ice-blue);
}

.faq-item h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--deep-navy);
}

.faq-item p {
  font-size: 0.9rem;
  color: #5a6a85;
  line-height: 1.7;
}

.pricing-form-section {
  padding: 80px 0;
  background: var(--white);
}

.pricing-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pricing-form-info {
  background: var(--gradient-dark);
  padding: 48px 40px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-form-info h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.pricing-form-info p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}

.pricing-form-info .info-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-form-info .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.pricing-form-info .info-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--ice-blue);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.pricing-form-right {
  background: var(--white);
  padding: 48px 40px;
}

.pricing-form-right h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--ice-blue);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-visual {
    display: none;
  }

  .problem-grid,
  .neighborhood-wrapper,
  .vision-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .problem-left,
  .problem-right {
    padding: 48px 24px;
  }

  .valuation-grid,
  .risk-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .predictive-cards,
  .pricing-grid,
  .careers-values {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .risk-header {
    grid-template-columns: 1fr;
  }

  .blog-article,
  .blog-article:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .blog-article:nth-child(even) .blog-article-image {
    order: 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .pricing-form-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 32px 24px;
  }

  .careers-form-wrapper {
    padding: 40px 28px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .neighborhood-visual {
    height: 300px;
  }

  .vision-graphic {
    height: 260px;
  }

  .opening-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .problem-stats {
    grid-template-columns: 1fr;
  }

  .contact-trust {
    flex-direction: column;
    gap: 12px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}
