/* ==========================================================================
   LeriqexHub - Office Relocation Service
   Custom CSS - Photo-Centric Design
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  
  --c-primary: #1a3a4a;
  --c-primary-dark: #0f2535;
  --c-primary-light: #2a5570;
  --c-accent: #c8803a;
  --c-accent-light: #e09a54;
  --c-accent-dark: #a8641e;
  --c-white: #f8f6f2;
  --c-off-white: #f0ece4;
  --c-text: #1e2d36;
  --c-text-muted: #5a6e7a;
  --c-text-light: #8a9daa;
  --c-border: #d8d2c8;
  --c-surface: #faf8f5;
  --c-dark: #111820;
  --c-dark-80: rgba(17, 24, 32, 0.8);
  --c-dark-60: rgba(17, 24, 32, 0.6);
  --c-dark-40: rgba(17, 24, 32, 0.4);

  
  --g-hero: linear-gradient(160deg, rgba(15, 37, 53, 0.85) 0%, rgba(26, 58, 74, 0.6) 60%, rgba(200, 128, 58, 0.3) 100%);
  --g-cta: linear-gradient(135deg, #1a3a4a 0%, #0f2535 50%, #c8803a 100%);
  --g-mobile-menu: linear-gradient(160deg, #0f2535 0%, #1a3a4a 100%);

  
  --shadow-sm: 0 1px 3px rgba(17, 24, 32, 0.08), 0 1px 2px rgba(17, 24, 32, 0.06);
  --shadow-md: 0 4px 12px rgba(17, 24, 32, 0.1), 0 2px 6px rgba(17, 24, 32, 0.07);
  --shadow-lg: 0 10px 30px rgba(17, 24, 32, 0.12), 0 4px 10px rgba(17, 24, 32, 0.08);
  --shadow-xl: 0 20px 50px rgba(17, 24, 32, 0.15), 0 8px 20px rgba(17, 24, 32, 0.1);
  --shadow-accent: 0 8px 24px rgba(200, 128, 58, 0.3), 0 2px 8px rgba(200, 128, 58, 0.2);

  
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2rem;
  --sp-xl: 3rem;
  --sp-2xl: 4rem;
  --sp-3xl: 6rem;
  --sp-4xl: 8rem;

  
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  
  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  
  --t-fast: 0.15s ease;
  --t-base: 0.25s ease;
  --t-slow: 0.4s ease;

  
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background-color: var(--c-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* --------------------------------------------------------------------------
   3. Utilities
   -------------------------------------------------------------------------- */
.u-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--sp-lg);
  padding-right: var(--sp-lg);
}

.u-hidden { display: none !important; }
.u-text-center { text-align: center; }
.u-full-width { width: 100%; }
.u-required { color: var(--c-accent); }

/* --------------------------------------------------------------------------
   4. Typography Scale
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--c-primary-dark);
}

p {
  margin-bottom: var(--sp-sm);
}
p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-base);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

.c-btn--primary {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
  box-shadow: var(--shadow-accent);
}
.c-btn--primary:hover {
  background: var(--c-accent-dark);
  border-color: var(--c-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 128, 58, 0.4), 0 4px 10px rgba(200, 128, 58, 0.25);
}

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

.c-btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.c-btn--outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.c-btn--white {
  background: #fff;
  color: var(--c-primary-dark);
  border-color: #fff;
  box-shadow: var(--shadow-md);
}
.c-btn--white:hover {
  background: var(--c-off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.c-btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: var(--r-lg);
}

/* --------------------------------------------------------------------------
   6. Labels / Badges
   -------------------------------------------------------------------------- */
.c-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-sm);
}

.c-label--light {
  color: rgba(255,255,255,0.8);
}

/* --------------------------------------------------------------------------
   7. Navigation
   -------------------------------------------------------------------------- */
.c-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--c-white);
  box-shadow: 0 1px 4px rgba(17, 24, 32, 0.06);
  transition: box-shadow var(--t-base);
  height: var(--nav-h);
}

.c-nav.is-scrolled {
  box-shadow: 0 2px 16px rgba(17, 24, 32, 0.12), 0 1px 4px rgba(17, 24, 32, 0.08);
}

.c-nav__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  height: var(--nav-h);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.c-nav__logo {
  flex-shrink: 0;
}

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

.c-nav__links {
  display: none;
  flex: 1;
  align-items: center;
  gap: var(--sp-sm);
  margin: 0;
}

@media (min-width: 1024px) {
  .c-nav__links {
    display: flex;
  }
}

.c-nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-muted);
  padding: 0.4rem 0.6rem;
  border-radius: var(--r-sm);
  transition: all var(--t-base);
  white-space: nowrap;
}

.c-nav__link:hover,
.c-nav__link.is-active {
  color: var(--c-primary);
  background: rgba(26, 58, 74, 0.06);
}

.c-nav__actions {
  display: none;
  align-items: center;
  gap: var(--sp-sm);
  margin-left: auto;
}

@media (min-width: 1024px) {
  .c-nav__actions {
    display: flex;
  }
}

.c-nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--r-sm);
  transition: background var(--t-base);
}

.c-nav__hamburger:hover {
  background: rgba(26, 58, 74, 0.06);
}

.c-nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--c-primary);
  border-radius: var(--r-full);
  transition: all var(--t-base);
}

@media (min-width: 1024px) {
  .c-nav__hamburger {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   8. Mobile Menu Overlay (Mega Overlay Pattern)
   -------------------------------------------------------------------------- */
.c-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--g-mobile-menu);
  display: flex;
  flex-direction: column;
  padding: var(--sp-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow);
}

.c-mobile-menu.is-active {
  opacity: 1;
  pointer-events: all;
}

.c-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-2xl);
}

.c-mobile-menu__logo {
  height: 32px;
  width: auto;
}

.c-mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-md);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all var(--t-base);
}

.c-mobile-menu__close:hover {
  background: rgba(255,255,255,0.2);
}

.c-mobile-menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
  flex: 1;
  align-content: start;
}

.c-mobile-menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--sp-md);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  min-height: 80px;
  transition: all var(--t-base);
  backdrop-filter: blur(8px);
}

.c-mobile-menu__item:hover {
  background: rgba(200, 128, 58, 0.25);
  border-color: rgba(200, 128, 58, 0.5);
  transform: translateY(-2px);
}

.c-mobile-menu__item i {
  font-size: 1.25rem;
  color: var(--c-accent-light);
}

.c-mobile-menu__footer {
  margin-top: var(--sp-lg);
}

/* --------------------------------------------------------------------------
   9. Hero Section
   -------------------------------------------------------------------------- */
.s-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

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

.s-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.s-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--g-hero);
}

.s-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--sp-3xl) var(--sp-lg) var(--sp-xl);
  width: 100%;
}

.s-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200, 128, 58, 0.25);
  border: 1px solid rgba(200, 128, 58, 0.4);
  color: var(--c-accent-light);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.875rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-md);
  backdrop-filter: blur(8px);
}

.s-hero__title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--sp-md);
  max-width: 700px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.s-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: var(--sp-xl);
  line-height: 1.6;
}

.s-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}


.s-hero__cards {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 0 var(--sp-lg) var(--sp-xl);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.s-hero__cards::-webkit-scrollbar { display: none; }

.s-hero__cards-inner {
  display: flex;
  gap: var(--sp-sm);
  min-width: max-content;
  max-width: 1240px;
  margin: 0 auto;
}

.c-mini-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(248, 246, 242, 0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-lg);
  padding: 0.875rem 1.125rem;
  color: #fff;
  text-decoration: none;
  transition: all var(--t-base);
  min-width: 220px;
  flex-shrink: 0;
}

.c-mini-card:hover {
  background: rgba(200, 128, 58, 0.2);
  border-color: rgba(200, 128, 58, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.c-mini-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(200, 128, 58, 0.25);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--c-accent-light);
  flex-shrink: 0;
}

.c-mini-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.c-mini-card__text strong {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.c-mini-card__text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   10. Intro Section
   -------------------------------------------------------------------------- */
.s-intro {
  position: relative;
  padding: var(--sp-3xl) 0;
  background: var(--c-white);
}

.s-intro__overlap {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--c-white);
  clip-path: ellipse(60% 100% at 50% 100%);
  z-index: 2;
}

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

@media (min-width: 768px) {
  .s-intro__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.s-intro__img-wrap {
  position: relative;
}

.s-intro__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}

.s-intro__img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  background: var(--c-accent);
  border-radius: var(--r-xl);
  z-index: -1;
  opacity: 0.15;
}

.s-intro__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: var(--sp-md);
  color: var(--c-primary-dark);
}

.s-intro__lead {
  font-size: 1.0625rem;
  color: var(--c-text);
  font-weight: 500;
  margin-bottom: var(--sp-sm);
}

.s-intro__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
  margin: var(--sp-lg) 0;
}

.c-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-muted);
}

.c-feature-item i {
  color: var(--c-accent);
  margin-top: 2px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   11. Services Section
   -------------------------------------------------------------------------- */
.s-services {
  padding: var(--sp-3xl) 0;
  background: var(--c-off-white);
}

.s-services__header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

.s-services__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--sp-sm);
}

.s-services__subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: var(--c-text-muted);
  font-size: 1.0625rem;
}

.s-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}

@media (min-width: 640px) {
  .s-services__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .s-services__grid {
    grid-template-columns: 1fr 1.4fr 1fr 1fr;
  }
}

.c-service-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--t-base);
}

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

.c-service-card--featured {
  box-shadow: var(--shadow-lg), 0 0 0 2px var(--c-accent);
}

.c-service-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.c-service-card--featured .c-service-card__img-wrap {
  height: 240px;
}

.c-service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.c-service-card:hover .c-service-card__img {
  transform: scale(1.06);
}

.c-service-card__overlay {
  position: absolute;
  inset: 0;
  background: var(--c-dark-60);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-md);
  opacity: 0;
  transition: opacity var(--t-base);
}

.c-service-card:hover .c-service-card__overlay {
  opacity: 1;
}

.c-service-card__link {
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--c-accent);
  border-radius: var(--r-md);
  transition: background var(--t-fast);
}

.c-service-card__link:hover {
  background: var(--c-accent-dark);
}

.c-service-card__body {
  padding: var(--sp-md);
}

.c-service-card__icon {
  width: 42px;
  height: 42px;
  background: rgba(200, 128, 58, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 1.1rem;
  margin-bottom: var(--sp-sm);
}

.c-service-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--c-primary-dark);
}

.c-service-card__text {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* --------------------------------------------------------------------------
   12. Gallery / Swiper
   -------------------------------------------------------------------------- */
.s-gallery {
  padding: var(--sp-3xl) 0;
  background: var(--c-surface);
}

.s-gallery__header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.s-gallery__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.s-gallery__swiper {
  padding: 0 var(--sp-lg) var(--sp-xl) !important;
}

.s-gallery__slide {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-lg);
}

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

.s-gallery__slide:hover img {
  transform: scale(1.04);
}

.s-gallery__slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15, 37, 53, 0.85));
  color: #fff;
  padding: var(--sp-xl) var(--sp-md) var(--sp-md);
  font-size: 0.9375rem;
  font-weight: 500;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--c-accent) !important;
  background: var(--c-white);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: all var(--t-base);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--c-accent);
  color: #fff !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1rem !important;
  font-weight: 900;
}

.swiper-pagination-bullet {
  background: var(--c-accent) !important;
}

/* --------------------------------------------------------------------------
   13. CTA Banner
   -------------------------------------------------------------------------- */
.s-cta-banner {
  position: relative;
  padding: var(--sp-3xl) 0;
  overflow: hidden;
}

.s-cta-banner__bg {
  position: absolute;
  inset: 0;
  background: var(--g-cta);
}

.s-cta-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.s-cta-banner__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #fff;
  margin-bottom: var(--sp-md);
}

.s-cta-banner__text {
  color: rgba(255,255,255,0.8);
  font-size: 1.0625rem;
  margin-bottom: var(--sp-xl);
}

/* --------------------------------------------------------------------------
   14. Weekend Section
   -------------------------------------------------------------------------- */
.s-weekend {
  position: relative;
  padding: var(--sp-3xl) 0;
  background: var(--c-white);
}

.s-weekend__overlap-top {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--c-white);
  clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%);
}

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

@media (min-width: 768px) {
  .s-weekend__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.s-weekend__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--sp-md);
}

.s-weekend__days {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-top: var(--sp-lg);
}

.c-day-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: 0.875rem var(--sp-md);
  background: var(--c-off-white);
  border-radius: var(--r-md);
  border-left: 4px solid var(--c-border);
  transition: all var(--t-base);
}

.c-day-badge--active {
  border-left-color: var(--c-accent);
  background: rgba(200, 128, 58, 0.06);
}

.c-day-badge__day {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--c-primary-dark);
  min-width: 90px;
}

.c-day-badge__info {
  font-size: 0.875rem;
  color: var(--c-text-muted);
}

.s-weekend__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}

/* --------------------------------------------------------------------------
   15. Minimal CTA
   -------------------------------------------------------------------------- */
.s-minimal-cta {
  padding: var(--sp-3xl) 0;
  background: var(--c-off-white);
}

.s-minimal-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-xl);
}

.s-minimal-cta__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--c-primary-dark);
  max-width: 560px;
}

/* --------------------------------------------------------------------------
   16. Page Hero (Inner Pages)
   -------------------------------------------------------------------------- */
.s-page-hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.s-page-hero__bg {
  position: absolute;
  inset: 0;
}

.s-page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 37, 53, 0.85) 0%, rgba(15, 37, 53, 0.5) 60%, rgba(15, 37, 53, 0.2) 100%);
}

.s-page-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: var(--sp-2xl);
}

.s-page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: var(--sp-sm);
}

.s-page-hero__subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.0625rem;
  max-width: 600px;
}

/* --------------------------------------------------------------------------
   17. Detail Sections (Cum lucrăm)
   -------------------------------------------------------------------------- */
.s-detail {
  padding: var(--sp-3xl) 0;
  background: var(--c-white);
}

.s-detail--alt {
  background: var(--c-off-white);
}

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

@media (min-width: 768px) {
  .s-detail__grid {
    grid-template-columns: 1fr 1fr;
  }

  .s-detail__grid--reversed {
    direction: rtl;
  }

  .s-detail__grid--reversed > * {
    direction: ltr;
  }
}

.s-detail__number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(26, 58, 74, 0.08);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.s-detail__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--sp-md);
}

.s-detail__list {
  margin-top: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.s-detail__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--c-text-muted);
}

.s-detail__list li i {
  color: var(--c-accent);
  flex-shrink: 0;
}

.s-detail__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}

/* --------------------------------------------------------------------------
   18. Process Timeline
   -------------------------------------------------------------------------- */
.s-process {
  padding: var(--sp-3xl) 0;
  background: var(--c-white);
}

.s-process__intro {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

.s-process__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--sp-sm);
}

.s-process__lead {
  max-width: 600px;
  margin: 0 auto;
  color: var(--c-text-muted);
  font-size: 1.0625rem;
}

.s-process__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.c-timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--sp-lg);
  padding-bottom: var(--sp-xl);
}

.c-timeline-item__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-timeline-item__dot {
  width: 48px;
  height: 48px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-accent);
}

.c-timeline-item__line {
  flex: 1;
  width: 2px;
  background: var(--c-border);
  margin-top: 8px;
}

.c-timeline-item__content {
  padding-bottom: var(--sp-lg);
}

.c-timeline-item__icon {
  width: 36px;
  height: 36px;
  background: rgba(200, 128, 58, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  margin-bottom: 0.75rem;
}

.c-timeline-item__title {
  font-size: 1.1875rem;
  margin-bottom: 0.75rem;
  color: var(--c-primary-dark);
}

/* --------------------------------------------------------------------------
   19. FAQ Section
   -------------------------------------------------------------------------- */
.s-faq {
  padding: var(--sp-3xl) 0;
  background: var(--c-off-white);
}

.s-faq__header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

.s-faq__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.s-faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .s-faq__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.c-faq-item {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--c-accent);
  transition: box-shadow var(--t-base);
}

.c-faq-item:hover {
  box-shadow: var(--shadow-md);
}

.c-faq-item__q {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--c-primary-dark);
}

.c-faq-item__a {
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   20. Differences Section (Pentru magazine)
   -------------------------------------------------------------------------- */
.s-differences {
  padding: var(--sp-3xl) 0;
  background: var(--c-primary-dark);
}

.s-differences__header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

.s-differences__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--c-white);
  margin-bottom: var(--sp-sm);
}

.s-differences__subtitle {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

.s-differences__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}

@media (min-width: 640px) {
  .s-differences__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .s-differences__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-diff-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  backdrop-filter: blur(8px);
  transition: all var(--t-base);
}

.c-diff-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.c-diff-card--accent {
  background: rgba(200, 128, 58, 0.15);
  border-color: rgba(200, 128, 58, 0.3);
}

.c-diff-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 128, 58, 0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent-light);
  font-size: 1.25rem;
  margin-bottom: var(--sp-md);
}

.c-diff-card__title {
  font-size: 1.0625rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.c-diff-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* --------------------------------------------------------------------------
   21. Contact Hero
   -------------------------------------------------------------------------- */
.s-contact-hero {
  padding: calc(var(--nav-h) + var(--sp-3xl)) 0 var(--sp-2xl);
  background: var(--c-off-white);
  text-align: center;
}

.s-contact-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--sp-sm);
}

.s-contact-hero__subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: var(--c-text-muted);
  font-size: 1.0625rem;
}

/* --------------------------------------------------------------------------
   22. Contact Methods
   -------------------------------------------------------------------------- */
.s-contact-methods {
  padding: var(--sp-3xl) 0;
  background: var(--c-white);
}

.s-contact-methods__header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

.s-contact-methods__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: var(--sp-sm);
}

.s-contact-methods__subtitle {
  color: var(--c-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.s-contact-methods__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}

@media (min-width: 768px) {
  .s-contact-methods__grid {
    grid-template-columns: 1fr 1.2fr 1fr;
  }
}

.c-method-card {
  background: var(--c-off-white);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  border: 2px solid transparent;
  transition: all var(--t-base);
}

.c-method-card:hover {
  border-color: var(--c-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.c-method-card--featured {
  background: var(--c-primary-dark);
  color: #fff;
}

.c-method-card--featured .c-method-card__title,
.c-method-card--featured .c-method-card__number,
.c-method-card--featured .c-method-card__desc {
  color: rgba(255,255,255,0.9);
}

.c-method-card--featured .c-method-card__number {
  color: var(--c-accent-light);
}

.c-method-card--featured strong {
  color: rgba(255,255,255,0.6);
}

.c-method-card--featured li {
  color: rgba(255,255,255,0.8);
}

.c-method-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(200, 128, 58, 0.12);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 1.375rem;
  margin-bottom: var(--sp-md);
}

.c-method-card--featured .c-method-card__icon {
  background: rgba(200, 128, 58, 0.25);
  color: var(--c-accent-light);
}

.c-method-card__title {
  font-size: 1.1875rem;
  margin-bottom: 0.375rem;
  color: var(--c-primary-dark);
}

.c-method-card__number {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: var(--sp-sm);
}

.c-method-card__number a {
  color: inherit;
  transition: color var(--t-fast);
}

.c-method-card__number a:hover {
  color: var(--c-accent-dark);
}

.c-method-card__desc {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-md);
  line-height: 1.55;
}

.c-method-card__when {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
}

.c-method-card__when strong {
  display: block;
  color: var(--c-text);
  margin-bottom: 0.375rem;
}

.c-method-card__when ul {
  padding-left: 1rem;
}

.c-method-card__when li {
  list-style: disc;
  margin-bottom: 0.25rem;
  color: var(--c-text-muted);
}

/* --------------------------------------------------------------------------
   23. Contact Form Section
   -------------------------------------------------------------------------- */
.s-contact-form {
  padding: var(--sp-3xl) 0;
  background: var(--c-off-white);
}

.s-contact-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}

@media (min-width: 768px) {
  .s-contact-form__grid {
    grid-template-columns: 1fr 1.4fr;
  }
}

.s-contact-form__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: var(--sp-md);
}

.s-contact-form__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}

.c-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
}

.c-contact-detail i {
  width: 36px;
  height: 36px;
  background: rgba(200, 128, 58, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  flex-shrink: 0;
}

.c-contact-detail div {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.c-contact-detail strong {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.c-contact-detail span,
.c-contact-detail a {
  font-size: 0.9375rem;
  color: var(--c-text);
  transition: color var(--t-fast);
}

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


.c-contact-form {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-lg);
}

.c-contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-sm);
}

@media (min-width: 640px) {
  .c-contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.c-contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: var(--sp-sm);
}

.c-contact-form__field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text);
}

.c-contact-form__field input,
.c-contact-form__field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--c-text);
  background: var(--c-white);
  transition: border-color var(--t-base), box-shadow var(--t-base);
  outline: none;
  resize: vertical;
}

.c-contact-form__field input:focus,
.c-contact-form__field textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(200, 128, 58, 0.12);
}

.c-contact-form__field input::placeholder,
.c-contact-form__field textarea::placeholder {
  color: var(--c-text-light);
}

.c-contact-form__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

@media (min-width: 640px) {
  .c-contact-form__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.c-contact-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  cursor: pointer;
  line-height: 1.4;
}

.c-contact-form__privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--c-accent);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
}

.c-contact-form__privacy a {
  color: var(--c-accent);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   24. Map Section
   -------------------------------------------------------------------------- */
.s-map {
  padding: var(--sp-2xl) 0 0;
  background: var(--c-white);
}

.s-map__header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.s-map__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.s-map__iframe-wrap {
  overflow: hidden;
}

.s-map__iframe-wrap iframe {
  display: block;
  filter: grayscale(0.2) contrast(1.05);
}

/* --------------------------------------------------------------------------
   25. Thanks Page
   -------------------------------------------------------------------------- */
.s-thanks {
  padding: calc(var(--nav-h) + var(--sp-4xl)) 0 var(--sp-4xl);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.s-thanks__content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.s-thanks__icon {
  font-size: 4rem;
  color: var(--c-accent);
  margin-bottom: var(--sp-lg);
}

.s-thanks__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: var(--sp-md);
}

.s-thanks__text {
  color: var(--c-text-muted);
  font-size: 1.0625rem;
  margin-bottom: var(--sp-xl);
}

.s-thanks__countdown {
  background: var(--c-off-white);
  border-radius: var(--r-md);
  padding: var(--sp-md);
  margin-bottom: var(--sp-lg);
  font-size: 0.9375rem;
  color: var(--c-text-muted);
}

.s-thanks__countdown strong {
  color: var(--c-accent);
  font-size: 1.125rem;
}

/* --------------------------------------------------------------------------
   26. Legal Pages
   -------------------------------------------------------------------------- */
.s-legal {
  padding: calc(var(--nav-h) + var(--sp-3xl)) 0 var(--sp-3xl);
  min-height: 70vh;
}

.s-legal__header {
  margin-bottom: var(--sp-2xl);
  padding-bottom: var(--sp-lg);
  border-bottom: 2px solid var(--c-border);
}

.s-legal__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--sp-sm);
}

.s-legal__date {
  color: var(--c-text-muted);
  font-size: 0.9375rem;
}

.s-legal__body {
  max-width: 800px;
}

.s-legal__body h2 {
  font-size: 1.25rem;
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
  color: var(--c-primary-dark);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--c-border);
}

.s-legal__body p {
  color: var(--c-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}

/* --------------------------------------------------------------------------
   27. Footer
   -------------------------------------------------------------------------- */
.c-footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--sp-3xl) 0 0;
}

.c-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-2xl);
}

@media (min-width: 640px) {
  .c-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .c-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.c-footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: var(--sp-md);
}

.c-footer__tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--sp-md);
  color: rgba(255,255,255,0.6);
}

.c-footer__address,
.c-footer__phone,
.c-footer__email {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
  transition: color var(--t-fast);
}

.c-footer__phone:hover,
.c-footer__email:hover {
  color: var(--c-accent-light);
}

.c-footer__address i,
.c-footer__phone i,
.c-footer__email i {
  color: var(--c-accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.c-footer__nav-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-md);
}

.c-footer__nav-list li {
  margin-bottom: 0.5rem;
}

.c-footer__nav-list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
}

.c-footer__nav-list a:hover {
  color: var(--c-accent-light);
}

.c-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-lg) 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

@media (min-width: 768px) {
  .c-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.c-footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.c-footer__bottom a {
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
}

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

/* --------------------------------------------------------------------------
   28. Cookie Consent (Corner Right Modal)
   -------------------------------------------------------------------------- */
.c-cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 320px;
  background: var(--c-white);
  border-radius: var(--r-xl);
  box-shadow:
    0 20px 60px rgba(17, 24, 32, 0.18),
    0 8px 20px rgba(17, 24, 32, 0.1),
    0 0 0 1px rgba(17, 24, 32, 0.05);
  overflow: hidden;
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.c-cookie-consent.is-visible {
  transform: translateY(0);
}

.c-cookie-consent.is-expanded {
  width: 340px;
}

.c-cookie-consent__header {
  background: var(--c-primary-dark);
  padding: var(--sp-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.c-cookie-consent__icon {
  font-size: 1.5rem;
}

.c-cookie-consent__header h3 {
  color: #fff;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.c-cookie-consent__body {
  padding: var(--sp-md);
}

.c-cookie-consent__text {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  line-height: 1.55;
  margin-bottom: var(--sp-md);
}

.c-cookie-consent__text a {
  color: var(--c-accent);
  text-decoration: underline;
}

.c-cookie-consent__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-cookie-consent__btn {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--t-base);
  min-height: 40px;
}

.c-cookie-consent__btn--accept {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}

.c-cookie-consent__btn--accept:hover {
  background: var(--c-accent-dark);
}

.c-cookie-consent__btn--customize {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-border);
}

.c-cookie-consent__btn--customize:hover {
  border-color: var(--c-primary);
  background: rgba(26, 58, 74, 0.04);
}

.c-cookie-consent__btn--reject {
  background: transparent;
  color: var(--c-text-muted);
  border-color: transparent;
  font-size: 0.8125rem;
}

.c-cookie-consent__btn--reject:hover {
  color: var(--c-text);
}

.c-cookie-consent__toggles {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--sp-md);
  padding-top: var(--sp-sm);
  border-top: 1px solid var(--c-border);
}

.c-cookie-consent.is-expanded .c-cookie-consent__toggles {
  display: flex;
}

.c-cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.c-cookie-toggle__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-text);
}

.c-cookie-toggle__desc {
  font-size: 0.75rem;
  color: var(--c-text-muted);
}

.c-cookie-toggle__info {
  display: flex;
  flex-direction: column;
}

.c-cookie-toggle__switch {
  position: relative;
  width: 38px;
  height: 22px;
  flex-shrink: 0;
}

.c-cookie-toggle__switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.c-cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--c-border);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background var(--t-base);
}

.c-cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--t-base);
  box-shadow: var(--shadow-sm);
}

.c-cookie-toggle__switch input:checked + .c-cookie-toggle__slider {
  background: var(--c-accent);
}

.c-cookie-toggle__switch input:checked + .c-cookie-toggle__slider::before {
  transform: translateX(16px);
}

.c-cookie-toggle__switch input:disabled + .c-cookie-toggle__slider {
  background: var(--c-accent);
  opacity: 0.6;
  cursor: not-allowed;
}

/* --------------------------------------------------------------------------
   29. Responsive Adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .s-hero {
    min-height: 100svh;
  }

  .s-hero__ctas {
    flex-direction: column;
  }

  .s-hero__ctas .c-btn {
    width: 100%;
    justify-content: center;
  }

  .s-intro__features {
    grid-template-columns: 1fr;
  }

  .c-contact-form {
    padding: var(--sp-md);
  }

  .c-cookie-consent {
    bottom: 0;
    right: 0;
    left: 0;
    width: auto;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .c-cookie-consent.is-expanded {
    width: auto;
  }
}

@media (max-width: 1023px) {
  .c-nav__actions {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   30. Accessibility & Focus
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}