/* ==========================================================================
   CHATBOX — OFFICIAL DESIGN SYSTEM & STYLESHEET
   Brand Theme: Electric Emerald / Sky Teal (#0284C7 / #0D9488), Deep Navy (#0F172A), Soft Light (#F8FAFC)
   Typography: Outfit (Headings), Plus Jakarta Sans (Body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0284C7;
  --primary-hover: #0369A1;
  --primary-gradient: linear-gradient(135deg, #0284C7 0%, #0D9488 100%);
  --primary-glow: rgba(2, 132, 199, 0.25);

  --accent-teal: #0D9488;
  --accent-emerald: #10B981;
  
  --bg-main: #F8FAFC;
  --bg-alt: #F0F9FF;
  --bg-white: #FFFFFF;
  --bg-dark: #0F172A;
  --bg-dark-card: #1E293B;
  
  --text-dark: #0F172A;
  --text-muted: #0284C7;
  --text-light: #475569;
  --text-white: #FFFFFF;
  
  --border-color: #E2E8F0;
  --border-focus: #0284C7;
  
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(2, 132, 199, 0.15);
  --shadow-glow: 0 0 35px rgba(2, 132, 199, 0.35);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

a:hover {
  color: var(--primary-hover);
}

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

ul {
  list-style: none;
}

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

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

.section-bg-alt {
  background-color: var(--bg-alt);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Typography Helpers */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: var(--radius-pill);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.75rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 680px;
  margin-bottom: 3rem;
}

.highlight-text {
  background: linear-gradient(135deg, #0284C7 0%, #0D9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--text-white);
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(2, 132, 199, 0.45);
  color: var(--text-white);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-trial {
  background: #E0F2FE;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  font-weight: 700;
}

.btn-trial:hover {
  background: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* Glassmorphism Header Navbar */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(248, 250, 252, 0.98);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.brand-logo img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.725rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Drawer */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-dark);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-dark);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-main);
  z-index: 1001;
  padding: 2rem 1.5rem;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.drawer-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-dark);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.drawer-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 4rem 0 5.5rem 0;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 850px;
  height: 550px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.18) 0%, rgba(248, 250, 252, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: #E0F2FE;
  border: 1px solid #BAE6FD;
  border-radius: var(--radius-pill);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-weight: 900;
}

.hero-subtext {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.playstore-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #0F172A;
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.2);
}

.playstore-badge-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.3);
  color: #FFFFFF;
}

.playstore-badge-btn svg {
  width: 28px;
  height: 28px;
}

.playstore-badge-text {
  display: flex;
  flex-direction: column;
}

.playstore-badge-text span:first-child {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.playstore-badge-text span:last-child {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.1;
}

.hero-stats-pills {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.stat-pill-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.stat-pill-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #E0F2FE;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.stat-pill-info {
  display: flex;
  flex-direction: column;
}

.stat-pill-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.1;
}

.stat-pill-lbl {
  font-size: 0.775rem;
  color: var(--text-light);
}

/* Phone Mockup Frame */
.hero-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  position: relative;
  width: 295px;
  height: 590px;
  background: #0F172A;
  border-radius: 46px;
  border: 10px solid #1E293B;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25), 0 0 40px rgba(2, 132, 199, 0.25);
  overflow: hidden;
  z-index: 2;
  transition: var(--transition);
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
}

.floating-badge {
  position: absolute;
  background: var(--bg-white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-dark);
  z-index: 3;
  animation: float 4s ease-in-out infinite alternate;
  border: 1px solid var(--border-color);
}

.floating-badge-1 {
  top: 12%;
  left: -20px;
  animation-delay: 0s;
}

.floating-badge-2 {
  bottom: 16%;
  right: -25px;
  animation-delay: 1.8s;
}

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

/* Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.3);
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #E0F2FE;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.feature-icon-box.accent-teal {
  background: #CCFBF1;
  color: var(--accent-teal);
}

.feature-icon-box.accent-purple {
  background: #F3E8FF;
  color: #9333EA;
}

.feature-icon-box.accent-amber {
  background: #FEF3C7;
  color: #D97706;
}

.feature-icon-box.accent-rose {
  background: #FFE4E6;
  color: #E11D48;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-highlight-card {
  grid-column: span 3;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: var(--text-white);
  border: 1px solid #334155;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem;
}

.feature-highlight-card h3 {
  color: var(--text-white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-highlight-card p {
  color: #94A3B8;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* Showcase / Screenshots Gallery */
.showcase-slider-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.showcase-item {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.showcase-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.showcase-phone-mock {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  margin-bottom: 1rem;
  background: #0F172A;
}

.showcase-phone-mock img {
  width: 100%;
  height: auto;
  display: block;
}

.showcase-caption {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}

.showcase-subcaption {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* Pricing / Plans Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
}

.plan-name {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.plan-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.plan-currency {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.plan-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}

.plan-period {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 600;
}

.plan-features {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.plan-feature-item svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
}

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

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.35rem;
}

/* CTA Banner Section */
.cta-banner {
  background: linear-gradient(135deg, #0284C7 0%, #0D9488 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  color: var(--text-white);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--text-white);
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

.cta-banner-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Policy & Legal Subpages */
.page-hero {
  background: var(--bg-alt);
  padding: 4rem 0 3rem 0;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.page-hero h1 {
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1rem;
}

.policy-content-wrapper {
  max-width: 900px;
  margin: 3rem auto 0 auto;
  background: var(--bg-white);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  border-bottom: 2px solid var(--bg-alt);
  padding-bottom: 0.5rem;
}

.policy-section h3 {
  font-size: 1.15rem;
  margin: 1.25rem 0 0.5rem 0;
}

.policy-section p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.975rem;
}

.policy-section ul, .policy-section ol {
  margin: 0.75rem 0 1.25rem 1.5rem;
  color: var(--text-light);
}

.policy-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  list-style: disc;
}

/* Contact Cards Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.contact-card.span-full {
  grid-column: span 2;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #E0F2FE;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  font-weight: 700;
}

.contact-details h4 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-top: 0.25rem;
  line-height: 1.4;
}

/* Footer */
.footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid #1E293B;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .brand-logo img {
  border-radius: 10px;
}

.footer-brand .brand-name {
  color: #FFFFFF;
}

.footer-desc {
  margin-top: 1.25rem;
  font-size: 0.925rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: #94A3B8;
  font-size: 0.925rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: #38BDF8;
  transform: translateX(3px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #1E293B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-actions, .hero-stats-pills {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-highlight-card {
    grid-column: span 2;
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .showcase-slider-container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2.15rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-highlight-card {
    grid-column: span 1;
    padding: 2rem;
  }
  
  .showcase-slider-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-card.span-full {
    grid-column: span 1;
  }
  
  .policy-content-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .cta-banner {
    padding: 3rem 1.5rem;
  }
  
  .cta-banner h2 {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
  }
  
  .showcase-slider-container {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .floating-badge {
    display: none;
  }
  
  .phone-frame {
    width: 270px;
    height: 540px;
  }
}
