@import url('https://fonts.googleapis.com/css2?family=Grand+Hotel&family=Noto+Sans:wght@400;700&family=Poppins:wght@400;600&family=Source+Sans+3:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  /* Colors */
  --brand-red: #D94040;
  --brand-red-hover: #C03636;
  --brand-red-light: #E85050;
  --bg-primary: #EEF2F7;
  --bg-white: #FFFFFF;
  --bg-dark-section: #2D3748;
  --bg-footer: #F5F7FA;
  --text-primary: #1A202C;
  --text-secondary: #4A5568;
  --text-muted: #A0AEC0;
  --text-red-label: #E53E3E;
  --blue-accent: #3B82F6;
  --blue-panel: #2B8FD9;
  --border-light: #E2E8F0;
  --yellow-tag: #FEFCBF;
  --checkmark-red: #E53E3E;
  --gold-gradient: linear-gradient(135deg, #F6E05E, #ECC94B);

  /* Typography */
  --font-heading: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  --font-body: 'Noto Sans', sans-serif;
  --font-cursive: 'Grand Hotel', cursive;
  --font-accent: 'Poppins', sans-serif;

  /* Spacing & Layout */
  --container-max: 1280px;
  --container-padding: 24px;
  --section-padding-y: 80px;
  --card-border-radius: 16px;
  --button-border-radius: 8px;
  --input-border-radius: 8px;
  --card-padding: 32px;
  --gap-cards: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-nav: 0 2px 8px rgba(0,0,0,0.08);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Cityscape Accents (Left & Right Edges) */
.page-bg-accent {
  position: absolute;
  top: 64px;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cityscape-left, .cityscape-right {
  position: absolute;
  top: 20px;
  width: 180px;
  height: 1200px;
  opacity: 0.18;
  background-repeat: repeat-y;
  background-size: contain;
}

.cityscape-left {
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 400'%3E%3Cpath fill='%232B8FD9' d='M10 400V250h40v150H10zm50 0V180h50v220H60zm60 0V220h40v180h-40z'/%3E%3Cpolygon fill='%23D94040' points='60,180 85,140 110,180'/%3E%3Ccircle cx='30' cy='220' r='15' fill='%23F6E05E'/%3E%3Cpath stroke='%234A5568' stroke-width='2' d='M0 150q90-30 180 0' fill='none'/%3E%3C/svg%3E");
}

.cityscape-right {
  right: 0;
  transform: scaleX(-1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 400'%3E%3Cpath fill='%2338A169' d='M20 400V200h50v200H20zm60 0V260h40v140H80zm50 0V160h40v240h-40z'/%3E%3Cpolygon fill='%23E53E3E' points='130,160 150,120 170,160'/%3E%3Cpath stroke='%234A5568' stroke-width='2' d='M0 180q90-40 180 0' fill='none'/%3E%3C/svg%3E");
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
}

/* Typography Utilities */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  color: var(--text-primary);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: var(--font-heading);
  cursor: pointer;
  border: none;
  background: none;
}

input {
  font-family: var(--font-body);
}

/* Buttons */
.btn-primary {
  background-color: var(--brand-red);
  color: var(--bg-white);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--button-border-radius);
  padding: 0 32px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(217, 64, 64, 0.25);
}

.btn-primary:hover {
  background-color: var(--brand-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(217, 64, 64, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  border: 1px solid #CBD5E0;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  padding: 8px 20px;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background-color: #F7FAFC;
  border-color: #A0AEC0;
}

.btn-pill-dark {
  background-color: var(--text-primary);
  color: var(--bg-white);
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease;
}

.btn-pill-dark:hover {
  background-color: #2D3748;
}

/* Eyebrow / Eyecatchers */
.section-eyebrow {
  color: var(--text-red-label);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

/* Section Headlines */
.section-headline {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}

/* ==========================================================================
   SECTION 1: NAVBAR
   ========================================================================== */
#navbar {
  position: sticky;
  top: 0;
  width: 100%;
  height: 68px;
  background-color: var(--bg-white);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  display: flex;
  align-items: center;
}

#navbar.scrolled {
  box-shadow: var(--shadow-nav);
}

.nav-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-book-icon {
  width: 32px;
  height: 38px;
  background-color: var(--brand-red);
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 6px rgba(217, 64, 64, 0.3);
}

.logo-book-icon::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background-color: rgba(255,255,255,0.6);
}

.logo-book-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
  margin-left: 4px;
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: #7A1C1C;
  letter-spacing: -0.5px;
}

.brand-text sup {
  font-size: 12px;
  font-weight: 400;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ==========================================================================
   SECTION 2: HERO
   ========================================================================== */
#hero {
  padding: 70px 0 60px;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.hero-headline-wrapper {
  position: relative;
  margin-bottom: 12px;
}

.hero-headline {
  font-size: 52px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -1px;
}

.cursive-insert-container {
  display: inline-block;
  position: relative;
  vertical-align: top;
  margin: 0 4px;
}

.cursive-text {
  font-family: var(--font-cursive);
  color: var(--brand-red);
  font-size: 36px;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(217,64,64,0.15);
}

.caret-symbol {
  color: var(--brand-red);
  font-weight: 900;
  font-size: 28px;
  display: block;
  text-align: center;
  line-height: 0.5;
}

.hero-subline {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  font-weight: 400;
}

/* Phone Input Group */
.phone-input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 540px;
  flex-wrap: wrap; /* Allows natural wrapping if container column is narrow */
}

.input-field-wrapper {
  flex: 1 1 240px;
  height: 52px;
  background-color: var(--bg-white);
  border: 1px solid #CBD5E0;
  border-radius: var(--input-border-radius);
  display: flex;
  align-items: center;
  padding: 0 16px;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}

.input-field-wrapper:focus-within {
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.prefix-tag {
  font-weight: 700;
  color: var(--text-primary);
  padding-right: 12px;
  border-right: 1px solid var(--border-light);
  font-size: 16px;
  user-select: none;
  flex-shrink: 0;
}

.phone-input {
  flex: 1;
  border: none;
  outline: none;
  padding-left: 12px;
  font-size: 15px;
  color: var(--text-primary);
  background: transparent;
  width: 100%;
  min-width: 0;
}

.phone-input::placeholder {
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 3: PLATFORM STRIP
   ========================================================================== */
#platform-strip {
  margin-bottom: var(--section-padding-y);
}

.platform-container {
  background-color: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.platform-header {
  margin-bottom: 32px;
}

.platform-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}

.platform-tabs {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
}

.tab-divider {
  width: 4px;
  height: 16px;
  background-color: var(--brand-red);
  border-radius: 2px;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.promo-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--card-border-radius);
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-card);
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: #CBD5E0;
}

.promo-card-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-red);
  margin-bottom: 4px;
}

.promo-headline {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.promo-subtext {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.store-badges-row {
  display: flex;
  gap: 10px;
}

.store-badge-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1A202C;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: opacity 0.2s;
}

.store-badge-mini:hover {
  opacity: 0.85;
}

.store-badge-mini svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.promo-link {
  color: var(--blue-accent);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.promo-link:hover {
  text-decoration: underline;
}

.promo-icon-right {
  width: 72px;
  height: 72px;
  background: #EFF6FF;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.promo-icon-right svg {
  width: 40px;
  height: 40px;
  fill: var(--blue-accent);
}

/* ==========================================================================
   SECTION 4: POWERFUL FEATURES
   ========================================================================== */
#features {
  padding: 40px 0 var(--section-padding-y);
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-cards);
  text-align: left;
}

.feature-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--card-border-radius);
  padding: 36px 36px 0 36px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

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

.feature-card-header {
  margin-bottom: 24px;
}

.feature-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-card-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.check-icon {
  width: 22px;
  height: 22px;
  background-color: #FED7D7;
  color: var(--checkmark-red);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-illustration-wrapper {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.feature-illustration-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-illustration-wrapper img {
  transform: scale(1.03);
}

/* ==========================================================================
   SECTION 5: AND THAT'S NOT ALL...
   ========================================================================== */
#more-features {
  margin-bottom: var(--section-padding-y);
}

.more-features-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: var(--shadow-card);
}

.divider-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.divider-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background-color: var(--border-light);
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.more-item {
  text-align: center;
  padding: 0 16px;
}

.more-icon {
  width: 64px;
  height: 64px;
  background-color: #FFF5F5;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--brand-red);
  transition: transform 0.3s ease;
}

.more-item:hover .more-icon {
  transform: rotate(-8deg) scale(1.1);
}

.more-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 2;
}

.more-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.more-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   SECTION 6: BIZ ANALYST
   ========================================================================== */
#biz-analyst {
  margin-bottom: var(--section-padding-y);
}

.biz-banner {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.biz-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--gold-gradient);
  color: #744210;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(236,201,75,0.4);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.biz-left {
  padding: 72px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

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

.biz-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-panel);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.biz-logo-icon svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.biz-brand-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
}

.biz-brand-name span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
}

.biz-headline {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.biz-headline .red-hash {
  color: var(--brand-red);
}

.biz-desc {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 440px;
}

.btn-yellow-outline {
  background-color: var(--yellow-tag);
  color: #744210;
  border: 1px solid #ECC94B;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.btn-yellow-outline:hover {
  background-color: #FAF089;
  transform: translateY(-1px);
}

.biz-right {
  background-color: var(--blue-panel);
  background-image: linear-gradient(135deg, rgba(255,255,255,0.08) 25%, transparent 25%),
                    linear-gradient(225deg, rgba(255,255,255,0.08) 25%, transparent 25%),
                    linear-gradient(45deg, rgba(255,255,255,0.08) 25%, transparent 25%),
                    linear-gradient(315deg, rgba(255,255,255,0.08) 25%, transparent 25%);
  background-position: 10px 0, 10px 0, 0 0, 0 0;
  background-size: 20px 20px;
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.biz-bullet {
  display: flex;
  align-items: center;
  gap: 20px;
}

.biz-bullet-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.biz-bullet-icon svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.biz-bullet-text {
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* ==========================================================================
   SECTION 7: BLOG CAROUSEL
   ========================================================================== */
#blog-carousel {
  padding: 40px 0 var(--section-padding-y);
  text-align: center;
}

.carousel-container-wrapper {
  position: relative;
  margin: 0 auto 40px;
  max-width: 1080px;
}

.blog-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 4px 20px;
  scrollbar-width: none; /* Firefox */
}

.blog-slider::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.blog-card {
  min-width: calc(50% - 12px);
  scroll-snap-align: start;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--card-border-radius);
  box-shadow: var(--shadow-card);
  display: flex;
  overflow: hidden;
  text-align: left;
  transition: all 0.3s ease;
}

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

.blog-card-thumb {
  width: 240px;
  background-color: #F0F4F8;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

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

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

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.blog-tag {
  display: inline-block;
  align-self: flex-start;
  color: var(--brand-red);
  border: 1px solid var(--brand-red);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-excerpt {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  color: var(--brand-red);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-read-more:hover {
  text-decoration: underline;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: #1A202C;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 10;
  transition: all 0.2s;
}

.slider-btn:hover {
  background-color: var(--brand-red);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: -24px; }
.slider-next { right: -24px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #CBD5E0;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.dot.active {
  background: var(--text-primary);
  border-color: var(--text-primary);
  width: 28px;
  border-radius: 6px;
}

/* ==========================================================================
   SECTION 8: GET STARTED CTA (DARK SECTION)
   ========================================================================== */
#get-started {
  margin-bottom: var(--section-padding-y);
}

.cta-dark-card {
  background-color: var(--bg-dark-section);
  border-radius: 28px;
  padding: 56px 56px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.22);
  display: grid;
  grid-template-columns: 1.3fr auto;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  gap: 48px;
}

.cta-left {
  padding-bottom: 0;
  z-index: 2;
}

.cta-headline {
  color: white;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 28px;
  line-height: 1.2;
}

.cta-sublabels {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: #E2E8F0;
  font-size: 13.5px;
  font-weight: 600;
}

.cta-divider {
  width: 2px;
  height: 14px;
  background-color: #ECC94B;
}

.cta-right {
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 2;
  flex-wrap: wrap;
}

.qr-box {
  background: white;
  padding: 16px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  flex-shrink: 0;
}

.qr-code-svg {
  width: 110px;
  height: 110px;
  margin-bottom: 8px;
}

.qr-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
}

.store-badges-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 155px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #000000;
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 10px 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.store-btn:hover {
  background: #121212;
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}

.store-btn svg {
  width: 26px;
  height: 26px;
  fill: white;
  flex-shrink: 0;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.store-sub {
  font-size: 9.5px;
  font-weight: 600;
  color: #A0AEC0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.store-main {
  font-size: 15.5px;
  font-weight: 700;
  color: #FFFFFF;
  font-family: var(--font-heading);
}

/* ==========================================================================
   SECTION 9: FOOTER
   ========================================================================== */
#footer {
  background-color: var(--bg-footer);
  border-top: 1px solid var(--border-light);
  padding: 70px 0 0;
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.iso-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-primary);
  align-self: flex-start;
}

.iso-badge svg {
  width: 20px;
  height: 20px;
  fill: #319795;
}

.legal-disclaimers {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 8px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

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

.footer-links a {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--brand-red);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 14.5px;
}

.contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.social-icon:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: white;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 24px 0;
  font-size: 13.5px;
  color: var(--text-muted);
}

.footer-bottom-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Delay modifiers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-headline { font-size: 44px; }
  .section-headline { font-size: 34px; }
  
  .more-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .biz-banner {
    grid-template-columns: 1fr;
  }
  
  .biz-right {
    padding: 48px;
  }
  
  .cta-dark-card {
    grid-template-columns: 1fr;
    padding: 48px 36px 48px;
    gap: 36px;
  }
  
  .cta-right {
    grid-column: span 1;
    justify-content: flex-start;
    padding-bottom: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }
}

@media (max-width: 768px) {
  :root {
    --section-padding-y: 48px;
    --container-padding: 16px;
  }

  .cityscape-left, .cityscape-right {
    display: none; /* Hide background edge art on mobile */
  }

  /* Keep nav buttons visible and beautifully proportioned on mobile */
  .nav-actions {
    gap: 8px;
  }
  .nav-actions .btn-pill-dark {
    padding: 6px 12px;
    font-size: 13px;
    gap: 6px;
  }
  .nav-actions .btn-outline {
    display: inline-flex;
    padding: 6px 12px;
    font-size: 13px;
  }

  #hero {
    padding: 32px 0;
    min-height: auto;
  }

  .hero-headline {
    font-size: 34px;
    letter-spacing: -0.5px;
  }

  .cursive-text {
    font-size: 26px;
    top: -22px;
  }

  .hero-subline {
    font-size: 17px;
    margin-bottom: 28px;
  }

  .phone-input-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .phone-input-group .input-field-wrapper {
    flex: 0 0 auto;
    width: 100%;
    height: 52px;
  }

  .phone-input-group .btn-primary {
    width: 100%;
    height: 52px;
  }

  .platform-container {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .platform-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .platform-tabs {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
  }

  .tab-divider {
    display: none;
  }

  .promo-grid, .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .promo-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }

  .promo-icon-right {
    align-self: flex-end;
    width: 56px;
    height: 56px;
  }
  .promo-icon-right svg {
    width: 28px;
    height: 28px;
  }

  .section-headline {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .feature-card {
    padding: 24px 20px 0;
  }
  .feature-card-title {
    font-size: 21px;
  }

  .more-features-card {
    padding: 28px 18px;
  }

  /* Defaulter Shield Banner mobile layout fix */
  .biz-banner {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
  }
  .biz-tag {
    position: relative;
    top: 0;
    left: 0;
    margin: 20px 20px 0;
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
  }
  .biz-left {
    padding: 20px 20px 32px;
  }
  .biz-headline {
    font-size: 26px;
  }
  .biz-desc {
    font-size: 15px;
  }
  .btn-yellow-outline {
    width: 100%;
    text-align: center;
  }

  .biz-right {
    padding: 32px 20px;
    gap: 20px;
  }
  .biz-bullet-text {
    font-size: 18px;
  }

  .blog-card {
    min-width: 86%;
    flex-direction: column;
  }

  .blog-card-thumb {
    width: 100%;
    height: 180px;
  }

  .cta-dark-card {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    border-radius: 20px;
  }
  .cta-headline {
    font-size: 30px;
  }

  .cta-right {
    grid-column: span 1;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0;
    margin-top: 28px;
  }
  .qr-box {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

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

  .footer-bottom-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .brand-text {
    font-size: 20px;
  }
  .logo-book-icon {
    width: 28px;
    height: 32px;
  }
  .nav-actions .btn-pill-dark {
    padding: 6px 10px;
    font-size: 12px;
  }
  .nav-actions .btn-outline {
    padding: 6px 10px;
    font-size: 12px;
  }

  .hero-headline {
    font-size: 28px;
  }
  .cursive-text {
    font-size: 22px;
    top: -18px;
  }
  .caret-symbol {
    font-size: 20px;
  }
  .hero-subline {
    font-size: 15px;
  }

  .section-headline {
    font-size: 24px;
  }
  .platform-title {
    font-size: 19px;
  }

  .store-badges-row {
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   PREMIUM MICRO-ANIMATIONS (IDLE, HOVER, CLICK, NAVIGATE, HOLD, SCROLL)
   ========================================================================== */

/* 1. Page Load & Navigate Fade-In */
body {
  animation: pageFadeIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageFadeIn {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* 2. Top Scroll Progress Indicator */
#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--brand-red), #ECC94B, var(--blue-accent));
  width: 0%;
  z-index: 999999;
  transition: width 0.08s ease-out;
  box-shadow: 0 0 12px rgba(217, 64, 64, 0.6);
  pointer-events: none;
}

/* 3. Infinite Gentle Idle Floating (Illustrations & Mockups) */
@keyframes floatIdle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.promo-icon-right svg,
.biz-right img,
.logo-book-icon {
  animation: floatIdle 4.5s ease-in-out infinite;
}

/* 4. Subtle Pulse Glow on Primary Buttons */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 14px rgba(217, 64, 64, 0.35); }
  50% { box-shadow: 0 8px 24px rgba(217, 64, 64, 0.65), 0 0 10px rgba(236, 201, 75, 0.3); }
}

.btn-primary {
  animation: pulseGlow 3s infinite ease-in-out;
  position: relative;
  overflow: hidden;
}

/* 5. Sheen / Shine Glint Sweep on Buttons */
.btn-primary::after, .btn-dl-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: none;
}

.btn-primary:hover::after, .btn-dl-primary:hover::after {
  animation: sheenSweep 0.8s ease;
}

@keyframes sheenSweep {
  100% { left: 200%; }
}

/* 6. Premium Hover Elevation (Cards) */
.promo-card, .feature-card, .more-features-card, .dl-card, .blog-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.promo-card:hover, .feature-card:hover, .more-features-card:hover, .dl-card:hover, .blog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.13);
  border-color: rgba(217, 64, 64, 0.35);
}

/* 7. On-Click & Hold Tactile Compression (Press State) */
button, .btn-primary, .btn-outline, .btn-pill-dark, .store-btn, .store-badge-mini, .btn-dl-primary, .btn-dl-dark, .btn-yellow-outline {
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

button:active, .btn-primary:active, .btn-outline:active, .btn-pill-dark:active, .store-btn:active, .store-badge-mini:active, .btn-dl-primary:active, .btn-dl-dark:active, .btn-yellow-outline:active {
  transform: scale(0.94) !important;
  filter: brightness(0.92);
}

/* 8. Input Hold / Focus Breathing Glow */
@keyframes focusBreathing {
  0%, 100% { box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.45); }
}

.input-field-wrapper:focus-within {
  animation: focusBreathing 2.2s infinite ease-in-out;
  border-color: var(--blue-accent);
}

/* 9. Social Icon Springy Rotation on Hover */
.social-icon {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease, color 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.18) rotate(10deg);
}

/* 10. Click Ripple Span Animation */
.ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: rippleExpand 0.6s linear;
  pointer-events: none;
}

@keyframes rippleExpand {
  to { transform: scale(4); opacity: 0; }
}

/* 11. Codemind Studio Developer Credit Badge */
.codemind-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.codemind-link {
  color: var(--brand-red);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(217, 64, 64, 0.08);
  display: inline-block;
}

.codemind-link:hover {
  background: var(--brand-red);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 64, 64, 0.3);
}
