/* ============================================
   EQOSPHERE — Design System
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --c-primary: #0a4a8a;
  --c-primary-dark: #063562;
  --c-primary-light: #1a6bc4;
  --c-accent: #e87722;
  --c-accent-dark: #c5611a;
  --c-accent-light: #f5923e;
  --c-green: #5bb030;
  --c-green-dark: #469024;
  --c-green-light: #7ecf55;
  --c-teal: #1a9e96;
  --c-bg: #f7f9fc;
  --c-bg-alt: #eef2f8;
  --c-bg-dark: #0b1e3d;
  --c-bg-footer: #062044;
  --c-white: #ffffff;
  --c-text: #2d3748;
  --c-text-light: #718096;
  --c-text-muted: #a0aec0;
  --c-border: #e2e8f0;
  --c-card: #ffffff;
  --c-overlay: rgba(10, 74, 138, 0.85);

  /* Typography */
  --f-heading: 'Outfit', sans-serif;
  --f-body: 'Inter', sans-serif;
  --fs-hero: clamp(2.2rem, 5vw, 3.5rem);
  --fs-h1: clamp(1.8rem, 4vw, 2.8rem);
  --fs-h2: clamp(1.5rem, 3vw, 2.2rem);
  --fs-h3: clamp(1.2rem, 2.5vw, 1.5rem);
  --fs-h4: 1.125rem;
  --fs-body: 1rem;
  --fs-sm: 0.875rem;
  --fs-xs: 0.75rem;
  --lh-tight: 1.2;
  --lh-normal: 1.6;
  --lh-relaxed: 1.8;

  /* Spacing */
  --s-xs: 0.25rem;
  --s-sm: 0.5rem;
  --s-md: 1rem;
  --s-lg: 1.5rem;
  --s-xl: 2rem;
  --s-2xl: 3rem;
  --s-3xl: 4rem;
  --s-4xl: 6rem;
  --s-section: clamp(3rem, 5vw, 5rem);

  /* Layout */
  --max-w: 1200px;
  --max-w-lg: 1400px;
  --max-w-sm: 800px;
  --nav-h: 80px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 4px 20px rgba(10, 74, 138, 0.08);
  --shadow-card-hover: 0 12px 40px rgba(10, 74, 138, 0.15);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
  --duration-slow: 0.5s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

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

ul,
ol {
  list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--f-heading);
  line-height: var(--lh-tight);
  color: var(--c-primary-dark);
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-lg);
}

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

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

.section {
  padding: var(--s-section) 0;
}

.section--alt {
  background: var(--c-bg-alt);
}

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

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--c-white);
}

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

.text-accent {
  color: var(--c-accent);
}

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

.text-green {
  color: var(--c-green);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.section-label {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-accent);
  margin-bottom: var(--s-md);
}

.section-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: var(--s-md);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--c-text-light);
  max-width: 680px;
  line-height: var(--lh-relaxed);
}

.section-subtitle.centered {
  margin: 0 auto;
}

.section-header {
  margin-bottom: var(--s-3xl);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-sm);
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: var(--fs-body);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--c-primary);
  color: var(--c-white);
  box-shadow: 0 4px 14px rgba(10, 74, 138, 0.3);
}

.btn--primary:hover {
  background: var(--c-primary-light);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 74, 138, 0.4);
}

.btn--accent {
  background: var(--c-accent);
  color: var(--c-white);
  box-shadow: 0 4px 14px rgba(232, 119, 34, 0.3);
}

.btn--accent:hover {
  background: var(--c-accent-dark);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 119, 34, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border: 2px solid var(--c-primary);
}

.btn--outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--c-white);
  color: var(--c-primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: var(--c-primary);
}

.btn--sm {
  padding: 0.6rem 1.3rem;
  font-size: var(--fs-sm);
}

.btn--lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--duration) var(--ease);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--duration) var(--ease);
}

.nav.scrolled {
  border-bottom-color: var(--c-border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w-lg);
  margin: 0 auto;
  padding: 0 var(--s-lg);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
}

.nav__logo-text {
  font-family: var(--f-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: 0.04em;
}

.nav__logo-icon {
  height: 36px;
  width: auto;
}

.nav__logo-icon img {
  height: 100%;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s-xl);
}

.nav__link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-text);
  position: relative;
  padding: var(--s-sm) 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  transition: width var(--duration) var(--ease);
}

.nav__link:hover,
.nav__link.active {
  color: var(--c-primary);
}

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

.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  min-width: 240px;
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: var(--s-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--duration) var(--ease);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: var(--fs-sm);
  color: var(--c-text);
  transition: all 0.2s var(--ease);
}

.nav__dropdown-item:hover {
  background: var(--c-bg-alt);
  color: var(--c-primary);
}

.nav__cta {
  margin-left: var(--s-md);
}

/* Mobile menu */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.nav__burger span {
  width: 100%;
  height: 2px;
  background: var(--c-primary);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

.nav__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__burger.active span:nth-child(2) {
  opacity: 0;
}

.nav__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + var(--s-3xl));
  padding-bottom: var(--s-4xl);
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--c-bg);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3xl);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-sm);
  padding: 0.4rem 1rem;
  background: rgba(10, 74, 138, 0.08);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: var(--s-lg);
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: 700;
  margin-bottom: var(--s-lg);
  font-style: normal;
}

.hero__title .highlight {
  color: var(--c-accent);
}

.hero__title .highlight-green {
  color: var(--c-green);
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--c-text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--s-xl);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: var(--s-md);
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: var(--s-2xl);
  margin-top: var(--s-3xl);
  padding-top: var(--s-xl);
  border-top: 1px solid var(--c-border);
}

.hero__stat-num {
  font-family: var(--f-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-primary);
}

.hero__stat-label {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  margin-top: 2px;
}

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

.hero__img-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 74, 138, 0.15);
}

.hero__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__circle {
  display: none;
}

.hero__circle--1 {
  display: none;
}

.hero__circle--2 {
  display: none;
}

.hero__float {
  position: absolute;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: var(--s-md) var(--s-lg);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: var(--s-md);
}

.hero__float--1 {
  bottom: 10%;
  left: -10%;
}

.hero__float--2 {
  top: 15%;
  right: -5%;
}

.hero__float-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.hero__float-icon--green {
  background: rgba(91, 176, 48, 0.12);
}

.hero__float-icon--orange {
  background: rgba(232, 119, 34, 0.12);
}

.hero__float-text {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-text);
}

.hero__float-sub {
  font-size: var(--fs-xs);
  color: var(--c-text-light);
}

/* floatY animation removed */

/* --- Cards --- */
.card {
  background: var(--c-card);
  padding: var(--s-2xl);
  border-left: 3px solid var(--c-primary);
  position: relative;
}

.card:hover {
  border-left-color: var(--c-accent);
}

.card__icon {
  display: none;
}

.card__icon--blue,
.card__icon--orange,
.card__icon--green,
.card__icon--teal {
  display: none;
}

.card__title {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: var(--s-md);
}

.card__text {
  color: var(--c-text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--s-lg);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-sm);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--c-primary);
}

.card__link:hover {
  gap: var(--s-md);
  color: var(--c-accent);
}

.card__number {
  position: absolute;
  top: var(--s-lg);
  right: var(--s-xl);
  font-family: var(--f-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(10, 74, 138, 0.05);
}

.cards-grid {
  display: grid;
  gap: var(--s-xl);
}

.cards-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.cards-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.cards-grid--5 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* --- Feature block --- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4xl);
  align-items: center;
}

.feature--reverse {
  direction: rtl;
}

.feature--reverse>* {
  direction: ltr;
}

.feature__img {
  overflow: hidden;
  position: relative;
}

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

.feature__badge {
  display: none;
}

.feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature__title {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: var(--s-lg);
}

.feature__text {
  color: var(--c-text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--s-xl);
}

.feature__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
  margin-bottom: var(--s-xl);
}

.feature__list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-md);
  font-size: var(--fs-body);
  color: var(--c-text);
}

.feature__check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(91, 176, 48, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-green);
  font-size: var(--fs-sm);
  margin-top: 2px;
}

/* --- Logos --- */
.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-2xl);
}

.logos__item {
  height: 50px;
  transition: all var(--duration) var(--ease);
}

.logos__item:hover {
  opacity: 0.7;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: var(--s-3xl) var(--s-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  display: none;
}

.cta-banner__title {
  color: var(--c-white);
  font-size: var(--fs-h2);
  margin-bottom: var(--s-md);
}

.cta-banner__text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--s-xl);
  max-width: 600px;
  margin-inline: auto;
}

/* --- Values --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
}

.value-card {
  padding: var(--s-2xl) var(--s-xl);
  border-radius: var(--radius);
}

.value-card:nth-child(1) {
  background: rgba(10, 74, 138, 0.06);
}

.value-card:nth-child(2) {
  background: rgba(91, 176, 48, 0.06);
}

.value-card:nth-child(3) {
  background: rgba(232, 119, 34, 0.06);
}

.value-card__title {
  font-size: var(--fs-h4);
  font-weight: 600;
  margin-bottom: var(--s-sm);
  color: var(--c-primary-dark);
}

.value-card__text {
  color: var(--c-text-light);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: var(--s-md) 0;
  font-size: var(--fs-sm);
  color: var(--c-text-light);
}

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

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

.breadcrumb span {
  margin: 0 var(--s-sm);
}

/* --- Page Hero --- */
.page-hero {
  padding-top: calc(var(--nav-h) + var(--s-3xl));
  padding-bottom: var(--s-3xl);
  background: linear-gradient(135deg, var(--c-bg) 0%, var(--c-bg-alt) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(10, 74, 138, 0.03);
}

.page-hero__title {
  font-size: var(--fs-h1);
  font-weight: 800;
  margin-bottom: var(--s-md);
}

.page-hero__desc {
  font-size: 1.1rem;
  color: var(--c-text-light);
  max-width: 640px;
  line-height: var(--lh-relaxed);
}

/* --- Process / Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-lg);
  counter-reset: step;
}

.step {
  position: relative;
  padding: var(--s-xl) var(--s-lg);
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-accent);
  display: block;
  margin-bottom: var(--s-sm);
}

.step__title {
  font-size: var(--fs-h4);
  font-weight: 600;
  margin-bottom: var(--s-sm);
}

.step__text {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  line-height: var(--lh-relaxed);
}

/* --- FAQ Accordion --- */
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: var(--s-md);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease);
}

.faq-item.active {
  border-color: var(--c-primary);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-lg) var(--s-xl);
  cursor: pointer;
  font-weight: 600;
  color: var(--c-text);
  gap: var(--s-md);
  transition: color var(--duration) var(--ease);
}

.faq-item.active .faq-item__q {
  color: var(--c-primary);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--c-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease);
}

.faq-item.active .faq-item__icon {
  background: var(--c-primary);
  color: var(--c-white);
  transform: rotate(45deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease);
}

.faq-item__a-inner {
  padding: 0 var(--s-xl) var(--s-lg);
  color: var(--c-text-light);
  line-height: var(--lh-relaxed);
}

/* --- Contact Form --- */
.form {
  display: grid;
  gap: var(--s-lg);
}

.form--2col {
  grid-template-columns: 1fr 1fr;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-text);
}

.form__input,
.form__textarea,
.form__select {
  padding: 0.8rem 1rem;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-family: var(--f-body);
  font-size: var(--fs-body);
  color: var(--c-text);
  transition: border-color var(--duration) var(--ease);
  background: var(--c-white);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(10, 74, 138, 0.1);
}

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

/* --- Footer --- */
.footer {
  background: var(--c-bg-footer);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--s-4xl) 0 var(--s-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr) auto;
  gap: var(--s-2xl);
  margin-bottom: var(--s-3xl);
}

.footer__brand-desc {
  margin-top: var(--s-md);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  max-width: 280px;
}

.footer__heading {
  font-family: var(--f-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--s-lg);
}

.footer__link {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  padding: 0.25rem 0;
  transition: all 0.2s var(--ease);
}

.footer__link:hover {
  color: var(--c-white);
  transform: translateX(4px);
}

.footer__socials {
  display: flex;
  gap: var(--s-md);
}

.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  transition: all var(--duration) var(--ease);
}

.footer__social:hover {
  background: var(--c-accent);
  color: var(--c-white);
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--s-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom a:hover {
  color: var(--c-white);
}

/* Scroll animations removed — content visible by default */
.fade-up,
.fade-left,
.fade-right {
  opacity: 1;
  transform: none;
}

/* --- Responsive --- */
@media (max-width: 1024px) {

  .hero__grid,
  .feature {
    grid-template-columns: 1fr;
    gap: var(--s-2xl);
  }

  .feature--reverse {
    direction: ltr;
  }

  .hero__visual {
    order: -1;
  }

  .hero__img-wrapper {
    max-width: 380px;
  }

  .cards-grid--3,
  .cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--c-white);
    flex-direction: column;
    padding: calc(var(--nav-h) + var(--s-xl)) var(--s-xl) var(--s-xl);
    box-shadow: var(--shadow-xl);
    align-items: flex-start;
    transition: right var(--duration) var(--ease);
    gap: 0;
  }

  .nav__links.open {
    right: 0;
  }

  .nav__link {
    padding: var(--s-md) 0;
    width: 100%;
    font-size: var(--fs-body);
  }

  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: var(--s-lg);
    display: none;
  }

  .nav__dropdown.open .nav__dropdown-menu {
    display: block;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: var(--s-md);
  }

  .nav__burger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + var(--s-xl));
    padding-bottom: var(--s-2xl);
  }

  .hero__stats {
    flex-direction: column;
    gap: var(--s-lg);
  }

  .hero__actions {
    flex-direction: column;
  }

  .cards-grid--2,
  .cards-grid--3,
  .cards-grid--4 {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: var(--s-2xl);
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--s-md);
    text-align: center;
  }

  .form--2col {
    grid-template-columns: 1fr;
  }

  .form__group--full {
    grid-column: auto;
  }

  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .hero__img-wrapper {
    max-width: 280px;
  }

  .hero__float {
    display: none;
  }

  .hero__circle {
    display: none;
  }
}

/* --- Article Content --- */
.article-content {
  max-width: 680px;
  margin: 0 auto;
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--c-text);
}

.article-content p {
  margin-bottom: var(--s-lg);
}

.article-content h2 {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--c-heading);
  margin-top: var(--s-2xl);
  margin-bottom: var(--s-md);
}

.article-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-heading);
  margin-top: var(--s-xl);
  margin-bottom: var(--s-sm);
}

.article-content ul {
  margin-bottom: var(--s-lg);
  padding-left: var(--s-xl);
}

.article-content ul li {
  margin-bottom: var(--s-sm);
  line-height: var(--lh-relaxed);
}

.article-content a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-content a:hover {
  color: var(--c-accent);
}

.article-content strong {
  color: var(--c-heading);
}

.article-content em {
  color: var(--c-text-light);
}