/* ===== CSS VARIABLES ===== */
:root {
  --primary: #0d9488;
  --primary-light: #14b8a6;
  --primary-dark: #0f766e;
  --secondary: #f59e0b;
  --accent: #ec4899;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --bg-gradient: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 50%, #fef3c7 100%);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-sm: 0 2px 10px rgba(13, 148, 136, 0.08);
  --shadow-md: 0 10px 30px rgba(13, 148, 136, 0.12);
  --shadow-lg: 0 20px 60px rgba(13, 148, 136, 0.2);
  --shadow-glow: 0 0 40px rgba(13, 148, 136, 0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--bg-gradient);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

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

/* ===== DECORATIVE BACKGROUND ===== */
.bg-decor {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(45deg, #14b8a6, #0d9488);
  top: -100px;
  left: -100px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, #f59e0b, #ec4899);
  top: 30%;
  right: -100px;
  animation-delay: -5s;
}

.blob-3 {
  width: 450px;
  height: 450px;
  background: linear-gradient(45deg, #ec4899, #8b5cf6);
  bottom: 20%;
  left: -100px;
  animation-delay: -10s;
}

.blob-4 {
  width: 350px;
  height: 350px;
  background: linear-gradient(45deg, #14b8a6, #8b5cf6);
  bottom: -100px;
  right: 20%;
  animation-delay: -15s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--dark);
}

.logo-icon {
  font-size: 28px;
  filter: drop-shadow(0 2px 8px rgba(13, 148, 136, 0.3));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong,
.logo-text span:first-child {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-dark);
}

.logo-sub {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.nav-links a {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  transform: translateY(-100%);
  opacity: 0;
  transition: var(--transition);
  z-index: 999;
  border-bottom: 1px solid var(--glass-border);
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu ul {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu a {
  display: block;
  padding: 14px 20px;
  color: var(--gray-700);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-menu a:hover {
  background: var(--gray-100);
  color: var(--primary);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.animate-badge {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(13, 148, 136, 0); }
  100% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-intro {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-700);
  max-width: 750px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(13, 148, 136, 0.5);
}

.glow-btn {
  position: relative;
  overflow: hidden;
}

.glow-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
  filter: blur(10px);
}

.glow-btn:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  color: var(--dark);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: white;
  box-shadow: var(--shadow-md);
}

/* Hero Highlights */
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin-bottom: 60px;
}

.highlight-card {
  padding: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.highlight-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--dark);
}

.highlight-card p {
  font-size: 13px;
  color: var(--gray-500);
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin-bottom: 40px;
}

.stat-card {
  padding: 28px 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

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

.stat-number {
  display: inline-block;
  font-size: 44px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.stat-plus {
  display: inline-block;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-left: 2px;
}

.stat-label {
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 500;
  margin-top: 8px;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 900px;
  margin-bottom: 60px;
}

.trust-indicators span {
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
}

/* Floating Cards */
.floating-cards {
  position: relative;
  height: 100px;
  max-width: 900px;
}

.float-card {
  position: absolute;
  padding: 14px 20px;
  background: white;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  animation: floatCard 6s ease-in-out infinite;
}

.float-1 {
  left: 5%;
  top: 10%;
  animation-delay: 0s;
}

.float-2 {
  left: 35%;
  top: 40%;
  animation-delay: -2s;
}

.float-3 {
  right: 10%;
  top: 20%;
  animation-delay: -4s;
}

.float-icon {
  font-size: 20px;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p {
  font-size: 17px;
  color: var(--gray-500);
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 80px 0;
  position: relative;
}

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

.service-card {
  padding: 36px 30px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1), transparent);
  border-radius: 50%;
  transition: var(--transition);
  opacity: 0;
}

.service-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 148, 136, 0.2);
}

.service-card:hover::before {
  opacity: 1;
  top: -30%;
  right: -30%;
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
  filter: drop-shadow(0 4px 12px rgba(13, 148, 136, 0.3));
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
}

.service-card p {
  color: var(--gray-700);
  margin-bottom: 20px;
  font-size: 15px;
}

.service-features {
  margin-bottom: 20px;
}

.service-features li {
  font-size: 14px;
  color: var(--gray-700);
  padding: 6px 0;
  border-bottom: 1px dashed var(--gray-100);
}

.service-cta {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-cta:hover {
  gap: 12px;
  color: var(--primary);
}

/* ===== PROCESS TIMELINE ===== */
.process-section {
  padding: 80px 0;
  position: relative;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
  position: relative;
}

.timeline-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
  position: relative;
  z-index: 2;
}

.timeline-content {
  flex: 1;
  padding: 28px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.timeline-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--dark);
}

.timeline-content p {
  color: var(--gray-700);
  font-size: 15px;
}

.timeline-connector {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  margin-left: 29px;
  margin-bottom: 12px;
}

/* ===== ARTICLE SECTION ===== */
.article-section {
  padding: 80px 0;
  position: relative;
}

.article-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.article-meta span {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 500;
}

.article-tag {
  background: rgba(13, 148, 136, 0.1) !important;
  color: var(--primary-dark) !important;
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.article-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--glass-border);
}

.article-body {
  max-width: 850px;
}

.article-block {
  margin-bottom: 48px;
}

.article-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  padding-top: 16px;
  position: relative;
}

.article-block h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.article-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 14px;
}

.article-block p {
  color: var(--gray-700);
  font-size: 16.5px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.article-block p:last-child {
  margin-bottom: 0;
}

.article-block strong {
  color: var(--primary-dark);
  font-weight: 600;
}

/* Callout Boxes */
.callout-box, .tip-box, .warning-box {
  padding: 24px 28px;
  border-radius: var(--radius-md);
  margin: 28px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.callout-box {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(13, 148, 136, 0.02));
  border-left: 4px solid var(--primary);
}

.tip-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.02));
  border-left: 4px solid var(--secondary);
}

.warning-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.02));
  border-left: 4px solid #ef4444;
}

.callout-icon, .tip-icon, .warning-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.callout-content strong, .tip-content strong, .warning-content strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  color: var(--dark);
}

.callout-content p, .tip-content p, .warning-content p {
  font-size: 15px;
  color: var(--gray-700);
  margin: 0;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.feature-item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

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

.feature-item span {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
  margin: 0;
}

/* Pros and Cons */
.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.pros, .cons {
  padding: 28px;
  border-radius: var(--radius-md);
}

.pros {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(13, 148, 136, 0.02));
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.cons {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.02));
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.pros h3, .cons h3 {
  font-size: 18px;
  margin-bottom: 14px;
  margin-top: 0;
  color: var(--dark);
}

.pros ul, .cons ul {
  padding: 0;
}

.pros li, .cons li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 15px;
  color: var(--gray-700);
}

.pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.cons li::before {
  content: '⚠';
  position: absolute;
  left: 0;
}

/* Checklist */
.checklist {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  margin: 24px 0;
}

.check-item {
  padding: 12px 16px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  color: var(--gray-700);
  transition: var(--transition);
}

.check-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(4px);
}

.check-item span {
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  font-size: 14.5px;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: rgba(13, 148, 136, 0.04);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
  position: relative;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 148, 136, 0.2);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 80px 0;
  position: relative;
}

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

.testimonial-card {
  padding: 36px 30px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}

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

.testimonial-rating {
  color: var(--secondary);
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.author-initials {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.author-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.author-info span {
  font-size: 13px;
  color: var(--gray-500);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info {
  padding: 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.contact-info h3, .contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--glass-border);
}

.info-item:last-of-type {
  border-bottom: none;
}

.info-icon {
  font-size: 28px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.info-content a, .info-content p {
  color: var(--dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

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

.contact-buttons {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.contact-buttons .btn {
  flex: 1;
  min-width: 140px;
  padding: 14px 24px;
}

/* Contact Form */
.contact-form {
  padding: 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--dark);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: white;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
  margin: 20px 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.footer-logo .logo-icon {
  filter: drop-shadow(0 2px 8px rgba(20, 184, 166, 0.5));
}

.footer-logo .logo-text {
  color: white;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-logo .logo-text span:first-child {
  color: white;
  font-size: 18px;
  font-weight: 800;
}

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

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-col li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 130px 0 60px;
  }

  .hero-highlights, .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .floating-cards {
    display: none;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-connector {
    margin-left: 30px;
    height: 20px;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-highlights, .stats-row {
    grid-template-columns: 1fr;
  }

  .contact-info, .contact-form {
    padding: 28px 20px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .comparison-table {
    font-size: 13px;
  }

  .comparison-table th, .comparison-table td {
    padding: 10px 8px;
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Selection */
::selection {
  background: var(--primary);
  color: white;
}