/* ==========================================================================
   Anandan.com - Modern Aesthetic Stylesheet
   Tailored for High-Converting Freelance Growth Strategist & Performance Marketer
   ========================================================================== */

:root {
  --bg-dark: #07080c;
  --bg-card: rgba(17, 20, 29, 0.75);
  --bg-card-hover: rgba(23, 27, 40, 0.85);
  --bg-card-dark: #0b0d14;
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-focus: rgba(6, 182, 212, 0.4);

  --text-light: #f3f4f6;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --accent-cyan: #06b6d4;
  --accent-indigo: #6366f1;
  --accent-purple: #a855f7;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  --accent-rose: #f43f5e;
  --accent-whatsapp: #25d366;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-glow: 0 0 35px rgba(6, 182, 212, 0.18);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-weight: 700;
  line-height: 1.2;
}

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

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

.section {
  padding: 6rem 0;
  position: relative;
  z-index: 10;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.hidden { display: none !important; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

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

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

/* Glassmorphism Styles */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-card);
}

/* Gradient Text */
.text-gradient-cyan {
  background: linear-gradient(135deg, #38bdf8 0%, #06b6d4 50%, #2dd4bf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #c084fc 0%, #a855f7 50%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-emerald {
  background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-amber {
  background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Ambient Glow Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.glow-top-left {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent 70%);
}

.glow-top-right {
  width: 550px;
  height: 550px;
  top: 50px;
  right: -150px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.35), transparent 70%);
}

.glow-mid-center {
  width: 650px;
  height: 650px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(168, 85, 247, 0.18), transparent 70%);
}

/* Announcement Banner */
.announcement-banner {
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.15), rgba(99, 102, 241, 0.15));
  border-bottom: 1px solid rgba(6, 182, 212, 0.2);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  position: relative;
  z-index: 60;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.banner-link {
  color: var(--accent-cyan);
  font-weight: 600;
  margin-left: 0.5rem;
}

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

/* Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
}

.logo-symbol {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-indigo));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-indigo) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(6, 182, 212, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-glass);
  color: var(--text-light);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-muted);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-cyan);
}

.btn-whatsapp-header {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25d366;
  padding: 0.55rem 1.1rem;
}

.btn-whatsapp-header:hover {
  background: #25d366;
  color: #000;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}

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

.icon-svg, .icon-arrow, .icon-play, .icon-send {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Mobile Nav Toggle */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.mobile-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(11, 13, 20, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 1.5rem;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 0;
}

.mobile-link:hover {
  color: #fff;
}

/* Hero Section */
.hero-section {
  padding: 5rem 0 4rem;
  z-index: 10;
}

.hero-content {
  text-align: center;
  max-width: 960px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.badge-tag {
  color: var(--accent-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Trust Strip */
.trust-strip {
  margin-bottom: 3.5rem;
}

.trust-caption {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.trust-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Metrics Grid */
.metrics-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.metric-card {
  padding: 1.8rem 1.2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-smooth);
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.metric-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.metric-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Trivandrum Advantage Strip */
.local-strip {
  padding: 2rem 0 4rem;
}

.local-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.2rem 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(6, 182, 212, 0.2);
  background: linear-gradient(135deg, rgba(16, 20, 31, 0.9), rgba(6, 182, 212, 0.06));
}

.local-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(6, 182, 212, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.8rem;
}

.local-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.local-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.local-cta {
  flex-shrink: 0;
}

/* Section Common Headers */
.section-header {
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-top: 0.8rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.75rem;
}

.service-card {
  padding: 2.4rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

.hover-lift:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.6);
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #fff;
}

.service-icon-box svg {
  width: 26px;
  height: 26px;
}

.bg-gradient-cyan { background: linear-gradient(135deg, #06b6d4, #0284c7); }
.bg-gradient-emerald { background: linear-gradient(135deg, #10b981, #059669); }
.bg-gradient-purple { background: linear-gradient(135deg, #a855f7, #6366f1); }
.bg-gradient-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.bg-gradient-rose { background: linear-gradient(135deg, #f43f5e, #e11d48); }
.bg-gradient-indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }

.service-title {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}

.service-features li {
  font-size: 0.88rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li::before {
  content: "→";
  color: var(--accent-cyan);
  font-weight: bold;
}

.service-pill {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--accent-cyan);
}

/* Interactive ROI Calculator */
.bg-card-dark {
  background-color: var(--bg-card-dark);
}

.calculator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 3rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(6, 182, 212, 0.25);
  background: linear-gradient(135deg, rgba(17, 20, 29, 0.95), rgba(11, 13, 20, 0.98));
}

.calc-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.calc-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.calc-value-display {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
}

.custom-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #1e293b;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-cyan);
  cursor: pointer;
  box-shadow: 0 0 15px var(--accent-cyan);
  transition: transform 0.2s;
}

.custom-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.6rem;
}

.industry-picker {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.industry-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-light);
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.industry-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.industry-btn.active {
  background: rgba(6, 182, 212, 0.15);
  border-color: var(--accent-cyan);
  color: #fff;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.18);
}

.calculator-results {
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.results-heading {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 0.8rem;
}

.result-metric-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.res-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

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

.res-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.calc-disclaimer {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Case Studies */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.75rem;
}

.case-card {
  padding: 2.4rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

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

.case-tag {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

.case-timeline {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.case-title {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.case-summary {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.case-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 1.2rem 0.8rem;
  margin-bottom: 1.8rem;
  text-align: center;
}

.c-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  display: block;
}

.c-txt {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.case-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.case-pill {
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid var(--border-glass);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3.5rem;
  align-items: center;
}

.profile-card {
  padding: 2.8rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
}

.avatar-holder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06b6d4, #6366f1);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 35px rgba(6, 182, 212, 0.35);
}

.avatar-initials {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
}

.status-indicator {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
}

.status-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.status-core {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid var(--bg-dark);
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

.profile-name {
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
}

.profile-role {
  color: var(--accent-cyan);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.profile-location {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.8rem;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 1.2rem 0;
  margin-bottom: 1.5rem;
}

.p-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  display: block;
  color: #fff;
}

.p-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.profile-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.profile-tags span {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.about-p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.core-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

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

.value-icon {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.value-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Process Steps */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.process-card {
  padding: 2.4rem 1.8rem;
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition-smooth);
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
}

.step-badge {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent-cyan);
  margin-bottom: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  padding: 2.8rem 2.2rem;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.featured-pricing {
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.15);
  background: linear-gradient(135deg, rgba(20, 25, 38, 0.95), rgba(11, 13, 20, 0.98));
  transform: scale(1.03);
}

.popular-ribbon {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-indigo));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
}

.pricing-tier-tag {
  font-size: 0.82rem;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.pricing-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

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

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 2rem;
  min-height: 48px;
}

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

.pricing-features li {
  font-size: 0.9rem;
  color: #e2e8f0;
}

/* FAQ Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-trigger {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent-cyan);
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 1.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-content {
  padding-bottom: 1.5rem;
}

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

/* Contact & Lead Form */
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  padding: 3.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(6, 182, 212, 0.3);
  background: linear-gradient(135deg, rgba(16, 20, 31, 0.95), rgba(11, 13, 20, 0.98));
}

.contact-title {
  font-size: 2.2rem;
  margin: 0.8rem 0 1rem;
}

.contact-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.2rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.c-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.detail-icon {
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-detail-item strong {
  font-size: 0.95rem;
  display: block;
}

.c-detail-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-trust-pill {
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  font-size: 0.82rem;
  color: var(--accent-cyan);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
}

.form-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

.form-input option {
  background: #0f172a;
  color: #fff;
}

.form-toast {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--accent-emerald);
  color: #34d399;
  font-size: 0.9rem;
  text-align: center;
}

/* Footer */
.footer {
  padding: 4rem 0 2rem;
  background: #050608;
}

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

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 1rem 0 0.8rem;
}

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.88rem; }
.text-muted { color: var(--text-muted); }

.footer-nav-col h4 {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: #fff;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

.footer-nav-col a:hover {
  color: var(--accent-cyan);
}

.social-links-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.social-circle:hover {
  background: rgba(6, 182, 212, 0.2);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: var(--accent-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
  z-index: 99;
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.65);
}

.w-icon {
  width: 32px;
  height: 32px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: #11141d;
  color: #fff;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .calculator-container {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-card {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .mobile-drawer.active {
    display: block;
  }
  .local-card {
    flex-direction: column;
    text-align: center;
    padding: 1.8rem;
  }
  .local-cta {
    width: 100%;
  }
  .local-cta .btn {
    width: 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .flex-between {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
  .floating-whatsapp {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 52px;
    height: 52px;
  }
  .w-icon {
    width: 28px;
    height: 28px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}
