/* ==========================================================================
   VIREO SEO RANK FLICKS - PRODUCTION CSS
   Theme: Elegant Dark (Modern High-Contrast Dark Slate & Emerald)
   Pure CSS3, Zero External Frameworks, Asura Hosting Ready
   ========================================================================== */

:root {
  /* Brand Colors */
  --brand-navy: #0B0F1A;
  --brand-slate-dark: #0B0F1A;
  --brand-slate-card: #161E2E;
  --brand-slate-sub: #0D1322;
  --brand-slate-mid: #1E293B;
  --brand-slate-border: #334155;
  
  --brand-emerald: #10B981;
  --brand-emerald-hover: #34D399;
  --brand-emerald-dark: #059669;
  --brand-emerald-light: rgba(16, 185, 129, 0.12);
  --brand-emerald-border: rgba(16, 185, 129, 0.28);
  --brand-cyan: #38BDF8;
  --brand-cyan-light: rgba(56, 189, 248, 0.12);
  
  /* Neutral Palette (Dark Theme) */
  --bg-body: #0B0F1A;
  --bg-surface: #161E2E;
  --bg-surface-alt: #0D1322;
  --bg-footer: #060B14;
  
  --text-main: #FFFFFF;
  --text-body: #CBD5E1;
  --text-muted: #94A3B8;
  --text-subtle: #64748B;
  
  --border-light: #1E293B;
  --border-subtle: #334155;
  --border-active: #10B981;
  
  /* Elevation & Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 8px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.5), 0 4px 8px -4px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 35px -5px rgba(0, 0, 0, 0.6), 0 8px 16px -6px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 25px rgba(16, 185, 129, 0.18);
  
  /* Typography Scale */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Layout Constraints */
  --container-max: 1200px;
  --container-width: min(var(--container-max), calc(100% - 32px));
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.25s ease-in-out;
}

/* --------------------------------------------------------------------------
   RESET & GLOBAL RULES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--bg-body);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: var(--bg-body);
  color: var(--text-body);
}

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

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Global Container */
.container {
  width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

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

h1 {
  font-size: clamp(2.2rem, 4vw + 1rem, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 3vw + 0.5rem, 2.4rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw + 0.25rem, 1.5rem);
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   UTILITY CLASSES & BUTTONS
   -------------------------------------------------------------------------- */
.section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  position: relative;
  background-color: var(--bg-body);
}

.section-alt {
  background-color: #0E1524;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-dark {
  background-color: var(--bg-body);
  color: var(--text-body);
}

.section-dark h2, .section-dark h3 {
  color: #FFFFFF;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 4vw, 4rem);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-emerald-hover);
  background-color: var(--brand-emerald-light);
  border: 1px solid var(--brand-emerald-border);
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-bottom: 0.85rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-muted);
  line-height: 1.6;
}

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

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
  min-height: 46px;
  border: 1px solid transparent;
}

.btn:focus-visible {
  outline: 2px solid var(--brand-emerald);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--brand-emerald);
  color: #0B0F1A;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background-color: var(--brand-emerald-hover);
  color: #0B0F1A;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--bg-surface);
  color: #FFFFFF;
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--brand-slate-mid);
  border-color: var(--brand-emerald);
  color: var(--brand-emerald-hover);
}

.btn-dark {
  background-color: #0B0F1A;
  color: #FFFFFF;
  border-color: var(--border-subtle);
}

.btn-dark:hover {
  background-color: var(--bg-surface);
  border-color: var(--brand-emerald);
  color: var(--brand-emerald-hover);
}

.btn-phone {
  background-color: var(--bg-surface);
  color: #FFFFFF;
  border-color: var(--border-subtle);
}

.btn-phone:hover {
  background-color: var(--brand-slate-mid);
  border-color: var(--brand-emerald);
  color: var(--brand-emerald-hover);
}

.btn-phone-light {
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-phone-light:hover {
  background-color: rgba(255, 255, 255, 0.16);
  border-color: var(--brand-emerald);
  color: var(--brand-emerald-hover);
}

.btn-lg {
  padding: 0.875rem 1.85rem;
  font-size: 1rem;
  min-height: 50px;
}

/* --------------------------------------------------------------------------
   TOP INFORMATION BAR
   -------------------------------------------------------------------------- */
.topbar {
  background-color: #10B981;
  color: #0B0F1A;
  font-size: 0.8125rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.45rem 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.topbar-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #0B0F1A;
}

.topbar-item svg {
  color: #064E3B;
  flex-shrink: 0;
}

.topbar-item a {
  color: #0B0F1A;
  font-weight: 700;
}

.topbar-item a:hover {
  color: #022C22;
  text-decoration: underline;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: #064E3B;
  color: #D1FAE5;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-phone {
  color: #0B0F1A;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.topbar-phone:hover {
  color: #022C22;
}

/* --------------------------------------------------------------------------
   HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background-color: rgba(11, 15, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.brand-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--brand-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B0F1A;
  font-weight: 900;
  flex-shrink: 0;
}

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

.brand-title {
  font-weight: 800;
  font-size: 1.125rem;
  color: #FFFFFF;
}

.brand-title span {
  color: var(--brand-emerald);
}

.brand-subtitle {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--brand-emerald);
  border-radius: 2px;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background-color: var(--bg-surface);
  color: #FFFFFF;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--brand-emerald);
}

/* Mobile Menu Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 890;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.mobile-nav-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  background-color: var(--bg-surface);
  border-left: 1px solid var(--border-light);
  max-width: 400px;
  margin-left: auto;
  height: calc(100vh - 72px);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  box-shadow: -4px 0 25px rgba(0, 0, 0, 0.6);
}

.mobile-nav-drawer.is-open .mobile-nav-content {
  transform: translateX(0);
}

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

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background-color: var(--bg-surface-alt);
  border: 1px solid var(--border-light);
  display: block;
}

.mobile-nav-link:hover {
  background-color: var(--brand-emerald-light);
  color: var(--brand-emerald-hover);
  border-color: var(--brand-emerald-border);
}

.mobile-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  padding: clamp(3rem, 5vw, 5.5rem) 0 clamp(3.5rem, 6vw, 6rem);
  background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.12) 0%, rgba(56, 189, 248, 0.05) 40%, #0B0F1A 75%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background-color: var(--brand-emerald-light);
  border: 1px solid var(--brand-emerald-border);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-emerald-hover);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-badge svg {
  color: var(--brand-emerald);
}

.hero-title {
  margin-bottom: 1.25rem;
  color: #FFFFFF;
}

.hero-title .highlight {
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(135deg, #34D399 0%, #38BDF8 100%);
  position: relative;
  display: inline-block;
}

.hero-desc {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  width: 100%;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  width: 100%;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
}

.trust-item svg {
  color: var(--brand-emerald);
  flex-shrink: 0;
}

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

.hero-img-wrap {
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border: 1px solid var(--border-light);
  background: var(--bg-surface);
}

/* --------------------------------------------------------------------------
   SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.service-card:hover {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(16, 185, 129, 0.15);
  transform: translateY(-4px);
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--brand-emerald-light);
  color: var(--brand-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  margin-bottom: 1.25rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-body);
  font-weight: 500;
}

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

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-emerald);
}

.service-card-link:hover {
  color: var(--brand-emerald-hover);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   WHY CHOOSE US SECTION
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  transition: all var(--transition-normal);
}

.why-card:hover {
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: var(--shadow-md), 0 0 20px rgba(16, 185, 129, 0.12);
  transform: translateY(-2px);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--brand-emerald-light);
  color: var(--brand-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.why-body p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   SERVICE AREAS SECTION
   -------------------------------------------------------------------------- */
.areas-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
}

.areas-main-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.area-highlight-card {
  background-color: rgba(16, 185, 129, 0.08);
  border: 1px solid var(--brand-emerald-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.area-highlight-card h3 {
  color: var(--brand-emerald-hover);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.areas-tags-container h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.85rem;
}

.area-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.95rem;
  background-color: var(--bg-surface-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
  transition: all var(--transition-fast);
}

.area-tag svg {
  color: var(--brand-emerald);
  flex-shrink: 0;
}

.area-tag:hover {
  background-color: var(--bg-surface);
  border-color: var(--brand-emerald);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

/* --------------------------------------------------------------------------
   OUR PROCESS SECTION
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.process-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.process-card:hover {
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: var(--shadow-md), 0 0 20px rgba(16, 185, 129, 0.12);
  transform: translateY(-2px);
}

.process-step-num {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--brand-emerald-hover);
  background-color: var(--brand-emerald-light);
  border: 1px solid var(--brand-emerald-border);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.process-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  color: #FFFFFF;
}

.process-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item.is-active {
  border-color: var(--brand-emerald);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: var(--bg-surface);
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: #1A2438;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--brand-emerald);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: var(--bg-surface-alt);
}

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

.faq-answer-inner {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--border-light);
}

/* --------------------------------------------------------------------------
   CONTACT / QUOTE SECTION
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: flex-start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-direct-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.contact-direct-card h3 {
  color: #FFFFFF;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.contact-direct-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9375rem;
}

.contact-detail-item svg {
  color: var(--brand-emerald-hover);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-detail-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-subtle);
  display: block;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.contact-detail-val {
  color: #F8FAFC;
  font-weight: 500;
}

.contact-detail-val a:hover {
  color: var(--brand-emerald-hover);
  text-decoration: underline;
}

/* Contact Form */
.form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}

.form-card-header {
  margin-bottom: 1.75rem;
}

.form-card-header h3 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
  color: #FFFFFF;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  background-color: var(--bg-surface-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-emerald);
  background-color: #111827;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.form-select option {
  background-color: #111827;
  color: #FFFFFF;
}

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

.form-hint {
  font-size: 0.75rem;
  color: var(--text-subtle);
  margin-top: 0.35rem;
  display: block;
}

/* Form Status Message */
.form-alert {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-alert.is-success {
  display: block;
  background-color: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34D399;
}

.form-alert.is-error {
  display: block;
  background-color: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #F87171;
}

/* --------------------------------------------------------------------------
   FINAL CTA SECTION
   -------------------------------------------------------------------------- */
.final-cta {
  background: linear-gradient(135deg, #0B0F1A 0%, #161E2E 50%, #0B0F1A 100%);
  color: #FFFFFF;
  padding: clamp(3.5rem, 5vw, 5rem) 0;
  text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.final-cta-inner {
  max-width: 760px;
  margin: 0 auto;
}

.final-cta h2 {
  color: #FFFFFF;
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.final-cta p {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   SOCIAL LINKS SECTION (CENTRALIZED)
   -------------------------------------------------------------------------- */
.social-links-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.social-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-surface);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.social-link-btn:hover {
  background-color: var(--brand-emerald);
  color: #0B0F1A;
  border-color: var(--brand-emerald);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-footer);
  color: var(--text-muted);
  font-size: 0.875rem;
  border-top: 1px solid var(--border-light);
  padding-top: 4rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 3vw, 3rem);
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-light);
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 320px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav-list a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-nav-list a:hover {
  color: var(--brand-emerald-hover);
  text-decoration: underline;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.4;
}

.footer-contact-item svg {
  color: var(--brand-emerald);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
}

.footer-copyright {
  color: var(--text-subtle);
}

.footer-disclaimer {
  color: var(--text-subtle);
  font-size: 0.75rem;
  max-width: 600px;
}

/* --------------------------------------------------------------------------
   DOWNLOAD BANNER (FLOATING / HELPER FOR ASURA ZIP EXPORT)
   -------------------------------------------------------------------------- */
.asura-download-pill {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: var(--bg-surface);
  color: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.asura-download-pill:hover {
  background-color: #0B0F1A;
  border-color: var(--brand-emerald);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.asura-download-btn {
  background-color: var(--brand-emerald);
  color: #0B0F1A;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.asura-download-btn:hover {
  background-color: var(--brand-emerald-hover);
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS (TESTED FOR 1920px -> 375px)
   -------------------------------------------------------------------------- */

/* Large Tablets & Small Desktops (<= 1024px) */
@media screen and (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-content {
    align-items: center;
    text-align: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-trust-bar {
    justify-content: center;
  }
  
  .areas-main-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

/* Standard Tablets & Large Phones (<= 768px) */
@media screen and (max-width: 768px) {
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }
  
  .topbar-info {
    justify-content: center;
    gap: 0.75rem;
  }
  
  .header-inner {
    height: 64px;
  }
  
  .mobile-nav-drawer {
    top: 64px;
  }
  
  .mobile-nav-content {
    height: calc(100vh - 64px);
    max-width: 100%;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

/* Mobile Devices (<= 480px) */
@media screen and (max-width: 480px) {
  .topbar {
    display: none; /* Hide topbar on small screens to prioritize viewport */
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta-group .btn {
    width: 100%;
  }
  
  .final-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .final-cta-buttons .btn {
    width: 100%;
  }
  
  .areas-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .asura-download-pill {
    bottom: 12px;
    right: 12px;
    left: 12px;
    justify-content: space-between;
    border-radius: var(--radius-md);
  }
}

/* Very Small Mobile (<= 375px) */
@media screen and (max-width: 375px) {
  .brand-title {
    font-size: 1rem;
  }
  
  .areas-grid {
    grid-template-columns: 1fr;
  }
}
