:root {
  --primary-dark: #0a1628;
  --primary-blue: #1a3a5c;
  --accent-blue: #2d5a87;
  --light-blue: #4a90c2;
  --highlight-blue: #5ba4d9;
  --accent-green: #4ade80;
  --text-white: #ffffff;
  --text-light: #e2e8f0;
  --text-gray: #94a3b8;
  --text-dark: #1e293b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --gradient-hero: linear-gradient(135deg, #0a1628 0%, #1a3a5c 50%, #2d5a87 100%);
  --gradient-section: linear-gradient(180deg, #1a3a5c 0%, #0a1628 100%);
  --gradient-card: linear-gradient(145deg, rgba(45, 90, 135, 0.1) 0%, rgba(26, 58, 92, 0.05) 100%);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 30px rgba(74, 144, 194, 0.3);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

p {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--accent-blue) 100%);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.btn-secondary:hover {
  background: var(--text-white);
  color: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
}

.btn-outline:hover {
  background: var(--accent-blue);
  color: var(--text-white);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--highlight-blue);
}

.main-nav .nav-cta {
  background: var(--light-blue);
  color: var(--text-white);
  padding: 10px 20px;
  border-radius: var(--radius-md);
}

.main-nav .nav-cta:hover {
  background: var(--highlight-blue);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(74, 144, 194, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(91, 164, 217, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(45, 90, 135, 0.2) 0%, transparent 40%);
}

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

.hero-text {
  color: var(--text-white);
}

.hero-text h1 {
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subheadline {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero-cta-label {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  position: relative;
}

.ai-visual {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hexagon-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.hexagon {
  width: 80px;
  height: 92px;
  background: linear-gradient(135deg, rgba(74, 144, 194, 0.3) 0%, rgba(45, 90, 135, 0.1) 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: 1px solid rgba(91, 164, 217, 0.3);
  animation: hexPulse 3s ease-in-out infinite;
}

.hexagon:nth-child(1) { animation-delay: 0s; }
.hexagon:nth-child(2) { animation-delay: 0.3s; }
.hexagon:nth-child(3) { animation-delay: 0.6s; }
.hexagon:nth-child(4) { animation-delay: 0.9s; }
.hexagon:nth-child(5) { animation-delay: 1.2s; }
.hexagon:nth-child(6) { animation-delay: 1.5s; }
.hexagon:nth-child(7) { animation-delay: 1.8s; }

@keyframes hexPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.node-network {
  position: absolute;
  width: 200px;
  height: 200px;
}

.node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--highlight-blue);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--highlight-blue);
  animation: nodePulse 2s ease-in-out infinite;
}

.node:nth-child(1) { top: 0; left: 50%; }
.node:nth-child(2) { top: 50%; right: 0; animation-delay: 0.5s; }
.node:nth-child(3) { bottom: 0; left: 50%; animation-delay: 1s; }
.node:nth-child(4) { top: 50%; left: 0; animation-delay: 1.5s; }

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

.connection {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--highlight-blue), transparent);
  animation: connectionFlow 2s linear infinite;
}

.connection:nth-child(5) {
  width: 100px;
  top: 25%;
  left: 50%;
  transform: rotate(45deg);
}

.connection:nth-child(6) {
  width: 100px;
  top: 50%;
  left: 25%;
  transform: rotate(-45deg);
}

.connection:nth-child(7) {
  width: 100px;
  bottom: 25%;
  right: 25%;
  transform: rotate(135deg);
}

@keyframes connectionFlow {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

section {
  padding: 100px 0;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.ai-shift {
  background: var(--bg-light);
}

.ai-shift h2 {
  text-align: center;
  color: var(--text-dark);
}

.platform-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.platform-card {
  background: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.platform-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatgpt-icon {
  background: linear-gradient(135deg, #10a37f 0%, #0d8a6a 100%);
}

.perplexity-icon {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.gemini-icon {
  background: linear-gradient(135deg, #4285f4 0%, #ea4335 50%, #fbbc04 100%);
}

.platform-card h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
}

.platform-card p {
  color: var(--text-gray);
}

.shift-statement {
  background: var(--gradient-hero);
  color: var(--text-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  font-size: 1.25rem;
  font-style: italic;
  text-align: center;
  border-left: 4px solid var(--highlight-blue);
}

.problems {
  background: var(--gradient-section);
  color: var(--text-white);
}

.problems h2 {
  text-align: center;
}

.problems .section-intro {
  color: var(--text-light);
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.problem-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.problem-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.problem-number {
  width: 40px;
  height: 40px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}

.problem-card h3 {
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--text-light);
}

.difference {
  background: var(--bg-white);
}

.difference h2 {
  text-align: center;
  color: var(--text-dark);
}

.difference-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.difference-box {
  background: var(--bg-light);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.difference-box:hover {
  border-color: var(--light-blue);
  box-shadow: var(--shadow-glow);
}

.difference-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  background: var(--gradient-hero);
  position: relative;
}

.difference-icon::after {
  content: '';
  position: absolute;
  inset: 16px;
  background: var(--text-white);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.geo-icon::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20'/%3E%3Cpath d='M2 12h20'/%3E%3C/svg%3E");
}

.recommend-icon::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3'/%3E%3C/svg%3E");
}

.priority-icon::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpath d='M22 4L12 14.01l-3-3'/%3E%3C/svg%3E");
}

.partner-icon::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.difference-box h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
}

.difference-box p {
  color: var(--text-gray);
}

.who-we-help {
  background: var(--bg-light);
}

.who-we-help h2 {
  text-align: center;
  color: var(--text-dark);
}

.audience-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.audience-tile {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.audience-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.tile-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gradient-hero);
}

.mortgage-icon {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
}

.realestate-icon {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
}

.tile-header h3 {
  color: var(--text-dark);
}

.tile-descriptor {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 500;
}

.tile-benefits {
  list-style: none;
  margin-bottom: 24px;
}

.tile-benefits li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-gray);
}

.tile-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background: var(--accent-green);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  mask-size: contain;
}

.how-it-works {
  background: var(--gradient-hero);
  color: var(--text-white);
}

.how-it-works h2 {
  text-align: center;
}

.how-it-works .section-intro {
  color: var(--text-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  position: relative;
}

.process-step {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--highlight-blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: var(--shadow-glow);
}

.process-step h3 {
  margin-bottom: 16px;
}

.process-step p {
  color: var(--text-light);
}

.what-you-get {
  background: var(--bg-white);
}

.what-you-get h2 {
  text-align: center;
  color: var(--text-dark);
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.deliverable {
  background: var(--bg-light);
  padding: 32px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--light-blue);
  transition: var(--transition);
}

.deliverable:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.deliverable-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-hero);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.deliverable h3 {
  color: var(--text-dark);
  margin-bottom: 8px;
}

.deliverable p {
  color: var(--text-gray);
}

.resources {
  background: var(--bg-light);
}

.resources h2 {
  text-align: center;
  color: var(--text-dark);
}

.article-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.article-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.article-image {
  height: 180px;
  background: var(--gradient-hero);
  position: relative;
}

.article-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L90 30 L90 70 L50 90 L10 70 L10 30 Z' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'/%3E%3C/svg%3E") center/50% no-repeat;
}

.article-content {
  padding: 24px;
}

.article-tag {
  display: inline-block;
  background: rgba(74, 144, 194, 0.1);
  color: var(--accent-blue);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.article-card h3 {
  color: var(--text-dark);
  margin-bottom: 8px;
}

.article-card p {
  color: var(--text-gray);
  margin-bottom: 16px;
}

.read-more {
  color: var(--accent-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.read-more::after {
  content: '\2192';
  transition: var(--transition);
}

.read-more:hover::after {
  transform: translateX(4px);
}

.booking {
  background: var(--bg-white);
  text-align: center;
}

.booking h2 {
  color: var(--text-dark);
}

.booking .section-intro {
  margin-bottom: 32px;
}

.booking .btn {
  padding: 18px 40px;
  font-size: 1.125rem;
}

.get-started {
  background: var(--gradient-section);
  color: var(--text-white);
}

.get-started h2 {
  text-align: center;
}

.get-started .section-intro {
  color: var(--text-light);
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.cta-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: var(--transition);
}

.cta-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.cta-card h3 {
  margin-bottom: 16px;
  color: var(--text-white);
}

.cta-card p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

.cta-card .btn {
  width: 100%;
}

.cta-card .btn-secondary {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--accent-blue) 100%);
  border: none;
}

.cta-card .btn-outline {
  color: var(--text-white);
  border-color: var(--text-white);
}

.cta-card .btn-outline:hover {
  background: var(--text-white);
  color: var(--primary-dark);
}

.lead-intake {
  background: var(--gradient-hero);
  color: var(--text-white);
  padding: 80px 0;
}

.lead-intake .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.intake-content h2 {
  margin-bottom: 16px;
}

.intake-content p {
  color: var(--text-light);
  font-size: 1.125rem;
}

.iframe-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 600px;
}

.iframe-wrapper iframe {
  width: 100%;
  height: 600px;
  border: none;
}

.site-footer {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-gray);
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--text-white);
  margin-bottom: 20px;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-gray);
}

.footer-links a:hover {
  color: var(--highlight-blue);
}

.footer-contact p {
  color: var(--text-gray);
  margin-bottom: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.footer-legal-links {
  font-size: 0.875rem;
  opacity: 0.9;
}

.footer-legal-links a {
  text-decoration: none;
  color: inherit;
}

.footer-legal-links a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-placeholder {
    max-width: 350px;
    margin: 0 auto;
  }

  .lead-intake .container {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-text {
    text-align: center;
  }

  .hero-ctas {
    align-items: center;
  }

  section {
    padding: 60px 0;
  }

  .audience-tiles {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-links nav {
    align-items: center;
  }

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

  .booking {
    padding: 60px 0;
  }

  .booking h2 {
    font-size: 1.75rem;
  }

  .get-started {
    padding: 60px 0;
  }

  .container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .platform-cards,
  .problem-cards,
  .difference-boxes,
  .process-steps,
  .deliverables,
  .article-cards,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 28px;
  }

  .booking .btn {
    width: 100%;
    padding: 16px 24px;
  }

  .footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-legal-links span {
    display: none;
  }
}

.blog-hero {
  background: var(--gradient-hero);
  color: var(--text-white);
  padding: 140px 0 80px;
  text-align: center;
}

.blog-hero h1 {
  margin-bottom: 16px;
}

.blog-hero p {
  color: var(--text-light);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.resources-subscribe {
  padding: 48px 24px;
  background: var(--bg-light);
}

.resources-subscribe .container {
  max-width: 800px;
}

.resources-subscribe-inner {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(45, 90, 135, 0.15);
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.resources-subscribe-inner h2 {
  margin: 0 0 12px 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.resources-subscribe-inner p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #555;
}

.resources-subscribe-inner .btn {
  margin-top: 20px;
}

.blog-content {
  background: var(--bg-light);
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.read-more-link {
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 0.95rem;
}

.read-more-link:hover {
  color: var(--light-blue);
}

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

.blog-image {
  height: 200px;
  background: var(--gradient-hero);
  position: relative;
}

.blog-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L90 30 L90 70 L50 90 L10 70 L10 30 Z' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'/%3E%3C/svg%3E") center/50% no-repeat;
}

.blog-card-content {
  padding: 32px;
}

.blog-card h2 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.blog-excerpt {
  color: var(--text-gray);
  margin-bottom: 12px;
  line-height: 1.7;
}

.blog-meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-date {
  color: var(--text-gray);
  font-size: 0.875rem;
  font-style: italic;
}

.blog-cta {
  text-align: center;
  background: var(--bg-white);
  padding: 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.blog-cta h2 {
  color: var(--text-dark);
  margin-bottom: 12px;
}

.blog-cta p {
  color: var(--text-gray);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

  .blog-hero {
    padding: 120px 0 60px;
  }
}

.placeholder-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 48px;
  text-align: center;
  color: var(--text-gray);
}

.placeholder-form p {
  margin-bottom: 16px;
  font-size: 1.125rem;
}

.placeholder-note {
  font-size: 0.9rem;
  font-style: italic;
}

.privacy {
  background: var(--bg-white);
  padding: 120px 0 80px;
}

.privacy h1 {
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.privacy h2 {
  color: var(--primary-dark);
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.privacy p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 16px;
}

.privacy .section-intro {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 32px;
}

.privacy a {
  color: var(--accent-blue);
}

.privacy a:hover {
  color: var(--light-blue);
}

.blog-article-page .article-header {
  background: var(--gradient-hero);
  color: var(--text-white);
  padding: 140px 0 60px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.back-link {
  color: var(--text-light);
  font-size: 0.9rem;
}

.back-link:hover {
  color: var(--text-white);
}

.article-category {
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--highlight-blue);
}

.blog-article h1 {
  font-size: 2.75rem;
  margin-bottom: 16px;
  max-width: 800px;
}

.article-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 700px;
  margin-bottom: 24px;
}

.article-byline {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.article-byline .author {
  font-weight: 600;
  color: var(--text-white);
}

.article-hero {
  margin: -30px auto 0;
  max-width: 900px;
  padding: 0 20px;
}

.article-hero img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.article-content {
  padding: 60px 0 80px;
  background: var(--bg-white);
}

.article-content .container {
  max-width: 800px;
}

.article-section {
  margin-bottom: 32px;
}

.article-section h2 {
  color: var(--primary-dark);
  font-size: 1.75rem;
  margin-bottom: 16px;
  margin-top: 32px;
}

.article-section h2:first-child {
  margin-top: 0;
}

.article-section h3 {
  color: var(--primary-dark);
  font-size: 1.35rem;
  margin-top: 24px;
  margin-bottom: 12px;
}

.article-section p {
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.article-section ul,
.article-section ol {
  margin: 16px 0;
  padding-left: 24px;
}

.article-section li {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.article-section strong {
  color: var(--primary-dark);
}

.article-section em {
  font-style: italic;
}

.article-cta {
  background: var(--gradient-section);
  padding: 48px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 60px;
}

.article-cta h2 {
  color: var(--text-white);
  margin-bottom: 16px;
}

.article-cta p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 24px;
}

.article-cta .btn {
  padding: 16px 32px;
}

@media (max-width: 768px) {
  .blog-article h1 {
    font-size: 2rem;
  }

  .article-subtitle {
    font-size: 1.1rem;
  }

  .article-byline {
    flex-direction: column;
    gap: 8px;
  }

  .article-hero {
    margin-top: -20px;
  }

  .article-section h2 {
    font-size: 1.5rem;
  }

  .article-section p {
    font-size: 1rem;
  }

  .article-cta {
    padding: 32px 24px;
  }
}
