/* ============================================================
   STYLE.CSS — Main Stylesheet
   Imports variables.css. Contains all component styles.
   ============================================================ */
@import url('./variables.css');

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

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

::selection {
  background: var(--clr-accent);
  color: var(--clr-text-white);
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

/* ============================================================
   SECTION DEFAULTS
   ============================================================ */
.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  position: relative;
  overflow: hidden;
}

.section--bg {
  background-color: var(--clr-bg-secondary);
}

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

/* Section Header */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  margin-bottom: var(--space-6);
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.section-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  color: var(--clr-text);
  margin-bottom: var(--space-6);
  max-width: 720px;
}

.section--dark .section-title {
  color: var(--clr-text-white);
}

.section-description {
  font-size: var(--fs-body);
  color: var(--clr-text-secondary);
  line-height: var(--lh-body);
  max-width: 600px;
}

.section--dark .section-description {
  color: var(--clr-text-white-muted);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-20);
}

.section__header .section-title,
.section__header .section-description {
  margin-left: auto;
  margin-right: auto;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  font-family: var(--ff-primary);
  font-size: var(--fs-btn);
  font-weight: var(--fw-semibold);
  line-height: 1;
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn__icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn__icon {
  transform: translateX(3px);
}

/* Primary Button */
.btn--primary {
  background: var(--gradient-primary);
  color: var(--clr-text-white);
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  background: var(--gradient-primary-hover);
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: translateY(0) scale(0.98);
}

/* Secondary Button */
.btn--secondary {
  background: var(--clr-bg-secondary);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}

.btn--secondary:hover {
  background: var(--clr-bg-tertiary);
  border-color: var(--clr-border-hover);
  transform: translateY(-2px);
}

/* Outline Button */
.btn--outline {
  background: transparent;
  color: var(--clr-text);
  border: 2px solid var(--clr-border);
}

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

/* White Button */
.btn--white {
  background: var(--clr-bg);
  color: var(--clr-primary);
}

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

/* Outline White */
.btn--outline-white {
  background: transparent;
  color: var(--clr-text-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline-white:hover {
  border-color: var(--clr-text-white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Success state */
.btn--success {
  background: var(--clr-success) !important;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3) !important;
}

/* Sizes */
.btn--lg {
  padding: 18px 40px;
  font-size: 17px;
}

.btn--sm {
  padding: 12px 24px;
  font-size: var(--fs-small);
}

/* Full width */
.btn--full {
  width: 100%;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: var(--z-preloader);
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s var(--ease-out);
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
}

.preloader__logo {
  font-size: 40px;
  font-weight: var(--fw-extrabold);
  color: var(--clr-primary);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-8);
}

.preloader__bar {
  width: 200px;
  height: 3px;
  background: var(--clr-bg-tertiary);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.preloader__progress {
  height: 100%;
  width: 0;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width 0.15s ease-out;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.custom-cursor {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-cursor);
  pointer-events: none;
  mix-blend-mode: difference;
}

.custom-cursor.is-visible {
  display: block;
}

.cursor-dot {
  position: fixed;
  top: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  background: var(--clr-text-white);
  border-radius: 50%;
  will-change: transform;
}

.cursor-ring {
  position: fixed;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  will-change: transform;
  transition: width 0.3s var(--ease-out),
              height 0.3s var(--ease-out),
              top 0.3s var(--ease-out),
              left 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out);
}

.custom-cursor.is-hover .cursor-ring {
  width: 60px;
  height: 60px;
  top: -30px;
  left: -30px;
  border-color: var(--clr-accent-light);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  padding: var(--space-5) 0;
  transition: all var(--transition-base);
}

.site-header.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-nav);
  padding: var(--space-4) 0;
}

.site-header.header--hidden {
  transform: translateY(-100%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 10;
}

.logo-text {
  font-size: 28px;
  font-weight: var(--fw-extrabold);
  color: var(--clr-primary);
  letter-spacing: var(--ls-tight);
  transition: color var(--transition-fast);
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-accent);
  border-radius: 50%;
  display: inline-block;
  margin-bottom: -4px;
}

/* Nav Links */
.header__nav {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  color: var(--clr-text-secondary);
  position: relative;
  padding: var(--space-2) 0;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--clr-accent);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

/* Header CTA */
.header__cta {
  flex-shrink: 0;
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  z-index: 10;
  padding: var(--space-2);
}

.hamburger__line {
  width: 24px;
  height: 2px;
  background: var(--clr-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}

.header__hamburger.is-active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 6px);
}

.header__hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__hamburger.is-active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

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

.mobile-menu__nav {
  text-align: center;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.mobile-menu__link {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.mobile-menu__link.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__link:hover {
  color: var(--clr-accent);
}

.mobile-menu__cta {
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.mobile-menu__cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: var(--section-py);
  position: relative;
  overflow: hidden;
  background: var(--clr-bg);
}

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

/* Hero Content — Left */
.hero__content {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-4);
  background: var(--clr-accent-pale);
  border-radius: var(--radius-full);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--clr-accent);
  margin-bottom: var(--space-8);
}

.hero__badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--clr-primary);
  margin-bottom: var(--space-6);
}

.hero__text {
  font-size: clamp(17px, 1.2vw, 20px);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-10);
  max-width: 520px;
}

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

/* Trust badges */
.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.hero__trust-label {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  font-weight: var(--fw-medium);
}

.hero__trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--clr-bg);
  overflow: hidden;
  margin-left: -8px;
  background: var(--clr-bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-text-muted);
}

.trust-avatar:first-child {
  margin-left: 0;
}

.hero__trust-rating {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.hero__trust-rating i {
  color: #F59E0B;
  font-size: 14px;
}

.hero__trust-rating span {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-left: var(--space-1);
}

/* Hero Image — Right */
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero__image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

/* Placeholder illustration area */
.hero__illustration {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gradient-hero-shape);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__illustration-inner {
  width: 80%;
  height: 70%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(96, 165, 250, 0.08));
  border-radius: var(--radius-card);
  border: 1px solid rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__illustration-text {
  font-size: var(--fs-body-sm);
  color: var(--clr-text-muted);
  font-weight: var(--fw-medium);
}

/* Floating shapes on hero */
.hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__shape--1 {
  width: 120px;
  height: 120px;
  background: var(--clr-accent-pale);
  top: -20px;
  right: -30px;
  opacity: 0.6;
}

.hero__shape--2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-light));
  bottom: 40px;
  left: -20px;
  opacity: 0.15;
}

.hero__shape--3 {
  width: 50px;
  height: 50px;
  border: 2px solid var(--clr-accent-pale);
  top: 50%;
  right: 10%;
  opacity: 0.5;
}

.hero__shape--4 {
  width: 16px;
  height: 16px;
  background: var(--clr-accent);
  bottom: 20%;
  right: 5%;
  opacity: 0.3;
}

/* Hero background decorations */
.hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero__bg-shape--1 {
  width: 600px;
  height: 600px;
  background: rgba(37, 99, 235, 0.05);
  top: -200px;
  right: -100px;
}

.hero__bg-shape--2 {
  width: 400px;
  height: 400px;
  background: rgba(96, 165, 250, 0.04);
  bottom: -100px;
  left: -100px;
}

/* ============================================================
   COMPANIES / LOGOS SECTION
   ============================================================ */
.companies {
  padding: var(--space-16) 0;
  background: var(--clr-bg-secondary);
  border-top: 1px solid var(--clr-border-light);
  border-bottom: 1px solid var(--clr-border-light);
  overflow: hidden;
}

.companies__label {
  text-align: center;
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  margin-bottom: var(--space-10);
}

.companies__track-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.companies__track {
  display: flex;
  gap: var(--space-16);
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}

.companies__logo {
  flex-shrink: 0;
  height: 40px;
  padding: 0 var(--space-8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: var(--fw-bold);
  color: var(--clr-text-muted);
  opacity: 0.4;
  filter: grayscale(1);
  transition: all var(--transition-base);
  cursor: default;
  white-space: nowrap;
  letter-spacing: var(--ls-wide);
}

.companies__logo:hover {
  opacity: 1;
  filter: grayscale(0);
  color: var(--clr-accent);
}

@keyframes scrollLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.about__content {
  padding-right: var(--space-10);
}

.about__lead {
  font-size: clamp(18px, 1.3vw, 22px);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  line-height: var(--lh-body);
  margin-bottom: var(--space-6);
}

.about__text {
  font-size: var(--fs-body);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
}

.about__checklist {
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}

.about__checklist li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  padding: var(--space-2) 0;
}

.about__checklist li i {
  color: var(--clr-accent);
  font-size: 18px;
}

/* About Image */
.about__visual {
  position: relative;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Placeholder for about image */
.about__image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--clr-bg-secondary), var(--clr-bg-tertiary));
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  font-weight: var(--fw-medium);
}

/* Floating cards on about image */
.about__float-card {
  position: absolute;
  background: var(--clr-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: var(--space-5) var(--space-6);
  z-index: 2;
}

.about__float-card--experience {
  bottom: -20px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.about__float-card--experience .float-number {
  font-size: 36px;
  font-weight: var(--fw-extrabold);
  color: var(--clr-accent);
  line-height: 1;
}

.about__float-card--experience .float-label {
  font-size: var(--fs-small);
  color: var(--clr-text-secondary);
  font-weight: var(--fw-medium);
  line-height: 1.3;
}

.about__float-card--stats {
  top: 30px;
  right: -20px;
  text-align: center;
}

.about__float-card--stats .float-number {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--clr-accent);
  line-height: 1;
}

.about__float-card--stats .float-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-top: var(--space-1);
}

/* Small decorative shapes */
.about__decoration {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.about__decoration--dots {
  width: 80px;
  height: 80px;
  background-image: radial-gradient(var(--clr-accent-pale) 2px, transparent 2px);
  background-size: 12px 12px;
  top: -20px;
  right: -15px;
  opacity: 0.5;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: var(--clr-bg-secondary);
}

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

.service-card {
  background: var(--clr-bg);
  border-radius: var(--radius-card);
  padding: var(--space-10);
  border: 1px solid var(--clr-border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--clr-accent-pale);
}

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

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--clr-accent-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  transition: transform var(--transition-base);
  color: var(--clr-accent);
  font-size: 24px;
}

.service-card:hover .service-card__icon {
  transform: rotate(8deg) scale(1.05);
}

.service-card__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-4);
}

.service-card__text {
  font-size: var(--fs-body-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-body);
  margin-bottom: var(--space-6);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--clr-accent);
  transition: gap var(--transition-fast);
}

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

.service-card__link i {
  font-size: 14px;
  transition: transform var(--transition-fast);
}

.service-card__link:hover i {
  transform: translate(2px, -2px);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-20);
  align-items: center;
}

.why-us__image-wrapper {
  position: relative;
}

.why-us__image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--clr-bg-secondary), var(--clr-bg-tertiary));
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  font-weight: var(--fw-medium);
}

.why-us__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.why-us__feature {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.why-us__feature-icon {
  width: 48px;
  height: 48px;
  background: var(--clr-accent-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-accent);
  font-size: 20px;
}

.why-us__feature-title {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-bottom: var(--space-2);
}

.why-us__feature-text {
  font-size: var(--fs-body-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-body);
}

/* Progress Bars */
.progress-bar {
  margin-top: var(--space-6);
}

.progress-bar__label {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-2);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
}

.progress-bar__track {
  height: 8px;
  background: var(--clr-bg-tertiary);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar__fill {
  height: 100%;
  width: 0;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width 1.5s var(--ease-out);
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process {
  background: var(--clr-bg-secondary);
}

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

/* Connecting line */
.process__timeline::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: var(--clr-border);
  z-index: 0;
}

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

.process__step-number {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-6);
  background: var(--clr-bg);
  border: 2px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: var(--fw-bold);
  color: var(--clr-accent);
  transition: all var(--transition-base);
}

.process__step:hover .process__step-number {
  background: var(--gradient-primary);
  border-color: var(--clr-accent);
  color: var(--clr-text-white);
  box-shadow: var(--shadow-glow);
  transform: scale(1.08);
}

.process__step-icon {
  font-size: 24px;
  color: var(--clr-accent);
  margin-bottom: var(--space-4);
}

.process__step-title {
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-3);
}

.process__step-text {
  font-size: var(--fs-body-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-body);
}

/* ============================================================
   COUNTER SECTION
   ============================================================ */
.counter {
  background: var(--gradient-dark);
  color: var(--clr-text-white);
  position: relative;
  overflow: hidden;
}

.counter__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.counter__bg-shape--1 {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.12);
  top: -200px;
  right: -100px;
}

.counter__bg-shape--2 {
  width: 300px;
  height: 300px;
  background: rgba(96, 165, 250, 0.08);
  bottom: -100px;
  left: -50px;
}

.counter__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
  z-index: 1;
}

.counter__item {
  text-align: center;
  padding: var(--space-10) var(--space-6);
}

.counter__number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: var(--space-3);
}

.counter__number {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: var(--fw-extrabold);
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter__suffix {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: var(--fw-bold);
  color: var(--clr-accent-light);
}

.counter__label {
  font-size: var(--fs-body-sm);
  color: var(--clr-text-white-muted);
  font-weight: var(--fw-medium);
}

/* Divider between counter items */
.counter__item + .counter__item {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio__slider {
  position: relative;
}

.portfolio-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  transition: all var(--transition-base);
}

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

.portfolio-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.06);
}

/* Placeholder for portfolio images */
.portfolio-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  font-size: var(--fs-body-sm);
}

.portfolio-card__image-placeholder--1 {
  background: linear-gradient(135deg, #E8EEFF, #DBEAFE);
}

.portfolio-card__image-placeholder--2 {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
}

.portfolio-card__image-placeholder--3 {
  background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
}

.portfolio-card__image-placeholder--4 {
  background: linear-gradient(135deg, #FCE7F3, #FBCFE8);
}

.portfolio-card__image-placeholder--5 {
  background: linear-gradient(135deg, #EDE9FE, #DDD6FE);
}

.portfolio-card__image-placeholder--6 {
  background: linear-gradient(135deg, #FFEDD5, #FED7AA);
}

/* Hover overlay */
.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.portfolio-card:hover .portfolio-card__overlay {
  opacity: 1;
}

.portfolio-card__info {
  padding: var(--space-6);
}

.portfolio-card__category {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  margin-bottom: var(--space-2);
}

.portfolio-card__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.swiper-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text);
  font-size: 18px;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.swiper-btn:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-text-white);
  transform: scale(1.05);
}

.swiper-pagination {
  position: relative !important;
  bottom: auto !important;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--clr-border);
  opacity: 1;
  transition: all var(--transition-fast);
}

.swiper-pagination-bullet-active {
  background: var(--clr-accent);
  width: 28px;
  border-radius: var(--radius-full);
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
  background: var(--clr-bg-secondary);
}

.testimonials__slider {
  position: relative;
}

.testimonial-card {
  background: var(--clr-bg);
  border-radius: var(--radius-card);
  padding: var(--space-10);
  border: 1px solid var(--clr-border);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Quote icon */
.testimonial-card__quote {
  font-size: 48px;
  color: var(--clr-accent-pale);
  line-height: 1;
  margin-bottom: var(--space-4);
}

/* Stars */
.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-5);
}

.testimonial-card__stars i {
  color: #F59E0B;
  font-size: 16px;
}

.testimonial-card__text {
  font-size: var(--fs-body);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  flex: 1;
  margin-bottom: var(--space-8);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--clr-border-light);
}

.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--clr-bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  color: var(--clr-accent);
  font-size: var(--fs-body);
  flex-shrink: 0;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__name {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  display: block;
}

.testimonial-card__role {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
}

.testimonial-card__company-logo {
  height: 24px;
  margin-left: auto;
  opacity: 0.4;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: var(--clr-bg);
  border-radius: var(--radius-card);
  border: 1px solid var(--clr-border);
  margin-bottom: var(--space-4);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq__item.is-open {
  border-color: var(--clr-accent-pale);
  box-shadow: var(--shadow-sm);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) var(--space-8);
  cursor: pointer;
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  transition: color var(--transition-fast);
  gap: var(--space-4);
  -webkit-user-select: none;
  user-select: none;
}

.faq__question:hover {
  color: var(--clr-accent);
}

.faq__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--clr-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
  font-size: 18px;
  color: var(--clr-text-muted);
}

.faq__item.is-open .faq__icon {
  background: var(--clr-accent);
  color: var(--clr-text-white);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out),
              opacity 0.3s var(--ease-out);
}

.faq__answer-inner {
  padding: 0 var(--space-8) var(--space-6);
}

.faq__answer-inner p {
  font-size: var(--fs-body-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: var(--space-24) 0;
}

.cta__inner {
  background: var(--gradient-cta);
  border-radius: var(--radius-lg);
  padding: var(--space-24) var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta__bg-shape--1 {
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 235, 0.15);
  top: -150px;
  right: -100px;
}

.cta__bg-shape--2 {
  width: 300px;
  height: 300px;
  background: rgba(96, 165, 250, 0.1);
  bottom: -100px;
  left: -80px;
}

.cta__content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
}

.cta__title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--clr-text-white);
  line-height: var(--lh-heading);
  margin-bottom: var(--space-6);
}

.cta__text {
  font-size: var(--fs-body);
  color: var(--clr-text-white-muted);
  line-height: var(--lh-body);
  margin-bottom: var(--space-10);
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* CTA decorative shapes */
.cta__decoration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.cta__decoration--circles {
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: 30px;
  left: 60px;
}

.cta__decoration--dots {
  width: 100px;
  height: 100px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  bottom: 40px;
  right: 80px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: var(--clr-bg-secondary);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(auto, 600px);
  justify-content: center;
  gap: var(--space-16);
  align-items: start;
}

/* Contact Form */
.contact__form {
  background: var(--clr-bg);
  border-radius: var(--radius-card);
  padding: var(--space-12);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

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

.form__label {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-bottom: var(--space-2);
}

.form__input {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: var(--clr-bg-secondary);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-size: var(--fs-body-sm);
  color: var(--clr-text);
  transition: all var(--transition-fast);
  outline: none;
}

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

.form__input:focus {
  border-color: var(--clr-accent);
  background: var(--clr-bg);
  box-shadow: 0 0 0 3px var(--clr-accent-pale);
}

.form__textarea {
  resize: vertical;
  min-height: 130px;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394A3B8' viewBox='0 0 16 16'%3E%3Cpath d='m4.427 6.427 3.396 3.396a.25.25 0 0 0 .354 0l3.396-3.396A.25.25 0 0 0 11.396 6H4.604a.25.25 0 0 0-.177.427z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

/* Contact Info */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact__info-card {
  background: var(--clr-bg);
  border-radius: var(--radius-card);
  padding: var(--space-10);
  border: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

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

.contact__info-icon {
  width: 48px;
  height: 48px;
  background: var(--clr-accent-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-accent);
  font-size: 20px;
}

.contact__info-item h4 {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-bottom: var(--space-1);
}

.contact__info-item a,
.contact__info-item p {
  font-size: var(--fs-body-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-body);
}

.contact__info-item a:hover {
  color: var(--clr-accent);
}

/* Social Links */
.contact__social {
  background: var(--clr-bg);
  border-radius: var(--radius-card);
  padding: var(--space-8);
  border: 1px solid var(--clr-border);
}

.contact__social h4 {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-4);
}

.contact__social-links {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--clr-bg-secondary);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-secondary);
  font-size: 18px;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-text-white);
  transform: translateY(-3px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--clr-bg-dark);
  color: var(--clr-text-white);
  padding-top: var(--section-py);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand .logo-text {
  color: var(--clr-text-white);
}

.footer__about {
  font-size: var(--fs-body-sm);
  color: var(--clr-text-white-muted);
  line-height: var(--lh-body);
  margin-top: var(--space-6);
  margin-bottom: var(--space-8);
  max-width: 320px;
}

/* Newsletter */
.footer__newsletter {
  margin-top: var(--space-4);
}

.footer__newsletter-form {
  display: flex;
  gap: var(--space-2);
}

.footer__newsletter-input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-btn);
  color: var(--clr-text-white);
  font-size: var(--fs-small);
  outline: none;
  transition: border-color var(--transition-fast);
}

.footer__newsletter-input::placeholder {
  color: var(--clr-text-white-muted);
}

.footer__newsletter-input:focus {
  border-color: var(--clr-accent);
}

.footer__newsletter-btn {
  padding: var(--space-3) var(--space-5);
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-btn);
  color: var(--clr-text-white);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.footer__newsletter-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn);
}

/* Footer columns */
.footer__col-title {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-bold);
  color: var(--clr-text-white);
  margin-bottom: var(--space-6);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer__links a {
  font-size: var(--fs-body-sm);
  color: var(--clr-text-white-muted);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__links a:hover {
  color: var(--clr-accent-light);
}

/* Footer Social */
.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-white-muted);
  font-size: 16px;
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-text-white);
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-8) 0;
}

.footer__copy {
  font-size: var(--fs-small);
  color: var(--clr-text-white-muted);
}

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

.footer__bottom-links a {
  font-size: var(--fs-small);
  color: var(--clr-text-white-muted);
  transition: color var(--transition-fast);
}

.footer__bottom-links a:hover {
  color: var(--clr-text-white);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--clr-text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-btn);
  z-index: var(--z-dropdown);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-btn-hover);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

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

/* Pulse animation for badge dot */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.5); }
}

/* ============================================================
   SWIPER OVERRIDES
   ============================================================ */
.swiper {
  overflow: visible !important;
}

.swiper-slide {
  height: auto;
}

/* ============================================================
   SERVICES — 2-Column Grid (DIRA: 4 categories)
   ============================================================ */
.services__grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.service-card--large {
  padding: var(--space-10) var(--space-10) var(--space-8);
}

.service-card__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2) var(--space-4);
  margin-bottom: var(--space-6);
}

.service-card__list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-small);
  color: var(--clr-text-secondary);
  padding: var(--space-1) 0;
}

.service-card__list li i {
  color: var(--clr-accent);
  font-size: 12px;
  flex-shrink: 0;
}

/* ============================================================
   INDUSTRIES SECTION
   ============================================================ */
.industries {
  background: var(--clr-bg-secondary);
}

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

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

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--clr-accent-pale);
}

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

.industry-card__icon {
  width: 60px;
  height: 60px;
  background: var(--clr-accent-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  color: var(--clr-accent);
  font-size: 24px;
  transition: transform var(--transition-base);
}

.industry-card:hover .industry-card__icon {
  transform: rotate(8deg) scale(1.05);
}

.industry-card__title {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-3);
}

.industry-card__text {
  font-size: var(--fs-small);
  color: var(--clr-text-secondary);
  line-height: var(--lh-body);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: var(--z-dropdown);
  transition: all var(--transition-base);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__tooltip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--clr-primary);
  color: var(--clr-text-white);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
}

.whatsapp-float__tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: var(--clr-primary);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   CALENDLY CARD — Contact sidebar
   ============================================================ */
.contact__calendly {
  background: var(--clr-bg);
  border-radius: var(--radius-card);
  padding: var(--space-8);
  border: 1px solid var(--clr-border);
  text-align: center;
}

.contact__calendly h4 {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-2);
}

.contact__calendly p {
  font-size: var(--fs-small);
  color: var(--clr-text-secondary);
  margin-bottom: var(--space-5);
  line-height: var(--lh-body);
}

.contact__calendly .btn i {
  margin-right: var(--space-2);
}
