/* ==========================================================================
   V2 CA-THEMED LIGHT PREMIUM FINTECH THEME
   (Based strictly on Chartered Accountant Logo Colors)
   ========================================================================== */

:root {
  /* Official Chartered Accountant (CA) Logo Colors */
  --ca-navy: #1a3a5c;
  --ca-navy-dark: #0f253d;
  --ca-navy-light: #285482;
  
  --ca-green: #2e7d32;
  --ca-green-dark: #1b5e20;
  --ca-green-light: #43a047;
  
  /* Light & Airy Backgrounds */
  --bg-base: #f8fafc;           /* Crisp off-white */
  --bg-surface: #ffffff;        /* Pure white for cards */
  --bg-surface-hover: #f1f5f9;
  
  /* Highly Readable Typography */
  --text-primary: #0f172a;      /* Deep slate/navy for heavy contrast */
  --text-secondary: #475569;    /* Muted slate for reading text */
  --text-muted: #64748b;
  
  /* Borders and Elegant Shadows */
  --border-light: rgba(26, 58, 92, 0.08); /* Navy-tinted subtle border */
  --border-strong: rgba(26, 58, 92, 0.15);
  
  --shadow-sm: 0 2px 8px rgba(26, 58, 92, 0.04);
  --shadow-md: 0 12px 24px -4px rgba(26, 58, 92, 0.06);
  --shadow-lg: 0 24px 48px -12px rgba(26, 58, 92, 0.1);
  --shadow-glow: 0 10px 25px rgba(46, 125, 50, 0.25); /* CA Green glow */
  
  /* Layout */
  --nav-height: 84px;
  --container-width: 1240px;
  
  /* Fonts */
  --font-sans: 'Inter', -apple-system, sans-serif;
  --font-display: 'Outfit', -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Sophisticated Ambient Background (Light Theme) */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: var(--bg-base);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.glow-1 {
  top: -10%;
  left: -5%;
  width: 50vw;
  height: 50vw;
  background: var(--ca-navy);
  opacity: 0.03; /* Extremely subtle navy wash */
}

.glow-2 {
  bottom: -10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background: var(--ca-green);
  opacity: 0.03; /* Extremely subtle green wash */
}

.glow-3 {
  display: none;
}

.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.015;
  mix-blend-mode: multiply;
}

/* Utilities */
.text-gradient {
  /* Professional CA Navy to CA Green gradient */
  background: linear-gradient(135deg, var(--ca-navy) 0%, var(--ca-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.w-full { width: 100%; }
.mt-auto { margin-top: auto; }
.hidden-mobile { display: flex; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ca-navy-dark);
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--ca-green);
  color: #ffffff;
  border: 1px solid var(--ca-green-dark);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: var(--ca-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(46, 125, 50, 0.3);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--ca-navy);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-base);
  border-color: var(--ca-navy);
  color: var(--ca-navy-dark);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

/* Navbar */
.v2-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 100;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.v2-navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

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

/* Page-level hero and content standardization */
.container {
  width: min(100%, var(--container-width));
  margin: 0 auto;
  padding: 0 2rem;
}

.page-header,
.hero {
  padding: calc(var(--nav-height) + 5rem) 0 5rem;
}

.section {
  padding: 5rem 0;
}

.page-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border-light);
}

.page-header .container,
.hero .container,
.section .container {
  display: grid;
  gap: 2rem;
}

.page-header h1,
.hero-title,
.hero h1 {
  font-size: clamp(2.8rem, 4.2vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  color: var(--ca-navy-dark);
}

.page-header p,
.hero-desc,
.hero p,
.section-desc,
.section .section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 1.75rem;
}

.hero-content,
.page-header .hero-content,
.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge,
.page-header .section-tag,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(46, 125, 50, 0.2);
  color: var(--ca-green-dark);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-actions,
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.page-header h1 + p,
.hero-badge + .hero-desc,
.hero-title + .hero-desc {
  margin-top: 0.75rem;
}

.section-divider {
  height: 1px;
  border: none;
  background: var(--border-light);
  margin: 3rem 0;
}

.main.container {
  padding-bottom: 4rem;
}

.cta-section,
.faq-section,
.benefits-section,
.blog-section,
.about-section,
.modern-contact {
  padding: 4rem 0;
}

.hero .hero-bg-grid,
.hero .hero-glow,
.hero .hero-glow-2,
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero .hero-overlay {
  background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.9) 100%);
}

.hero .hero-bg-grid {
  background: radial-gradient(circle at top left, rgba(46, 125, 50, 0.12), transparent 35%);
}

.hero .hero-glow {
  background: radial-gradient(circle, rgba(46, 125, 50, 0.2), transparent 35%);
}

.hero .hero-glow-2 {
  background: radial-gradient(circle, rgba(26, 58, 92, 0.18), transparent 45%);
}

.hero .hero-visual,
.page-header .hero-visual {
  max-width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--ca-green);
  border-radius: 4px;
  color: white;
  box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ca-navy);
  letter-spacing: -0.02em;
}

.brand-accent {
  color: var(--ca-green);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: var(--ca-navy);
}

/* Hero Section */
.v2-hero {
  padding: calc(var(--nav-height) + 5rem) 2rem 5rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.badge-wrap {
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 9999px;
  font-size: 0.85rem;
  color: var(--ca-green-dark);
  font-weight: 500;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--ca-green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--ca-green);
}

.hero-title {
  font-size: clamp(3.2rem, 5.5vw, 4.8rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-metrics {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 2.5rem;
}

.metric h4 {
  font-size: 2rem;
  color: var(--ca-navy);
  font-family: var(--font-sans);
  font-weight: 600;
}

.metric p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
  font-weight: 500;
}

.metric-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

/* Hero Visual Dashboard */
.hero-visual {
  position: relative;
  width: 100%;
  height: 550px;
}

.dashboard-card {
  background: var(--bg-surface);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  position: absolute;
}

.main-card {
  width: 100%;
  height: 380px;
  top: 40px;
  right: 0;
  z-index: 1;
}

.floating-card-1 {
  width: 260px;
  bottom: 60px;
  left: -40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  animation: float 7s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.95);
}

.floating-card-2 {
  width: 240px;
  top: 160px;
  right: -30px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  animation: float 9s ease-in-out infinite reverse;
  background: rgba(255, 255, 255, 0.95);
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg-base);
  border-radius: 8px;
  border: 1px solid var(--border-light);
  color: var(--ca-navy);
}

.icon-box.green {
  background: rgba(46, 125, 50, 0.1);
  border-color: rgba(46, 125, 50, 0.2);
  color: var(--ca-green);
}

.icon-box.blue {
  background: rgba(26, 58, 92, 0.08);
  border-color: rgba(26, 58, 92, 0.15);
  color: var(--ca-navy);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.chart-mockup {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  height: 180px;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.bar {
  flex: 1;
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: 4px 4px 0 0;
  transition: height 1s ease;
}

.bar.active {
  background: var(--ca-green);
  border: none;
}

.card-info h5 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  color: var(--ca-navy);
}
.card-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Ticker Section */
.v2-ticker {
  padding: 3rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-surface);
  overflow: hidden;
}

.ticker-title {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 600;
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 40s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0 4rem;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.ticker-item:hover {
  opacity: 1;
  color: var(--ca-navy);
}

/* Bento Box Services */
.v2-bento {
  padding: 8rem 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
}

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

.h2-title {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--ca-navy-dark);
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  auto-rows: minmax(320px, auto);
}

.bento-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.bento-card:hover {
  background: var(--bg-surface);
  border-color: var(--ca-navy-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.bento-card.span-2 {
  grid-column: span 2;
  flex-direction: row;
  gap: 3rem;
  padding: 3rem;
}

.bento-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  z-index: 1;
  justify-content: center;
}

.icon-box.large {
  width: 56px;
  height: 56px;
  margin-bottom: 2rem;
  background: rgba(26, 58, 92, 0.05);
  color: var(--ca-navy);
}

.bento-card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  color: var(--ca-navy);
}

.bento-card p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.feature-list i {
  color: var(--ca-green);
  width: 18px;
  height: 18px;
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ca-navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.bento-link i {
  transition: transform 0.3s ease;
  width: 16px;
  height: 16px;
}

.bento-link:hover i {
  transform: translateX(6px);
}

.bento-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mockup-ui {
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  width: 100%;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.ui-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

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

.ui-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.5;
}

.ui-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

.ui-row:last-child {
  border-bottom: none;
}

.ui-line {
  height: 6px;
  background: var(--text-muted);
  opacity: 0.15;
  border-radius: 3px;
}

.w-40 { width: 40%; }
.w-60 { width: 60%; }
.w-30 { width: 30%; }

.ui-badge {
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.ui-badge.success { background: rgba(46, 125, 50, 0.1); color: var(--ca-green-dark); }
.ui-badge.warning { background: rgba(245, 158, 11, 0.15); color: #b45309; }

.bento-card.bg-gradient {
  background: linear-gradient(135deg, rgba(26, 58, 92, 0.05), rgba(46, 125, 50, 0.05));
  border: 1px solid rgba(46, 125, 50, 0.2);
}

/* Packages Section */
.v2-packages {
  padding: 6rem 2rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.packages-grid {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.package-card {
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.package-card:hover {
  border-color: var(--ca-navy);
  box-shadow: var(--shadow-md);
}

.package-card.popular {
  border-color: var(--ca-green);
  background: var(--bg-surface);
  box-shadow: var(--shadow-glow);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ca-green);
  color: white;
  padding: 0.35rem 1.25rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.package-icon {
  width: 48px;
  height: 48px;
  color: var(--ca-navy);
  margin-bottom: 2rem;
}

.package-card h4 {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ca-navy-dark);
}

.package-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.package-card hr {
  border: none;
  border-top: 1px solid var(--border-light);
  margin-bottom: 2rem;
}

.package-card ul {
  list-style: none;
  flex: 1;
  margin-bottom: 3rem;
}

.package-card li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.package-card li i {
  color: var(--ca-green);
  width: 18px;
  height: 18px;
}

/* CTA Section */
.v2-cta {
  padding: 8rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.cta-box {
  background: var(--ca-navy-dark);
  border: 1px solid var(--ca-navy);
  border-radius: 16px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-box .glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.2) 0%, transparent 70%);
  z-index: 0;
}

.cta-box h2, .cta-box p, .cta-box .cta-actions {
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.cta-box p {
  color: #cbd5e1;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

/* Footer */
.v2-footer {
  background: var(--ca-navy-dark);
  padding: 6rem 2rem 2rem;
  color: #f8fafc;
}

.footer-grid {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.v2-footer .brand-text {
  color: #ffffff;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin: 1.5rem 0;
  max-width: 300px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #94a3b8;
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--ca-green-light);
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--ca-green-light);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #94a3b8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-item i {
  color: var(--ca-green-light);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-bottom {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.85rem;
}

.legal-links {
  display: flex;
  gap: 2rem;
}

.legal-links a {
  color: #64748b;
  text-decoration: none;
}

.legal-links a:hover {
  color: #f8fafc;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

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

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc {
    margin: 0 auto 2.5rem;
  }
  .hero-cta-group, .hero-metrics {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 2rem;
  }
  .bento-grid {
    grid-template-columns: 1fr;
    auto-rows: auto;
  }
  .bento-card.span-2 {
    grid-column: span 1;
    flex-direction: column;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .package-card.popular {
    transform: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hidden-mobile { display: none; }
  .hero-title { font-size: 2.5rem; }
  .hero-cta-group { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .v2-ticker { display: none; }
}
