/* ============================================================
   ARTIFIC TECHNOLOGIES — GLOBAL STYLESHEET
   Reset → Typography → Layout → Components → Sections
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@import 'variables.css';
@import 'animations.css';

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color var(--transition-slow), color var(--transition-slow);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-text);
}

p {
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── Container System ─────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.container-lg {
  max-width: var(--container-lg);
}

.container-2xl {
  max-width: var(--container-2xl);
}

.container-full {
  max-width: 100%;
}

/* ── Section Spacing ──────────────────────────── */
.section {
  padding-block: var(--space-24);
}

.section-sm {
  padding-block: var(--space-16);
}

.section-lg {
  padding-block: var(--space-32);
}

/* ── Gradient Text ────────────────────────────── */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section Badge ────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1-5) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-primary {
  background: var(--gradient-brand-soft);
  color: var(--color-primary);
  border: 1px solid rgba(240, 85, 56, 0.2);
}

.badge-dark {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

/* ── Section Header ───────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--space-16);
}

.section-header .badge {
  margin-bottom: var(--space-5);
}

.section-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: var(--font-extrabold);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
  margin-bottom: var(--space-5);
  line-height: 1.15;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 600px;
  margin-inline: auto;
}

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3-5) var(--space-7);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  letter-spacing: 0.01em;
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(240, 85, 56, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(240, 85, 56, 0.50);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn-sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-xs);
}

/* ── Card Base ────────────────────────────────── */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(240, 85, 56, 0.15);
}

.card-glass {
  background: var(--color-bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* ── ───────────────────────────────────────────── */
/* ── HEADER / NAVIGATION ──────────────────────── */
/* ── ───────────────────────────────────────────── */

#header {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: var(--header-height);
  transition: height var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base),
    backdrop-filter var(--transition-base);

}

#header.scrolled {
  height: var(--header-height-scrolled);
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] #header.scrolled {
  background: rgba(13, 15, 20, 0.90);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-8);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: var(--space-3);
}

.logo img {
  height: 38px;
  width: auto;
}

.logo-svg {
  height: 38px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  background: rgba(240, 85, 56, 0.07);
}

.nav-link .chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.nav-item.has-dropdown:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
  z-index: var(--z-dropdown);
}

.nav-item.has-dropdown {
  position: relative;
}

.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2-5) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.dropdown-link:hover {
  background: var(--gradient-brand-soft);
  color: var(--color-primary);
}

.dropdown-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--gradient-brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dropdown-icon svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
  background: transparent;
}

.theme-toggle:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(240, 85, 56, 0.07);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  width: 18px;
  height: 18px;
}

[data-theme="dark"] .icon-sun {
  display: none;
}

[data-theme="light"] .icon-moon,
.icon-moon {
  display: none;
}

[data-theme="dark"] .icon-moon {
  display: block;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  transition: all var(--transition-fast);
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

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

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

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

/* Mobile Menu Drawer */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  padding-top: var(--header-height);
}

#mobile-menu.is-open {
  display: flex;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.mobile-menu-panel {
  position: relative;
  background: var(--color-bg-card);
  width: 320px;
  margin-left: auto;
  height: 100%;
  overflow-y: auto;
  padding: var(--space-6);
  animation: slideInRight 0.3s ease forwards;
  box-shadow: var(--shadow-2xl);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--color-text);
  transition: all var(--transition-fast);
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-nav-link:hover {
  color: var(--color-primary);
  background: rgba(240, 85, 56, 0.07);
}

.mobile-submenu {
  padding-left: var(--space-4);
  margin-top: var(--space-1);
  display: none;
}

.mobile-submenu.is-open {
  display: block;
}

.mobile-submenu-link {
  display: block;
  padding: var(--space-2-5) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast);
}

.mobile-submenu-link:hover {
  color: var(--color-primary);
}

/* ── ───────────────────────────────────────────── */
/* ── FOOTER ───────────────────────────────────── */
/* ── ───────────────────────────────────────────── */

#footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--space-24);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid var(--color-dark-border);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  margin-bottom: var(--space-5);
}

.footer-logo img {
  height: 40px;
}

.footer-desc {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-6);
}

.footer-socials {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: #fff;
  margin-bottom: var(--space-5);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
  line-height: 1.4;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-6);
  gap: var(--space-4);
}

.footer-copy {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer-bottom-link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}

.footer-bottom-link:hover {
  color: var(--color-primary);
}

/* ── ───────────────────────────────────────────── */
/* ── HERO SECTION ─────────────────────────────── */
/* ── ───────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
  background: var(--gradient-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-mesh {
  position: absolute;
  inset: -20%;
  background: var(--gradient-mesh);
  animation: meshMove 16s ease-in-out infinite;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 85, 56, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 85, 56, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-orb-1 {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(192, 57, 156, 0.12) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite;
}

.hero-orb-2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(240, 85, 56, 0.10) 0%, transparent 70%);
  animation: float 8s ease-in-out 2s infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  padding-block: var(--space-20);
  width: 100%;
}

.hero-left {
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1-5) var(--space-4);
  background: var(--gradient-brand-soft);
  border: 1px solid rgba(240, 85, 56, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-primary);
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-6);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: var(--font-black);
  letter-spacing: var(--tracking-tight);
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.hero-title em {
  font-style: normal;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-10);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-6);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-success);
}

/* Hero Right — Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl), var(--shadow-glow);
  animation: floatSlow 8s ease-in-out infinite;
}

/* Floating Stat Cards */
.hero-stat-card {
  position: absolute;
  background: var(--color-bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  min-width: 140px;
}

.hero-stat-card-1 {
  top: 10%;
  left: -20px;
  animation: float 5s ease-in-out infinite;
}

.hero-stat-card-2 {
  bottom: 20%;
  right: -20px;
  animation: float 6s ease-in-out 1.5s infinite;
}

.hero-stat-card-3 {
  bottom: -10px;
  left: 10%;
  animation: float 4.5s ease-in-out 0.8s infinite;
}

[data-theme="dark"] .hero-stat-card {
  background: rgba(28, 32, 48, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
}

.stat-card-value {
  font-size: var(--text-2xl);
  font-weight: var(--font-extrabold);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-card-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
  font-weight: var(--font-medium);
}

/* ── ───────────────────────────────────────────── */
/* ── STATS BAND ───────────────────────────────── */
/* ── ───────────────────────────────────────────── */
.stats-band {
  background: var(--gradient-brand);
  padding-block: var(--space-12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-number {
  font-size: clamp(var(--text-4xl), 4vw, var(--text-6xl));
  font-weight: var(--font-extrabold);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-sm);
  opacity: 0.8;
  font-weight: var(--font-medium);
  letter-spacing: var(--tracking-wide);
}

.stat-divider {
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* ── ───────────────────────────────────────────── */
/* ── SERVICES SECTION ─────────────────────────── */
/* ── ───────────────────────────────────────────── */
.services-section {
  background: var(--color-bg-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-brand-soft);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(240, 85, 56, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--gradient-brand-soft);
  border: 1px solid rgba(240, 85, 56, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: var(--gradient-brand);
  box-shadow: var(--shadow-glow);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.service-card:hover .service-icon svg {
  color: #fff;
}

.service-card h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 1;
  transition: color var(--transition-fast);
}

.service-card:hover h3 {
  color: var(--color-primary);
}

.service-card p {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  position: relative;
  z-index: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-primary);
  position: relative;
  z-index: 1;
  transition: gap var(--transition-fast);
}

.service-card-link:hover {
  gap: var(--space-3);
}

.service-card-link svg {
  width: 14px;
  height: 14px;
}

/* ── ───────────────────────────────────────────── */
/* ── WHY CHOOSE SECTION ───────────────────────── */
/* ── ───────────────────────────────────────────── */
.why-choose {
  background: var(--color-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.why-feature {
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-bg-card);
  transition: all var(--transition-base);
}

.why-feature:hover {
  border-color: rgba(240, 85, 56, 0.2);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-glow);
}

.why-feature-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.why-feature h4 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-2);
}

.why-feature p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.why-visual {
  position: relative;
}

.why-image {
  width: 100%;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.why-badge-float {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  animation: float 5s ease-in-out infinite;
}

[data-theme="dark"] .why-badge-float {
  background: var(--color-dark-card);
}

.why-badge-float-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-badge-float-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.why-badge-float strong {
  font-size: var(--text-lg);
  font-weight: var(--font-extrabold);
}

.why-badge-float span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ── ───────────────────────────────────────────── */
/* ── INDUSTRIES SECTION ───────────────────────── */
/* ── ───────────────────────────────────────────── */
.industries-section {
  background: var(--color-bg-soft);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.industry-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

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

.industry-card:hover::after {
  transform: scaleX(1);
}

.industry-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: var(--gradient-brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  transition: all var(--transition-base);
}

.industry-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.industry-card:hover .industry-icon {
  background: var(--gradient-brand);
  box-shadow: var(--shadow-glow);
}

.industry-card:hover .industry-icon svg {
  color: #fff;
}

.industry-card h3 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-2);
}

.industry-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ── ───────────────────────────────────────────── */
/* ── SOLUTIONS SECTION ────────────────────────── */
/* ── ───────────────────────────────────────────── */
.solutions-section {
  background: var(--color-dark);
}

.solutions-section .section-title,
.solutions-section .badge {
  color: #fff;
}

.solutions-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.solution-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.solution-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(240, 85, 56, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1-5);
  padding: var(--space-1) var(--space-3);
  background: rgba(240, 85, 56, 0.15);
  border: 1px solid rgba(240, 85, 56, 0.25);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--color-primary-light);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.solution-card h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: #fff;
  margin-bottom: var(--space-3);
}

.solution-card p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
}

.solution-features {
  margin-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.solution-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
}

.solution-feature svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.solution-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-primary-light);
  transition: gap var(--transition-fast);
}

.solution-cta:hover {
  gap: var(--space-3);
}

.solution-cta svg {
  width: 14px;
  height: 14px;
}

/* ── ───────────────────────────────────────────── */
/* ── PROCESS SECTION ──────────────────────────── */
/* ── ───────────────────────────────────────────── */
.process-section {
  background: var(--color-bg-soft);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  font-size: var(--text-xl);
  font-weight: var(--font-extrabold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  box-shadow: var(--shadow-glow);
  border: 4px solid var(--color-bg-soft);
  transition: transform var(--transition-spring);
}

.process-step:hover .step-number {
  transform: scale(1.12);
}

.step-title {
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-2);
}

.step-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ── ───────────────────────────────────────────── */
/* ── TESTIMONIALS ─────────────────────────────── */
/* ── ───────────────────────────────────────────── */
.testimonials-section {
  background: var(--color-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(240, 85, 56, 0.15);
}

.testimonial-quote {
  font-size: var(--text-4xl);
  font-weight: var(--font-black);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-4);
}

.testimonial-text {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
}

.testimonial-stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: #F59E0B;
  fill: #F59E0B;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ── ───────────────────────────────────────────── */
/* ── FAQ SECTION ──────────────────────────────── */
/* ── ───────────────────────────────────────────── */
.faq-section {
  background: var(--color-bg-soft);
}

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.is-open {
  border-color: rgba(240, 85, 56, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: rgba(240, 85, 56, 0.03);
}

.faq-question h3 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-text);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--gradient-brand-soft);
  border: 1px solid rgba(240, 85, 56, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
  transition: transform var(--transition-base);
}

.faq-item.is-open .faq-toggle {
  background: var(--gradient-brand);
  border-color: transparent;
}

.faq-item.is-open .faq-toggle svg {
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ── ───────────────────────────────────────────── */
/* ── CTA SECTION ──────────────────────────────── */
/* ── ───────────────────────────────────────────── */
.cta-section {
  background: var(--gradient-brand);
  position: relative;
  overflow: hidden;
  padding-block: var(--space-24);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  animation: float 7s ease-in-out infinite;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: var(--font-extrabold);
  color: #fff;
  margin-bottom: var(--space-5);
  letter-spacing: var(--tracking-tight);
}

.cta-subtitle {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-10);
  max-width: 560px;
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.cta-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
}

.cta-trust-item svg {
  width: 16px;
  height: 16px;
}

/* ── ───────────────────────────────────────────── */
/* ── CONTACT SECTION (mini) ───────────────────── */
/* ── ───────────────────────────────────────────── */
.contact-strip {
  background: var(--color-bg-soft);
  padding-block: var(--space-16);
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-8);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.contact-item-label {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.contact-item-value {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-text);
}

.contact-item-value a:hover {
  color: var(--color-primary);
}

/* ── ───────────────────────────────────────────── */
/* ── TRUST LOGOS / PARTNERS ───────────────────── */
/* ── ───────────────────────────────────────────── */
.partners-section {
  background: var(--color-bg);
  padding-block: var(--space-12);
  border-bottom: 1px solid var(--color-border);
}

.partners-label {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-10);
}

.partner-logo {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-text-muted);
  opacity: 0.5;
  filter: grayscale(1);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.partner-logo:hover {
  opacity: 1;
  filter: none;
  color: var(--color-text);
}

.partner-logo svg {
  width: 24px;
  height: 24px;
}

/* ── ───────────────────────────────────────────── */
/* ── INNER PAGE — HERO ────────────────────────── */
/* ── ───────────────────────────────────────────── */
.page-hero {
  background: var(--gradient-hero);
  padding-top: calc(var(--header-height) + var(--space-20));
  padding-bottom: var(--space-20);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  opacity: 0.7;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

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

.breadcrumb svg {
  width: 12px;
  height: 12px;
}

.page-hero-title {
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  font-weight: var(--font-extrabold);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.page-hero-subtitle {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  max-width: 640px;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

/* ── ───────────────────────────────────────────── */
/* ── FORM STYLES ──────────────────────────────── */
/* ── ───────────────────────────────────────────── */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3-5) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  color: var(--color-text);
  background: var(--color-bg-card);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(240, 85, 56, 0.12);
}

.form-input.is-error,
.form-textarea.is-error {
  border-color: var(--color-error);
}

.form-error {
  display: none;
  font-size: var(--text-xs);
  color: var(--color-error);
  margin-top: var(--space-1-5);
}

.form-input.is-error~.form-error {
  display: block;
}

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

/* ── ───────────────────────────────────────────── */
/* ── CONTACT PAGE STYLES ──────────────────────── */
/* ── ───────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}

@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: 5fr 7fr;
    gap: var(--space-12);
  }
}

.contact-info-card,
.contact-form-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .contact-info-card,
  .contact-form-card {
    padding: var(--space-10);
  }
}

.contact-method {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  align-items: flex-start;
}

.contact-method:last-child {
  margin-bottom: 0;
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xl);
  background: var(--gradient-brand-soft);
  border: 1px solid rgba(240, 85, 56, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  transition: all var(--transition-spring);
}

.contact-method:hover .contact-method-icon {
  background: var(--gradient-brand);
  color: #fff;
  transform: scale(1.08) translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.contact-method-icon svg {
  width: 20px;
  height: 20px;
}

.contact-method-title {
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-1);
}

.contact-method-value {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-text);
  margin-bottom: var(--space-0-5);
}

.contact-method-value a {
  color: inherit;
  transition: color var(--transition-fast);
}

.contact-method-value a:hover {
  color: var(--color-primary);
}

.contact-method-sub {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  width: 100%;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  padding-bottom: var(--space-2-5);
  border-bottom: 1px dashed var(--color-border);
}

.hours-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-item span:first-child {
  font-weight: var(--font-medium);
}

.hours-item span:last-child {
  font-weight: var(--font-bold);
  color: var(--color-text);
}

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

@media (min-width: 576px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
}

/* ── ───────────────────────────────────────────── */
/* ── UTILITY CLASSES ──────────────────────────── */
/* ── ───────────────────────────────────────────── */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.font-bold {
  font-weight: var(--font-bold);
}

.font-extrabold {
  font-weight: var(--font-extrabold);
}

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

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

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

.text-white {
  color: #fff;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-6 {
  margin-top: var(--space-6);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.sr-only {
  @extend .visually-hidden;
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: var(--z-modal);
  transition: all var(--transition-spring);
}

.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

/* ── ───────────────────────────────────────────── */
/* ── DARK MODE OVERRIDES ──────────────────────── */
/* ── ───────────────────────────────────────────── */
[data-theme="dark"] .services-section,
[data-theme="dark"] .process-section,
[data-theme="dark"] .faq-section {
  background: var(--color-dark-surface);
}

[data-theme="dark"] .industries-section {
  background: var(--color-dark-surface);
}

[data-theme="dark"] .card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .why-feature,
[data-theme="dark"] .industry-card,
[data-theme="dark"] .contact-info-card,
[data-theme="dark"] .contact-form-card {
  background: var(--color-dark-card);
  border-color: var(--color-dark-border);
}

[data-theme="dark"] .stat-card {
  background: var(--color-dark-card);
}

[data-theme="dark"] .hours-item {
  border-bottom-color: var(--color-dark-border);
}

[data-theme="dark"] .contact-method:last-child {
  border-top-color: var(--color-dark-border);
}

/* ── ───────────────────────────────────────────── */
/* ── SCROLL TO TOP ────────────────────────────── */
/* ── ───────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: var(--z-sticky);
  box-shadow: var(--shadow-md);
}

#scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}

#scroll-top:hover {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

#scroll-top svg {
  width: 18px;
  height: 18px;
}

