/* ==========================================================================
   HygienicTanks — Production Stylesheet
   Modern, High-Trust, Responsive Design System
   ========================================================================== */

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

:root {
  /* High-Trust Light Theme Palette */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-subtle: #f1f5f9;
  
  --accent-primary: #0284c7;        /* Sky Blue */
  --accent-primary-hover: #0369a1;
  --accent-secondary: #2563eb;      /* Royal Blue */
  --accent-secondary-hover: #1d4ed8;
  --accent-green: #16a34a;          /* WhatsApp / Success Green */
  --accent-green-hover: #15803d;
  --accent-red: #dc2626;            /* Alert / Risk Red */
  --accent-amber: #d97706;          /* Star Rating Gold */
  
  --text-primary: #0f172a;          /* Dark Slate */
  --text-secondary: #475569;        /* Neutral Slate */
  --text-muted: #64748b;            /* Sub-labels */
  --text-light: #94a3b8;
  
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-border: #e2e8f0;
  --glass-border-hover: #cbd5e1;
  --card-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
  --card-shadow-hover: 0 12px 30px -4px rgba(15, 23, 42, 0.1), 0 4px 12px -2px rgba(15, 23, 42, 0.05);
  
  --border-radius-xl: 24px;
  --border-radius-lg: 16px;
  --border-radius-md: 10px;
  --border-radius-sm: 6px;
  --border-radius-pill: 9999px;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
}

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

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

body {
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(at 0% 0%, rgba(224, 242, 254, 0.7) 0px, transparent 60%),
    radial-gradient(at 100% 100%, rgba(219, 234, 254, 0.5) 0px, transparent 60%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: 2.85rem; }
h2 { font-size: 2.15rem; }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.15rem; }

p {
  color: var(--text-secondary);
}

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

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

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

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

.section-padding {
  padding: 5rem 0;
}

.bg-white-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

/* Section Header Shared */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(2, 132, 199, 0.08);
  color: var(--accent-primary);
  border: 1px solid rgba(2, 132, 199, 0.2);
  margin-bottom: 1rem;
}

.section-badge.green {
  background: rgba(22, 163, 74, 0.08);
  color: var(--accent-green);
  border-color: rgba(22, 163, 74, 0.2);
}

.section-badge.purple {
  background: rgba(147, 51, 234, 0.08);
  color: #9333ea;
  border-color: rgba(147, 51, 234, 0.2);
}

.section-title {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--border-radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--accent-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
}

.btn-primary:hover {
  background: var(--accent-primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
}

.btn-whatsapp {
  background: var(--accent-green);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
}

.btn-whatsapp:hover {
  background: var(--accent-green-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
}

.btn-outline {
  background: #ffffff;
  color: var(--text-primary);
  border-color: var(--glass-border);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.btn-outline:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: #f0f9ff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

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

/* ==========================================================================
   Independence Day Festive Announcement Bar
   ========================================================================== */

.festive-banner {
  background: linear-gradient(90deg, #ff9933 0%, #ffffff 50%, #138808 100%);
  color: #0f172a;
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.festive-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.festive-badge {
  background: #0f172a;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.15rem 0.6rem;
  border-radius: var(--border-radius-pill);
  letter-spacing: 0.04em;
}

.festive-link {
  color: #000080;
  text-decoration: underline;
  font-weight: 800;
  transition: opacity 0.2s ease;
}

.festive-link:hover {
  opacity: 0.8;
}

.festive-spotlight-section {
  padding: 0 0 3.5rem 0;
}

.festive-spotlight-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: var(--transition-smooth);
}

.festive-spotlight-card:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.festive-spotlight-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.festive-spotlight-bar {
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
  gap: 1rem;
}

.festive-bar-text {
  display: flex;
  flex-direction: column;
}

.festive-bar-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.festive-bar-sub {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.header-top-bar {
  background: #0f172a;
  color: #e2e8f0;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #cbd5e1;
  font-weight: 500;
}

.top-bar-item a {
  color: #cbd5e1;
}

.top-bar-item a:hover {
  color: #38bdf8;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  color: #38bdf8;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.65rem;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border-radius: var(--border-radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.75rem 0;
  transition: var(--transition-smooth);
}

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

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

.brand-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-name .logo-accent {
  color: var(--accent-primary);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.25vw, 1.4rem);
  flex-wrap: nowrap;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-secondary);
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--text-primary);
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 340px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transition: right 0.35s ease;
}

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

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

.drawer-close-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 0.25rem 0.5rem;
}

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

.drawer-link {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.5rem 0;
  border-bottom: 1px dashed #f1f5f9;
}

.drawer-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  padding: 4.5rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: var(--border-radius-pill);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-primary);
  width: fit-content;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1.2;
}

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

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

.hero-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  box-shadow: 0 20px 40px -10px rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
}

.hero-image-wrapper img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--border-radius-lg);
  object-fit: contain;
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--card-shadow-hover);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: floatSlow 4s ease-in-out infinite alternate;
}

@keyframes floatSlow {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

.badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.badge-text-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

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

/* ==========================================================================
   Welcome & Highlights Section
   ========================================================================== */

.welcome-narrative {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 3rem auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.welcome-narrative strong {
  color: var(--text-primary);
}

.welcome-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.highlight-card {
  background: #ffffff;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--glass-border);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-primary);
}

.highlight-card.red-theme::before { background: var(--accent-red); }
.highlight-card.green-theme::before { background: var(--accent-green); }

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

.highlight-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(2, 132, 199, 0.1);
  color: var(--accent-primary);
}

.highlight-card.red-theme .highlight-icon-box {
  background: rgba(220, 38, 38, 0.1);
  color: var(--accent-red);
}

.highlight-card.green-theme .highlight-icon-box {
  background: rgba(22, 163, 74, 0.1);
  color: var(--accent-green);
}

.highlight-title {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.highlight-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   Services Section (Before / After Comparison Cards)
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
}

.service-card-header {
  padding: 1.5rem 1.75rem 1rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
}

.category-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-pill);
  background: #e0f2fe;
  color: var(--accent-primary);
}

.category-tag.green {
  background: #dcfce7;
  color: var(--accent-green);
}

.service-card-title {
  font-size: 1.35rem;
  color: var(--text-primary);
}

.ba-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 200px;
  position: relative;
  border-bottom: 1px solid var(--glass-border);
}

.ba-pane {
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.ba-pane.before-pane {
  background: linear-gradient(135deg, #fff1f2, #ffe4e6);
  border-right: 1px dashed #fecdd3;
}

.ba-pane.after-pane {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.ba-pane.before-pane .ba-label {
  background: var(--accent-red);
  color: #ffffff;
}

.ba-pane.after-pane .ba-label {
  background: var(--accent-green);
  color: #ffffff;
}

.ba-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.ba-status-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.ba-pane.before-pane .ba-status-title { color: #991b1b; }
.ba-pane.after-pane .ba-status-title { color: #166534; }

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

.service-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex-grow: 1;
  justify-content: space-between;
}

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

/* ==========================================================================
   Advantages Section (#why-us)
   ========================================================================== */

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.advantage-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.advantage-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--card-shadow-hover);
}

.advantage-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: rgba(2, 132, 199, 0.25);
}

.advantage-icon {
  font-size: 1.75rem;
}

.advantage-title {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.advantage-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   6-Stage Process Section (#process)
   ========================================================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.process-stage-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: #e0f2fe;
  color: var(--accent-primary);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: var(--border-radius-pill);
  margin-bottom: 1rem;
  width: fit-content;
}

.process-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.process-title {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.process-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Sectors We Serve Section (#sectors)
   ========================================================================== */

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.sector-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.sector-icon {
  width: 60px;
  height: 60px;
  background: #f0f9ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--accent-primary);
}

.sector-title {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.sector-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   Testimonials Section (#testimonials)
   ========================================================================== */

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

.testimonial-carousel {
  position: relative;
  min-height: 250px;
}

.testimonial-slide {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--card-shadow-hover);
  display: none;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-slide.active {
  display: flex;
  opacity: 1;
}

.testimonial-stars {
  color: var(--accent-amber);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
}

.testimonial-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.25rem;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.author-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dot.active {
  background: var(--accent-primary);
  width: 28px;
  border-radius: var(--border-radius-pill);
}

/* ==========================================================================
   Franchise Banner (#franchise)
   ========================================================================== */

.franchise-banner {
  background: linear-gradient(135deg, #e0f2fe 0%, #eff6ff 100%);
  border: 1px solid #bae6fd;
  border-radius: var(--border-radius-xl);
  padding: 3.5rem 3rem;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 15px 35px rgba(2, 132, 199, 0.08);
}

.franchise-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.franchise-title {
  font-size: 2.2rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.franchise-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.franchise-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0.5rem 0;
}

.prop-box {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #bfdbfe;
  border-radius: var(--border-radius-md);
  padding: 1rem;
  text-align: center;
}

.prop-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-primary);
  text-transform: uppercase;
}

.prop-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.franchise-card {
  background: #ffffff;
  border: 1px solid #bae6fd;
  border-radius: var(--border-radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.franchise-card h3 {
  font-size: 1.35rem;
  color: var(--text-primary);
}

.franchise-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding-top: 5rem;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1.1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand .brand-logo img {
  filter: brightness(0) invert(1);
}

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

.footer-brand .brand-name .logo-accent {
  color: #38bdf8;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-badge-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--border-radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

.footer-badge-pill.green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.footer-badge-pill.blue {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
}

.footer-badge-pill.purple {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
}

.footer-col-title {
  font-size: 1.1rem;
  color: #ffffff;
  font-family: var(--font-display);
}

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.92rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: #38bdf8;
  transform: translateX(3px);
  display: inline-block;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: #38bdf8;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: #cbd5e1;
}

.footer-contact-item a:hover {
  color: #38bdf8;
}

.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748b;
}

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

.footer-bottom-links a {
  color: #94a3b8;
}

.footer-bottom-links a:hover {
  color: #38bdf8;
}

/* ==========================================================================
   Mobile Apps Showcase Section (#app)
   ========================================================================== */

.app-showcase-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--border-radius-xl);
  padding: 4rem 3.5rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-showcase-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.app-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.app-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
  width: fit-content;
}

.app-title {
  font-size: 2.35rem;
  color: #ffffff;
  line-height: 1.2;
}

.app-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.65;
}

.app-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 0.75rem 0;
}

.app-feat-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.app-feat-icon {
  font-size: 1.35rem;
  line-height: 1;
  margin-top: 2px;
}

.app-feat-text h4 {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.app-feat-text p {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.45;
}

.app-badges-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-md);
  padding: 0.65rem 1.25rem;
  color: #ffffff;
  transition: var(--transition-smooth);
  text-decoration: none;
  position: relative;
}

.app-store-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #38bdf8;
  color: #ffffff;
  transform: translateY(-2px);
}

.app-store-btn svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.app-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.app-btn-sub {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.05em;
}

.app-btn-main {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.coming-soon-tag {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: #f59e0b;
  color: #0f172a;
  text-transform: uppercase;
  margin-left: 0.25rem;
}

.app-visual-phone {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.phone-mock-icon {
  font-size: 3.5rem;
}

.app-visual-phone h3 {
  color: #ffffff;
  font-size: 1.35rem;
}

.app-visual-phone p {
  color: #94a3b8;
  font-size: 0.88rem;
}

/* ==========================================================================
   Privacy Policy & Terms Page Specific Styles
   ========================================================================== */

.privacy-page-header {
  padding: 4rem 0 3rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--glass-border);
}

.privacy-content-wrapper {
  max-width: 860px;
  margin: 3.5rem auto;
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-xl);
  padding: 3.5rem 3rem;
  box-shadow: var(--card-shadow);
}

.privacy-clause {
  margin-bottom: 2.25rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid #f1f5f9;
}

.privacy-clause:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-clause h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.privacy-clause p, .privacy-clause ul {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.privacy-clause ul {
  margin-top: 0.5rem;
  margin-left: 1.5rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1080px) {
  .hide-on-mobile {
    display: none !important;
  }
  .main-nav, .header-actions .btn-outline {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}

@media (max-width: 1024px) {
  .hero-grid, .franchise-banner, .app-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .welcome-highlights-grid, .advantages-grid, .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .hero-image-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.35rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .welcome-highlights-grid, .advantages-grid, .process-grid, .sectors-grid, .app-features-grid {
    grid-template-columns: 1fr;
  }
  .franchise-props {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .privacy-content-wrapper {
    padding: 2rem 1.5rem;
  }
  .app-showcase-card {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.95rem;
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .ba-container {
    grid-template-columns: 1fr;
  }
  .ba-pane.before-pane {
    border-right: none;
    border-bottom: 1px dashed #fecdd3;
  }
  .franchise-banner {
    padding: 2rem 1.25rem;
  }
  .testimonial-slide {
    padding: 2rem 1.5rem;
  }
}
