/* ========================================
   İDASCENT - Design System & Base Styles
   Light Theme - Aydınlık Tema
   ======================================== */

/* ========================================
   CSS Custom Properties (Design Tokens)
   ======================================== */
:root {
  /* Colors - Light Elegant Palette */
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f5f5f5;
  --color-bg-tertiary: #fafafa;
  --color-bg-card: #ffffff;
  --color-bg-card-hover: #f8f8f8;

  /* Primary Colors */
  --color-navy: #0a1944;
  --color-navy-light: #1a2d5c;
  --color-navy-dark: #060f2a;

  --color-dark: #0F1626;
  --color-dark-light: #1a2235;

  /* Text Colors - Darkened for better contrast */
  --color-text-primary: #0F1626;
  --color-text-secondary: rgba(15, 22, 38, 0.85);
  /* Was 0.7 */
  --color-text-muted: rgba(15, 22, 38, 0.7);
  /* Was 0.5 */
  --color-text-light: #ffffff;

  /* Border Colors */
  --color-border: rgba(15, 22, 38, 0.1);
  --color-border-dark: rgba(15, 22, 38, 0.2);

  /* Accent */
  --color-accent: #0a1944;

  /* Gradients */
  --gradient-hero: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  --gradient-navy: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  --gradient-card: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 100%);
  --gradient-overlay-dark: linear-gradient(180deg, rgba(10, 25, 68, 0) 0%, rgba(10, 25, 68, 0.9) 100%);

  /* Typography */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;
  --text-7xl: 6rem;

  /* Font Weights */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-max: 1400px;
  --container-narrow: 900px;
  --section-padding: clamp(4rem, 10vw, 8rem);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 22, 38, 0.06);
  --shadow-md: 0 4px 20px rgba(15, 22, 38, 0.08);
  --shadow-lg: 0 8px 40px rgba(15, 22, 38, 0.12);
  --shadow-navy: 0 4px 30px rgba(10, 25, 68, 0.2);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-slower: 800ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Z-Index */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-overlay: 500;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-regular);
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
}

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

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

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

ul,
ol {
  list-style: none;
}

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

/* ========================================
   Typography
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-semibold);
  line-height: 1.2;
  color: var(--color-text-primary);
}

h1 {
  font-size: clamp(var(--text-4xl), 8vw, var(--text-7xl));
  font-weight: var(--font-bold);
}

h2 {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
}

h3 {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
}

h4 {
  font-size: var(--text-2xl);
}

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

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

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

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

/* ========================================
   Layout Utilities
   ======================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

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

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

.section--full {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section--navy {
  background: var(--color-navy);
  color: var(--color-text-light);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--color-text-light);
}

.section--navy p {
  color: rgba(255, 255, 255, 0.8);
}

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

/* Flexbox */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

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

.justify-between {
  justify-content: space-between;
}

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

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

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

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

/* Grid */
.grid {
  display: grid;
}

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

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

@media (max-width: 768px) {

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

/* Text Alignment */
.text-center {
  text-align: center;
}

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

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

/* ========================================
   Components - Navigation
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: var(--space-6) 0;
  transition: all var(--transition-base);
  background: transparent;
}

.nav--scrolled {
  background: var(--color-navy);
  /* WhiteBG -> NavyBG */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-4) 0;
  box-shadow: var(--shadow-sm);
  color: var(--color-text-light);
  /* Make all text white */
}

.nav--scrolled .nav__logo span {
  color: var(--color-text-light);
  /* Logo part */
}

.nav--scrolled .nav__link {
  color: rgba(255, 255, 255, 0.8);
}

.nav--scrolled .nav__link:hover {
  color: #fff;
}

.nav--scrolled .nav__link::after {
  background: #fff;
}

.nav--scrolled .nav__toggle span {
  background: #fff;
}

/* Override nav__cta colors in scanned mode */
.nav--scrolled .nav__contact-item,
.nav--scrolled .nav__icon-link {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: var(--color-navy);
}

.nav__logo span {
  color: var(--color-dark);
}

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

.nav__link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  position: relative;
  padding: var(--space-2) 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-navy);
  transition: width var(--transition-base);
}

.nav__link:hover {
  color: var(--color-navy);
}

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

.nav__cta {
  margin-left: var(--space-6);
}

/* Mobile Menu */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-2);
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: all var(--transition-fast);
}

/* Global Navbar Alignment Fixes */
.nav__cta {
  display: flex;
  align-items: center;
}

.nav__socials {
  display: flex;
  align-items: center;
  /* Align vertically on desktop */
  height: 100%;
}

.nav__icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Mobile Menu Fixes */
@media (max-width: 968px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-primary);
    /* White bg */
    flex-direction: column;
    justify-content: flex-start;
    /* Start from top */
    padding-top: 100px;
    /* Space for toggle */
    gap: var(--space-8);
    transition: right var(--transition-slow);
    padding: 2rem;
    overflow-y: auto;
  }

  /* Fix visibility issue on scroll in mobile menu */
  /* When scrolled, nav parent adds .nav--scrolled which makes text white.
     We need to force it back to dark for mobile menu which has white bg */
  .nav--scrolled .nav__link,
  .nav--scrolled .nav__contact-item,
  .nav--scrolled .nav__icon-link,
  .nav--scrolled .nav__contact-text {
    color: var(--color-navy) !important;
  }

  /* Make nav__cta items stack in mobile menu */
  .nav__cta {
    flex-direction: column;
    align-items: center;
    /* Center items */
    width: 100%;
    margin-left: 0 !important;
    gap: 20px !important;
    margin-top: 20px;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
  }

  .nav__contact-item {
    font-size: 1rem !important;
    color: var(--color-navy) !important;
    width: 100%;
    display: flex;
    justify-content: center;
    /* Center content within item */
  }

  .nav__socials {
    margin-left: 0 !important;
    border-left: none !important;
    padding-left: 0 !important;
    margin-top: 10px;
    gap: 20px !important;
    justify-content: center;
    /* Center social icons */
    display: flex;
    width: 100%;
  }

  .nav__socials .nav__icon-link svg {
    width: 24px;
    height: 24px;
  }

  .nav__menu.active {
    right: 0;
  }

  .nav__link {
    font-size: var(--text-2xl);
    /* Larger links */
  }

  .nav__toggle {
    display: flex;
    z-index: var(--z-overlay);
    /* Ensure toggle is above menu */
    position: relative;
  }

  .nav__toggle.active span {
    background: var(--color-navy);
    /* Ensure visible when menu is active (white bg) */
  }

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

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

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

/* Laptop/Tablet Navbar Fixes */
@media (max-width: 1200px) and (min-width: 969px) {
  .nav__menu {
    gap: var(--space-4);
  }

  .nav__cta {
    gap: 10px !important;
    margin-left: var(--space-2);
  }

  .nav__contact-text {
    font-size: 0.75rem;
  }

  .nav__logo img {
    height: 40px !important;
  }

  .nav__socials {
    padding-left: 10px !important;
    margin-left: 5px !important;
    gap: 8px !important;
  }
}

/* Highlight Char Style */
.highlight-char {
  font-weight: 700;
  color: var(--color-bg-primary);
  /* White/Light inside the card? No, approach cards have navy icons? Wait. */
  /* Re-check approach card styles. Icons and Text are inside .approach__card */
}

/* Approach card is transparent on navy bg? No. Section is navy? */
/* Let's check sections. .approach is #yaklasim. */
/* view_file index.html line 168: <section class="section approach" id="yaklasim"> background not inline. */
/* In CSS, .approach usually has dark background if it has white text headers. */
/* Ah, user said "Yaklaşımımız" header is in a box (rgba white). */
/* Let's assume section is dark. */
.approach .highlight-char {
  font-weight: 900;
  /* Make "i" "d" "a" stand out */
}

/* Fix "Aura by ida" scaling on mobile */
@media (max-width: 968px) {

  /* Center the visual container */
  .products__visual {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: var(--space-8);
  }

  .products__circle {
    width: 250px !important;
    height: 250px !important;
    /* Ensure no margins causing offset */
    margin: 0 auto;
  }

  .products__circle-text {
    font-size: 2.5rem !important;
  }

  .products__circle-text span {
    font-size: 1.2rem !important;
  }
}

/* ========================================
   Components - Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-navy);
  color: var(--color-text-light);
}

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

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

.btn--outline:hover {
  background: var(--color-navy);
  color: var(--color-text-light);
}

.btn--white {
  background: var(--color-bg-primary);
  color: var(--color-navy);
}

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

.btn--ghost {
  background: transparent;
  color: var(--color-text-primary);
  padding: var(--space-2) 0;
}

.btn--ghost:hover {
  color: var(--color-navy);
}

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

/* ========================================
   Components - Cards
   ======================================== */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

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

.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  color: var(--color-navy);
}

.card__icon svg {
  width: 28px;
  height: 28px;
}

.card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  color: var(--color-text-primary);
}

.card__text {
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ========================================
   Components - Section Headers
   ======================================== */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16);
}

.section-header__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: rgba(10, 25, 68, 0.05);
  border-radius: var(--radius-full);
}

.section--navy .section-header__label {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
}

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

.section-header__text {
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   Components - Dividers
   ======================================== */
.divider {
  width: 60px;
  height: 3px;
  background: var(--color-navy);
  margin: var(--space-8) auto;
  border-radius: var(--radius-full);
}

.divider--left {
  margin-left: 0;
}

.divider--white {
  background: var(--color-text-light);
}

/* ========================================
   Forms
   ======================================== */
.form-group {
  margin-bottom: var(--space-6);
}

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

.form-input {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(10, 25, 68, 0.1);
}

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

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-navy);
}

.form-checkbox span {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.form-checkbox a {
  color: var(--color-navy);
  text-decoration: underline;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  /* Increased from 100px to move slogan down as requested */
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.5;
  display: none;
  /* Hidden by default, shown by media queries */
}

/* Responsive Video Switch */
@media (max-width: 434px) {
  .hero__video--mobile {
    display: block;
  }
}

@media (min-width: 435px) {
  .hero__video--desktop {
    display: block;
  }
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
}

.hero__shape--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10, 25, 68, 0.05) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: float 15s ease-in-out infinite;
}

.hero__shape--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(10, 25, 68, 0.03) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(20px, -20px);
  }
}

.hero__content {
  position: relative;
  z-index: var(--z-base);
  max-width: 1000px;
  padding: 0 var(--space-6);
  margin-top: -150px;
  /* Pull content up significantly on desktop to satisfy spacing request */
}

.hero__label {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: var(--space-6);
  display: inline-block;
  padding: var(--space-2) var(--space-5);
  background: rgba(10, 25, 68, 0.05);
  border-radius: var(--radius-full);
}

.hero__title {
  margin-bottom: var(--space-8);
  /* Make sure hero title is dark enough */
  color: var(--color-dark);
}

.hero__tagline-main {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 4rem);
  /* Reduced from 3rem/10vw/6rem */
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
  margin-bottom: 5.5rem;
  /* Increased to move content below further down */
  letter-spacing: -0.01em;
  min-height: 4em;
  /* Reserved space for 3 lines of text to prevent jump */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ========================================
   Modern Contact Section Styles
   ======================================== */
.contact__container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  max-width: 1000px;
  margin: 0 auto;
}

.contact__form-wrapper {
  padding: var(--space-8) var(--space-10);
}

.contact__info-wrapper {
  background: var(--color-navy);
  color: var(--color-text-light);
  padding: var(--space-8) var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
.contact__info-wrapper::before {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.contact__info-wrapper::after {
  content: '';
  position: absolute;
  top: -30px;
  right: 50px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.contact__info-header h3 {
  color: var(--color-text-light);
  margin-bottom: var(--space-4);
  font-size: var(--text-2xl);
}

.contact__info-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-8);
  font-size: var(--text-sm);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.contact__detail-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: var(--color-text-light);
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact__detail-text h4 {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact__detail-text p {
  font-size: var(--text-base);
  color: var(--color-text-light);
  font-weight: var(--font-medium);
}

.contact__detail-text a {
  color: var(--color-text-light);
}

.contact__socials {
  display: flex;
  gap: var(--space-4);
  margin-top: auto;
}

.contact__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: transform 0.2s;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contact__social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 968px) {
  .contact__container {
    grid-template-columns: 1fr;
  }

  .contact__info-wrapper {
    order: -1;
    padding: var(--space-8);
  }
}

.hero__title span {
  display: block;
}

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

.hero__tagline {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  min-height: 1.5em;
  text-align: center;
  overflow: hidden;
  /* For the clip effect */
  display: flex;
  justify-content: center;
}

#sloganFade {
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s ease;
}

.slogan-out {
  transform: translateY(-100%);
  opacity: 0;
}

.slogan-in-prep {
  transform: translateY(100%);
  opacity: 0;
  transition: none !important;
}

.slogan-in {
  transform: translateY(0);
  opacity: 1;
}

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

.hero__scroll {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-navy), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 0.5;
  }
}

/* ========================================
   About Section
   ======================================== */
.about {
  background: var(--color-bg-primary);
}

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

.about__content {
  max-width: 540px;
}

.about__text {
  margin-bottom: var(--space-6);
  font-size: var(--text-lg);
  line-height: 1.9;
}

.about__quote {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-style: italic;
  font-weight: var(--font-medium);
  color: var(--color-navy);
  padding-left: var(--space-6);
  border-left: 3px solid var(--color-navy);
  margin: var(--space-10) 0;
}

.about__image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-secondary);
  box-shadow: var(--shadow-lg);
}

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

@media (max-width: 968px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .about__image {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ========================================
   Approach Section
   ======================================== */
.approach {
  position: relative;
  background: var(--color-navy);
  color: #ffffff;
  /* Falback to white */
}

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

.approach__card {
  text-align: center;
  padding: var(--space-12) var(--space-8);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Bouncy transition */
  cursor: default;
}

.approach__card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.approach__icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
  opacity: 0.8;
  color: #ffffff;
  transition: transform 0.4s ease;
}

.approach__card:hover .approach__icon {
  transform: scale(1.2) rotate(10deg);
  opacity: 1;
  color: var(--color-bg-secondary);
  /* Slight accent change */
}

.approach__title {
  font-size: var(--text-3xl);
  font-weight: var(--font-light);
  font-style: italic;
  color: #ffffff;
  margin-bottom: var(--space-6);
}

.approach__text {
  font-size: var(--text-base);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 968px) {
  .approach__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ========================================
   Sectors Section
   ======================================== */
.sectors {
  background: var(--color-bg-secondary);
}

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

.sector-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-navy);
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.sector-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.sector-card:hover .sector-card__bg {
  transform: scale(1.1);
}

.sector-card__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay-dark);
  transition: background var(--transition-base);
}

.sector-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-8);
  color: var(--color-text-light);
  transform: translateY(20px);
  transition: transform var(--transition-base);
}

.sector-card:hover .sector-card__content {
  transform: translateY(0);
}

.sector-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: var(--color-text-light);
}

.sector-card__text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.sector-card:hover .sector-card__text {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 968px) {
  .sectors__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .sectors__grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Products Section
   ======================================== */
.products {
  background: var(--color-bg-primary);
}

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

.products__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.feature:hover {
  border-color: var(--color-navy);
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.feature__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 25, 68, 0.05);
  border-radius: var(--radius-md);
  color: var(--color-navy);
  flex-shrink: 0;
}

.feature__icon svg {
  width: 24px;
  height: 24px;
}

.feature__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-2);
  color: var(--color-text-primary);
}

.feature__text {
  font-size: var(--text-sm);
}

.products__visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products__circle {
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--color-bg-secondary);
}

.products__circle::before {
  content: '';
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid var(--color-border);
}

.products__circle-text {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-semibold);
  color: var(--color-navy);
  text-align: center;
}

.products__circle-text span {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}

@media (max-width: 968px) {
  .products__content {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .products__visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
  background: var(--color-bg-secondary);
}

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

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

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

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

.contact__icon svg {
  width: 20px;
  height: 20px;
}

.contact__label {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.contact__value {
  font-size: var(--text-xl);
  font-weight: var(--font-medium);
  color: var(--color-text-primary);
  transition: color var(--transition-fast);
}

.contact__value:hover {
  color: var(--color-navy);
}

.contact__form {
  background: var(--color-bg-card);
  padding: var(--space-10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (max-width: 968px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

/* ========================================
   Footer
   ======================================== */
.footer {
  padding: var(--space-12) 0;
  background: var(--color-dark);
  color: var(--color-text-light);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: var(--color-text-light);
}

.footer__logo span {
  opacity: 0.7;
}

.footer__text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

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

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-text-light);
}

/* ========================================
   Payment Page Specific
   ======================================== */
.payment-page {
  min-height: 100vh;
  padding-top: 120px;
  background: var(--color-bg-secondary);
}

.payment__container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-12);
  align-items: start;
}

.payment__form-section {
  background: var(--color-bg-card);
  padding: var(--space-10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.payment__summary {
  background: var(--color-bg-card);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 120px;
}

.payment__summary-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.payment__summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
}

.payment__summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: var(--space-4);
  margin-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
}

.payment__price-input {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  text-align: right;
  background: transparent;
  border: none;
  color: var(--color-navy);
  width: 100%;
}

.payment__price-input:focus {
  outline: none;
}

.stripe-element {
  padding: var(--space-4) var(--space-5);
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.stripe-element--focus {
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(10, 25, 68, 0.1);
}

@media (max-width: 968px) {
  .payment__container {
    grid-template-columns: 1fr;
  }

  .payment__summary {
    position: static;
    order: -1;
  }
}

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

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

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

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

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

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

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

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

.hidden {
  display: none !important;
}

/* ========================================
   Stats Section
   ======================================== */
.stats {
  background: var(--color-bg-primary);
  padding: var(--space-16) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.stat-item {
  padding: var(--space-8);
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
  font-weight: var(--font-bold);
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.stat-item__label {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .stat-item {
    padding: var(--space-6);
    border-bottom: 1px solid var(--color-border);
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}

/* ========================================
   Product Gallery Section
   ======================================== */
.gallery {
  background: var(--color-bg-secondary);
  padding: var(--section-padding) 0;
}

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

.gallery-item {
  position: relative;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}



.gallery-item__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--color-navy);
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.gallery-item__image {
  aspect-ratio: 1;
  background: var(--color-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.gallery-item:hover .gallery-item__image img {
  transform: scale(1.05);
}

.gallery-item__placeholder {
  width: 80px;
  height: 80px;
  color: var(--color-navy);
  opacity: 0.3;
}

.gallery-item__content {
  padding: var(--space-6);
  text-align: center;
}

.gallery-item__name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
}

.gallery-item__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

@media (max-width: 968px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
  background: var(--color-bg-primary);
  padding: var(--section-padding) 0;
}

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

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

.testimonial-card:hover {
  border-color: var(--color-navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
  color: #f59e0b;
}

.testimonial-card__text {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--font-semibold);
  color: var(--color-navy);
  flex-shrink: 0;
}

.testimonial-card__info {
  display: flex;
  flex-direction: column;
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
}

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

@media (max-width: 968px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* ========================================
   Hero Image Section
   ======================================== */
.hero__image-container {
  position: relative;
  margin-top: var(--space-12);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero__image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   Additional Responsive Fixes
   ======================================== */
@media (max-width: 768px) {
  .hero {
    padding-top: 140px;
    /* Increased from 80px */
    padding-bottom: var(--space-20);
    min-height: auto;
  }

  .hero__content {
    margin-top: 0;
    /* Reset desktop pull-up for mobile */
  }

  .hero__tagline-main {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 7vw, 3rem);
    /* Reduced from 2.5rem/8vw/5rem */
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-navy);
    margin-bottom: 2.5rem;
    /* Increased from 1.5rem to move things down */
    padding: 0 var(--space-4);
    min-height: 4em;
    /* Match desktop stability for up to 3 lines */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero__static-text {
    font-size: 0.95rem !important;
    /* Slightly larger for clarity */
    margin-bottom: 3.5rem !important;
    /* Increased from 2.5rem */
    font-weight: 600 !important;
    /* Ensure semi-bold on mobile */
  }

  .hero__scroll {
    display: none;
  }

  .about__quote {
    font-size: var(--text-xl);
  }

  .contact__value {
    font-size: var(--text-lg);
    word-break: break-word;
  }

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

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

@media (max-width: 576px) {
  .container {
    padding: 0 var(--space-4);
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .hero__cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ========================================
   Cookie Popup
   ======================================== */
.cookie-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: var(--z-overlay);
  padding: var(--space-6);
  transform: translateY(150%);
  transition: transform var(--transition-slow);
}

.cookie-popup.active {
  transform: translateY(0);
}

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

.cookie-popup__icon {
  font-size: 2rem;
  line-height: 1;
}

.cookie-popup__text h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.cookie-popup__text p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.cookie-popup__text a {
  color: var(--color-navy);
  text-decoration: underline;
  font-weight: 500;
}

/* ========================================
   New Approach (IDA Shapes) Styles
   ======================================== */
.approach__card--ida {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-10);
}

.ida-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  /* Even smaller ida box as requested */
  font-weight: 700;
  margin-bottom: var(--space-2);
  /* Reduced margin */
  color: #fff;
}

.ida-shape {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  /* Slightly smaller shape */
  height: 45px;
  color: var(--color-navy);
  /* Letter color */
  border-radius: 50%;
  /* All circular now */
}

.ida-char {
  line-height: 1;
}

.ida-rest {
  line-height: 1;
}

.approach__title {
  font-size: var(--text-3xl) !important;
  /* Larger as requested */
  font-weight: var(--font-bold);
  color: #fff;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.approach__title .highlight-char {
  color: var(--color-bg-secondary);
  /* or gold/accent if preferred */
}

/* Mobile Menu Fix - Close button visibility on scroll */
.nav__toggle.active {
  z-index: 1001;
  position: fixed;
  right: var(--space-6);
  top: var(--space-6);
}

.nav__toggle.active span {
  background: #000 !important;
  /* Ensure black for contrast against white menu */
}

.nav--scrolled .nav__toggle span {
  background: #fff;
}

.nav--scrolled .nav__toggle.active span {
  background: #000 !important;
}

.cookie-popup__actions {
  display: flex;
  justify-content: flex-end;
}

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

@media (max-width: 576px) {
  .cookie-popup {
    bottom: 0;
    left: 0;
    right: 0;
    max-width: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: var(--space-4);
  }
}