/* 
  VetNow Landing Page Stylesheet
  Premium, modern, and fully responsive layout.
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- Design Tokens --- */
:root {
  --primary-dark: #070e1b;
  --primary-navy: #0a192f;
  --primary-blue: #0052cc;
  --primary-blue-hover: #0043a4;
  --accent-blue: #00d2ff;
  --bg-light: #f8fafc;
  --bg-ice: #f0f7ff;
  --text-dark: #0f172a;
  --text-light: #f8fafc;
  --text-muted: #64748b;
  --text-muted-light: #94a3b8;
  --success: #10b981;
  --warning: #f59e0b;
  --border-color: #e2e8f0;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-phone: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

button, .btn {
  font-family: var(--font-heading);
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

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

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

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

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

.section-dark {
  background-color: var(--primary-dark);
  color: var(--text-light);
}

.section-dark h2, .section-dark h3 {
  color: var(--text-light);
}

.section-title-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-blue);
  background-color: var(--bg-ice);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-dark .section-tag {
  color: var(--accent-blue);
  background-color: rgba(0, 210, 255, 0.1);
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.section-dark .section-subtitle {
  color: var(--text-muted-light);
}

/* --- Button Styles --- */
.btn-primary {
  background-color: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 82, 204, 0.4);
}

.btn-secondary {
  background-color: var(--bg-ice);
  color: var(--primary-blue);
}

.btn-secondary:hover {
  background-color: #e0efff;
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: var(--text-dark);
  background-color: var(--bg-light);
}

.btn-dark {
  background-color: #ffffff;
  color: var(--primary-navy);
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
}

.btn-dark:hover {
  background-color: #f1f5f9;
  transform: translateY(-2px);
}

/* App Store Buttons */
.download-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  background-color: #000000;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  border: 1px solid #333;
  transition: var(--transition-normal);
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: #666;
  background-color: #111111;
}

.store-badge svg {
  width: 24px;
  height: 24px;
  margin-right: 0.75rem;
}

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

.badge-text span {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #a0aec0;
  line-height: 1;
}

.badge-text strong {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}

/* --- Header / Navigation --- */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
}

header.scrolled {
  position: fixed;
  background-color: rgba(7, 14, 27, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #ffffff;
}

.logo span {
  color: var(--accent-blue);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #ffffff;
}

/* --- Hero Section --- */
.hero {
  background: radial-gradient(circle at top right, rgba(0, 82, 204, 0.3) 0%, rgba(7, 14, 27, 0.95) 100%), var(--primary-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 3.5rem;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 10;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-blue);
  margin-bottom: 2rem;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--success);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

.hero h1 {
  font-size: 3.75rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.hero h1 span {
  background: linear-gradient(to right, #ffffff, var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted-light);
  margin-bottom: 1.5rem;
  max-width: 550px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.trust-avatars {
  display: flex;
}

.trust-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--primary-dark);
  margin-left: -8px;
}

.trust-avatars img:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

.trust-text strong {
  color: #ffffff;
}

.hero-mockups {
  position: relative;
  height: 580px;
  width: 100%;
}

.hero-mockups .phone-container-1 {
  position: absolute;
  top: 0;
  right: 15%;
  transform: rotate(-5deg) scale(0.95);
  z-index: 2;
  transition: var(--transition-slow);
}

.hero-mockups .phone-container-2 {
  position: absolute;
  bottom: 0;
  left: 10%;
  transform: rotate(10deg) scale(0.85);
  z-index: 1;
  opacity: 0.85;
  transition: var(--transition-slow);
}

.hero-mockups:hover .phone-container-1 {
  transform: rotate(0deg) translateY(-10px) scale(1);
}

.hero-mockups:hover .phone-container-2 {
  transform: rotate(5deg) translateY(10px) scale(0.9);
  opacity: 1;
}

/* --- High-Fidelity CSS Phone Mockup System --- */
.phone-mockup {
  width: 290px;
  height: 580px;
  background-color: #000000;
  border-radius: 40px;
  padding: 11px;
  box-shadow: var(--shadow-phone);
  border: 4px solid #2d3748;
  position: relative;
  user-select: none;
}

/* Phone Bezel elements */
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 25px;
  background-color: #000000;
  border-radius: 20px;
  z-index: 50;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  color: var(--text-dark);
}

.phone-screen img.screenshot {
  width: 100%;
  height: 106%;
  margin-top: -6%;
  object-fit: cover;
  display: block;
}

/* --- App Interface Styling Inside Phone (Mockups) --- */
.app-header {
  padding: 2.25rem 1rem 1rem 1rem;
  background: var(--primary-navy);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-profile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.app-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--accent-blue);
  border: 1.5px solid #ffffff;
}

.app-profile-text h4 {
  font-size: 0.75rem;
  color: #ffffff;
  font-weight: 600;
}

.app-profile-text p {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
}

.app-notification-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.app-body {
  padding: 1rem;
  flex: 1;
  overflow-y: auto;
  background-color: #f7fafc;
}

/* App: Welcome Banner */
.app-welcome-card {
  background: linear-gradient(135deg, var(--primary-blue), #1e3a8a);
  color: #ffffff;
  padding: 1rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.app-welcome-card h3 {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.app-welcome-card p {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
}

.app-welcome-card button {
  padding: 0.35rem 0.75rem;
  font-size: 0.65rem;
  border-radius: 8px;
  background-color: var(--accent-blue);
  color: var(--primary-navy);
}

/* App: Vet grid */
.app-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-section-title a {
  font-size: 0.65rem;
  color: var(--primary-blue);
}

.app-vets-list {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.app-vet-card-small {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem;
  min-width: 100px;
  text-align: center;
  flex-shrink: 0;
}

.app-vet-card-small img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  object-fit: cover;
}

.app-vet-card-small h5 {
  font-size: 0.7rem;
  margin-bottom: 0.15rem;
}

.app-vet-card-small p {
  font-size: 0.55rem;
  color: var(--text-muted);
}

/* App: Category buttons */
.app-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.app-category-item {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem 0.25rem;
  text-align: center;
}

.app-category-item .icon {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  display: block;
}

.app-category-item span {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* App: Pet Profile view */
.app-pet-profile-header {
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: var(--bg-ice);
  border-radius: 0 0 24px 24px;
}

.app-pet-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  margin: 0 auto 0.75rem auto;
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-md);
}

.app-pet-profile-header h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.app-pet-profile-header p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.app-pet-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
  background: #ffffff;
  border-radius: 12px;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
}

.app-pet-stat-item {
  text-align: center;
}

.app-pet-stat-item span {
  font-size: 0.55rem;
  color: var(--text-muted);
  display: block;
}

.app-pet-stat-item strong {
  font-size: 0.75rem;
  color: var(--text-dark);
}

/* App: Active Call / Chat UI */
.app-chat-window {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.app-chat-header {
  padding: 2.25rem 1rem 1rem 1rem;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.app-chat-header .back-btn {
  font-size: 0.95rem;
  cursor: pointer;
}

.app-chat-header h4 {
  font-size: 0.8rem;
}

.app-chat-header p {
  font-size: 0.6rem;
  color: var(--success);
  font-weight: 600;
}

.app-chat-body {
  flex: 1;
  padding: 1rem;
  background-color: #f7fafc;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chat-bubble {
  padding: 0.75rem 1rem;
  border-radius: 16px;
  max-width: 80%;
  font-size: 0.7rem;
  line-height: 1.4;
}

.chat-bubble.doctor {
  background-color: #ffffff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--border-color);
}

.chat-bubble.user {
  background-color: var(--primary-blue);
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.app-chat-video-preview {
  margin-top: auto;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 100px;
  background-color: #2d3748;
}

.app-chat-video-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.app-chat-video-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.6);
  padding: 2px 6px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 0.55rem;
}

.app-chat-input-bar {
  padding: 0.75rem 1rem;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.app-chat-input-bar input {
  flex: 1;
  border: 1px solid var(--border-color);
  padding: 0.5rem;
  border-radius: 20px;
  font-size: 0.65rem;
  outline: none;
}

.app-chat-input-bar button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  color: #ffffff;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* App: Navigation tab bar */
.app-nav-bar {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  height: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.app-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-muted);
}

.app-nav-item.active {
  color: var(--primary-blue);
}

.app-nav-item span.icon {
  font-size: 1.1rem;
}

.app-nav-item span.label {
  font-size: 0.55rem;
  font-weight: 500;
}

/* App: Insurance card details inside phone */
.app-insurance-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.insurance-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.insurance-logo span {
  color: var(--accent-blue);
}

.insurance-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.insurance-status span {
  font-size: 0.6rem;
  text-transform: uppercase;
  font-weight: 700;
}

.insurance-status .active-badge {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
  padding: 2px 8px;
  border-radius: 4px;
}

.insurance-progress {
  height: 6px;
  background-color: #edf2f7;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.insurance-progress-fill {
  width: 75%;
  height: 100%;
  background: linear-gradient(to right, var(--primary-blue), var(--accent-blue));
}

.insurance-limit {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: var(--text-muted);
}

.insurance-limit strong {
  color: var(--text-dark);
}

/* --- Partner Logos Section --- */
.partners {
  padding: 2.5rem 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
}

.partners-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.partner-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition-fast);
}

.partner-logo:hover {
  color: var(--text-muted);
}

.partner-logo-icon {
  font-size: 1.4rem;
}

/* --- Intro/Features Overview Section --- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.intro-image-wrapper {
  position: relative;
}

.intro-image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-ice) 0%, rgba(240, 247, 255, 0.1) 100%);
  border-radius: 24px;
  z-index: 1;
}

.intro-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  object-fit: cover;
  display: block;
}

.intro-floating-card {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border-color);
  animation: float 4s ease-in-out infinite;
}

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

.intro-floating-card .icon-circle {
  width: 44px;
  height: 44px;
  background-color: var(--success);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.intro-floating-card-text h4 {
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.intro-floating-card-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.intro-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.intro-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.intro-feature-item svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.intro-feature-item span {
  font-weight: 500;
  font-size: 0.95rem;
}

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

.feature-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 82, 204, 0.15);
}

.feature-card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--bg-ice);
  color: var(--primary-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.75rem;
  transition: var(--transition-normal);
}

.feature-card:hover .feature-card-icon {
  background-color: var(--primary-blue);
  color: #ffffff;
  transform: rotate(5deg);
}

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

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.features-showcase {
  background: radial-gradient(circle at bottom left, rgba(0, 82, 204, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 32px;
  padding: 4rem;
  border: 1px solid var(--border-color);
  gap: 3rem;
}

.features-showcase-content {
  max-width: 450px;
}

.features-showcase-content h3 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.features-showcase-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.features-showcase-mockup {
  position: relative;
}

.features-showcase-mockup::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: -1;
}

/* --- "3 Simple Steps" Section --- */
.steps-layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: relative;
}

.steps-layout::before {
  content: '';
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--border-color) 100%);
  z-index: 1;
}

.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.step-row:nth-child(even) .step-text-col {
  grid-column: 2;
}

.step-row:nth-child(even) .step-mockup-col {
  grid-column: 1;
  grid-row: 1;
}

.step-text-col {
  max-width: 480px;
}

.step-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 4rem;
  line-height: 1;
  color: rgba(0, 82, 204, 0.15);
  margin-bottom: 1rem;
}

.step-text-col h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.step-text-col p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.step-mockup-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-mockup-wrapper {
  position: relative;
}

.step-mockup-wrapper::before {
  content: '';
  position: absolute;
  width: 140%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  top: 10%;
  left: -20%;
  z-index: -1;
  border-radius: 50%;
}

/* --- Features Carousel Showcase --- */
.showcase-carousel-section {
  overflow: hidden;
  background: linear-gradient(135deg, #070e1b 0%, #0c1c38 100%);
}

.carousel-title-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.carousel-track-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 2rem 0;
}

.carousel-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: scroll 40s linear infinite;
  padding: 0 2rem;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1.25rem)); }
}

.carousel-card {
  perspective: 1000px;
}

.carousel-card .phone-mockup {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.carousel-card:hover .phone-mockup {
  transform: translateY(-15px) rotateY(-5deg) rotateX(5deg);
  box-shadow: 0 30px 60px -15px rgba(0, 210, 255, 0.35);
}

/* --- Insurance Section --- */
.insurance-section .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.insurance-image-col {
  display: flex;
  justify-content: center;
  position: relative;
}

.insurance-image-col::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 90%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  top: 5%;
  z-index: -1;
}

.insurance-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.insurance-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.insurance-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.insurance-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.insurance-list-item .check-circle {
  width: 24px;
  height: 24px;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.insurance-list-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.insurance-list-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* --- Pricing Section --- */
.pricing-section {
  background: radial-gradient(circle at center, rgba(0, 82, 204, 0.03) 0%, rgba(255, 255, 255, 0) 100%), #ffffff;
}

.pricing-cards-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.pricing-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 28px;
  width: 100%;
  max-width: 440px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -15px rgba(0, 82, 204, 0.15);
}

.pricing-card::before {
  content: 'POPULAR';
  position: absolute;
  top: 25px;
  right: -35px;
  background-color: var(--primary-blue);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.35rem 2.5rem;
  transform: rotate(45deg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.pricing-card-header {
  margin-bottom: 2rem;
  text-align: center;
}

.pricing-card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.pricing-price span {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  list-style: none;
}

.pricing-features-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.pricing-features-item svg {
  color: var(--success);
  flex-shrink: 0;
}

.pricing-features-item.disabled {
  color: var(--text-muted-light);
  text-decoration: line-through;
}

.pricing-features-item.disabled svg {
  color: var(--text-muted-light);
}

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

/* --- Testimonials Section --- */
.testimonials-section {
  background-color: var(--bg-light);
  overflow: hidden;
}

.testimonials-slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 300%; /* 3 slides */
}

.testimonial-slide {
  width: 33.3333%;
  padding: 1rem;
  flex-shrink: 0;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  text-align: center;
}

.testimonial-stars {
  color: var(--warning);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.testimonial-user-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testimonial-nav-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-dot.active {
  background-color: var(--primary-blue);
  width: 24px;
  border-radius: 100px;
}

/* --- Bottom CTA Section --- */
.bottom-cta {
  background: radial-gradient(circle at top right, rgba(0, 82, 204, 0.4) 0%, rgba(7, 14, 27, 0.95) 100%), var(--primary-dark);
  padding: 4.5rem 0 0 0;
  overflow: hidden;
  color: #ffffff;
}

.bottom-cta .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.bottom-cta-content {
  padding-bottom: 4.5rem;
}

.bottom-cta h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.bottom-cta p {
  color: var(--text-muted-light);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.bottom-cta-mockups {
  height: 480px;
  position: relative;
}

.bottom-cta-mockups .phone-1 {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 3;
}

.bottom-cta-mockups .phone-2 {
  position: absolute;
  bottom: -120px;
  left: 15%;
  transform: rotate(-12deg) scale(0.85);
  z-index: 2;
  opacity: 0.85;
}

.bottom-cta-mockups .phone-3 {
  position: absolute;
  bottom: -120px;
  right: 15%;
  transform: rotate(12deg) scale(0.85);
  z-index: 1;
  opacity: 0.85;
}

/* --- Footer --- */
footer {
  background-color: #070b13;
  color: var(--text-muted-light);
  padding: 3.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 2.5rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

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

.social-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted-light);
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--primary-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.95rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* --- Scroll Animation Classes --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .hero .container { gap: 2rem; }
  .hero-mockups { height: 480px; }
  .hero-mockups .phone-mockup { width: 240px; height: 480px; padding: 9px; border-radius: 32px; }
  .hero-mockups .phone-mockup::before { width: 90px; height: 20px; top: 15px; }
  .hero-mockups .phone-screen { border-radius: 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-layout::before { left: 20px; }
  .step-row { grid-template-columns: 1fr; gap: 3rem; }
  .step-row:nth-child(even) .step-text-col { grid-column: 1; }
  .step-row:nth-child(even) .step-mockup-col { grid-column: 1; grid-row: 2; }
  .step-text-col { max-width: 100%; padding-left: 50px; }
  .step-number { font-size: 3.5rem; }
  .step-mockup-col { justify-content: flex-start; padding-left: 50px; }
  .insurance-section .container { grid-template-columns: 1fr; gap: 3rem; }
  .insurance-image-col { grid-row: 2; }
  .bottom-cta .container { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .bottom-cta-content { padding-bottom: 0; display: flex; flex-direction: column; align-items: center; }
  .bottom-cta-mockups { height: 400px; }
  .bottom-cta-mockups .phone-mockup { width: 220px; height: 440px; }
  .bottom-cta-mockups .phone-1 { bottom: -40px; }
  .bottom-cta-mockups .phone-2 { bottom: -70px; left: 10%; }
  .bottom-cta-mockups .phone-3 { bottom: -70px; right: 10%; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .nav-links { display: none; } /* Could build hamburger menu but standard is static link or CTA */
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-cta { align-items: center; }
  .hero-mockups { display: none; } /* Hide complicated mockups on small screens for readability */
  .intro { grid-template-columns: 1fr; gap: 3rem; }
  .features-grid { grid-template-columns: 1fr; }
  .features-showcase { grid-template-columns: 1fr; padding: 2rem; }
  .features-showcase-content { max-width: 100%; text-align: center; }
  .features-showcase-mockup { display: flex; justify-content: center; }
  .testimonial-card { padding: 2rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* --- Privacy Policy Page Styles --- */
.privacy-hero {
  background: radial-gradient(circle at 80% 20%, rgba(0, 210, 255, 0.15) 0%, transparent 50%), linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  padding: 8rem 0 4rem 0;
  text-align: center;
  color: #ffffff;
}

.privacy-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

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

.privacy-content-section {
  padding: 4rem 0 6rem 0;
  background-color: var(--bg-light);
}

.privacy-card {
  background: #ffffff;
  padding: 3.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  max-width: 900px;
  margin: 0 auto;
}

.privacy-card h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 0.5rem;
}

.privacy-card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-blue);
  border-radius: 2px;
}

.privacy-card h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.privacy-card p {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.privacy-card ul {
  list-style-type: none;
  margin-bottom: 1.5rem;
  padding-left: 0.5rem;
}

.privacy-card li {
  color: #475569;
  font-size: 1.05rem;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.privacy-card li::before {
  content: "•";
  color: var(--primary-blue);
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.privacy-card .last-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

@media (max-width: 768px) {
  .privacy-hero {
    padding: 7rem 0 3rem 0;
  }
  .privacy-hero h1 {
    font-size: 2.25rem;
  }
  .privacy-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
}

/* --- Delete Account Page Styles --- */
.delete-account-hero {
  background: radial-gradient(circle at 80% 20%, rgba(239, 68, 68, 0.15) 0%, transparent 50%), linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  padding: 8rem 0 4rem 0;
  text-align: center;
  color: #ffffff;
}

.delete-account-hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

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

.delete-account-section {
  padding: 4rem 0 6rem 0;
  background-color: var(--bg-light);
}

.delete-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  max-width: 650px;
  margin: 0 auto;
}

.wizard-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.wizard-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
  transform: translateY(-50%);
}

.wizard-step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid var(--border-color);
  color: var(--text-muted);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
  transition: var(--transition-normal);
}

.wizard-step.active {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.15);
}

.wizard-step.completed {
  background-color: var(--success);
  border-color: var(--success);
  color: #ffffff;
}

.step-panel {
  display: none;
}

.step-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.phone-input-wrapper {
  display: flex;
  gap: 0.75rem;
}

.country-code {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background-color: var(--bg-light);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  font-size: 1rem;
  font-family: var(--font-body);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.15);
}

.btn-danger {
  background-color: #ef4444;
  color: #ffffff;
  width: 100%;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  border-radius: 12px;
}

.btn-danger:hover:not(:disabled) {
  background-color: #dc2626;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-danger:disabled {
  background-color: #fca5a5;
  cursor: not-allowed;
  opacity: 0.7;
}

.user-profile-review {
  background-color: var(--bg-light);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.profile-avatar-wrapper img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: var(--shadow-sm);
}

.profile-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.profile-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.warning-box {
  background-color: #fef2f2;
  border: 1px solid #fee2e2;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: #991b1b;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .delete-card {
    padding: 2rem 1.5rem;
  }
  .user-profile-review {
    flex-direction: column;
    text-align: center;
  }
}


