/* PariVqar Lab — Custom CSS
   Gradient Atmosphere Design Concept
   CSS Class Convention: s- (sections), c- (components), u- (utilities), is- (states)
*/

/* ============================
   CSS CUSTOM PROPERTIES
   ============================ */
:root {
  
  --color-primary: #2563EB;
  --color-primary-dark: #1D4ED8;
  --color-secondary: #0EA5E9;
  --color-accent: #06B6D4;
  --color-accent-warm: #7C3AED;
  --color-text: #1E293B;
  --color-text-muted: #475569;
  --color-text-light: #94A3B8;
  --color-bg: #F8FAFC;
  --color-bg-card: #FFFFFF;
  --color-border: #E2E8F0;
  --color-surface: #F1F5F9;

  
  --grad-primary: linear-gradient(135deg, #2563EB 0%, #0EA5E9 50%, #06B6D4 100%);
  --grad-hero: linear-gradient(150deg, #0F172A 0%, #1E3A5F 35%, #1D4ED8 65%, #0EA5E9 100%);
  --grad-section: linear-gradient(135deg, #EFF6FF 0%, #E0F2FE 50%, #ECFEFF 100%);
  --grad-cta: linear-gradient(135deg, #1D4ED8 0%, #0EA5E9 60%, #06B6D4 100%);
  --grad-text: linear-gradient(135deg, #2563EB, #06B6D4);
  --grad-page-hero: linear-gradient(150deg, #0F172A 0%, #1E3A5F 40%, #0EA5E9 100%);

  
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2.5rem, 5vw, 4rem);
  --space-2xl: clamp(4rem, 8vw, 7rem);

  
  --font-heading: 'Vollkorn', Georgia, serif;
  --font-body: 'Work Sans', system-ui, sans-serif;
  --text-xs: clamp(0.75rem, 1.5vw, 0.875rem);
  --text-sm: clamp(0.875rem, 1.8vw, 1rem);
  --text-base: clamp(1rem, 2vw, 1.125rem);
  --text-lg: clamp(1.125rem, 2.5vw, 1.375rem);
  --text-xl: clamp(1.375rem, 3vw, 1.75rem);
  --text-2xl: clamp(1.75rem, 4vw, 2.5rem);
  --text-3xl: clamp(2.25rem, 5vw, 3.5rem);
  --text-hero: clamp(4rem, 12vw, 9rem);

  
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.07), 0 2px 4px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.1), 0 4px 6px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px rgba(15, 23, 42, 0.12), 0 8px 10px rgba(15, 23, 42, 0.06);
  --shadow-colored: 0 8px 32px rgba(37, 99, 235, 0.25), 0 2px 8px rgba(37, 99, 235, 0.12);

  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  
  --transition-fast: 150ms ease;
  --transition-base: 280ms ease;
  --transition-slow: 450ms cubic-bezier(0.4, 0, 0.2, 1);

  
  --nav-height: 72px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
}

mark {
  background: none;
  background-image: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
}

/* ============================
   UTILITIES
   ============================ */
.u-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.u-container--narrow {
  max-width: 780px;
}

.u-text-center { text-align: center; }
.u-hidden { display: none !important; }

/* ============================
   SKIP LINK
   ============================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-size: var(--text-sm);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 1rem;
  color: #fff;
}

/* ============================
   NAVIGATION
   ============================ */
.c-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(-100%);
  transition: transform var(--transition-slow);
}

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

.c-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.c-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.c-nav__menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-nav__menu.is-open {
  max-height: 500px;
}

.c-nav__menu ul {
  display: flex;
  flex-direction: column;
  padding: var(--space-sm) 0 var(--space-md);
  background: rgba(15, 23, 42, 0.98);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.c-nav__menu ul li a {
  display: block;
  padding: 0.75rem clamp(1rem, 4vw, 2.5rem);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  font-weight: 500;
  font-family: var(--font-body);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.c-nav__menu ul li a:hover,
.c-nav__menu ul li a.is-active {
  color: var(--color-accent);
  background: rgba(6, 182, 212, 0.08);
}

.c-nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.c-nav__toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.c-nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.c-nav__toggle.is-open .c-nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.c-nav__toggle.is-open .c-nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.c-nav__toggle.is-open .c-nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 900px) {
  .c-nav__toggle { display: none; }
  .c-nav__menu {
    display: flex !important;
    max-height: none !important;
    overflow: visible;
  }
  .c-nav__menu ul {
    flex-direction: row;
    gap: 0;
    background: none;
    border: none;
    padding: 0;
    align-items: center;
  }
  .c-nav__menu ul li a {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
  }
  .c-nav__menu ul li a:hover,
  .c-nav__menu ul li a.is-active {
    background: rgba(6, 182, 212, 0.1);
  }
}


@media (max-width: 899px) {
  .c-nav__menu {
    display: block;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
  }
}

/* ============================
   BUTTONS
   ============================ */
.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  cursor: pointer;
  border: none;
  min-height: 48px;
}

.c-btn:hover {
  transform: translateY(-2px);
}

.c-btn--primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-colored);
}

.c-btn--primary:hover {
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.35), 0 4px 12px rgba(37, 99, 235, 0.2);
  color: #fff;
}

.c-btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.c-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

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

.c-btn--white:hover {
  background: var(--color-bg);
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-xl);
}

/* ============================
   HERO SECTION
   ============================ */
.s-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
  padding: var(--space-2xl) clamp(1rem, 4vw, 2.5rem);
}

.s-hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.s-hero__bg-shape {
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  background: radial-gradient(circle, #0EA5E9 0%, transparent 70%);
  top: -10%;
  right: -10%;
}

.s-hero__bg-shape--2 {
  width: clamp(200px, 35vw, 400px);
  height: clamp(200px, 35vw, 400px);
  background: radial-gradient(circle, #7C3AED 0%, transparent 70%);
  bottom: 5%;
  left: -5%;
  opacity: 0.12;
}

.s-hero__bg-shape--3 {
  width: clamp(150px, 25vw, 300px);
  height: clamp(150px, 25vw, 300px);
  background: radial-gradient(circle, #06B6D4 0%, transparent 70%);
  top: 40%;
  left: 30%;
  opacity: 0.1;
}

.s-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.s-hero__display {
  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: 800;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
}

.s-hero__display mark {
  background-image: linear-gradient(135deg, #38BDF8, #06B6D4);
}

.s-hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-xl);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.s-hero__sentinel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
}

/* ============================
   INTRO SECTION
   ============================ */
.s-intro {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

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

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

.s-intro__heading {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.s-intro__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.s-intro__text p:last-of-type {
  margin-bottom: var(--space-lg);
}

.s-intro__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.s-intro__figure::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}

.s-intro__figure img {
  width: 100%;
  height: clamp(280px, 40vw, 460px);
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.s-intro__figure:hover img {
  transform: scale(1.03);
}

.s-intro__figure figcaption {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-xs);
  color: var(--color-text-light);
  font-style: italic;
  background: var(--color-surface);
}

/* ============================
   PROCESS SECTION
   ============================ */
.s-process {
  padding: var(--space-2xl) 0;
  background: var(--grad-section);
}

.s-process__heading {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}

.s-process__lead {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  font-size: var(--text-lg);
}

.s-process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
}

.c-step {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  opacity: 0;
  transform: translateY(20px);
}

.c-step.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition-base);
}

.c-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.c-step__icon {
  width: 52px;
  height: 52px;
  background: var(--grad-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-colored);
}

.c-step__title {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  font-family: var(--font-heading);
}

.c-step__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================
   HORIZONTAL SCROLL SECTION
   ============================ */
.s-horizontal-scroll {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.s-horizontal-scroll__heading {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xs);
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.s-horizontal-scroll__lead {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.s-horizontal-scroll__track-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) var(--color-surface);
  padding: var(--space-md) clamp(1rem, 4vw, 2.5rem) var(--space-lg);
  cursor: grab;
}

.s-horizontal-scroll__track-wrapper:active {
  cursor: grabbing;
}

.s-horizontal-scroll__track-wrapper::-webkit-scrollbar {
  height: 4px;
}

.s-horizontal-scroll__track-wrapper::-webkit-scrollbar-track {
  background: var(--color-surface);
  border-radius: var(--radius-full);
}

.s-horizontal-scroll__track-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

.s-horizontal-scroll__track {
  display: flex;
  gap: var(--space-md);
  width: max-content;
}

.c-service-card {
  width: clamp(280px, 35vw, 360px);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.c-service-card__figure {
  margin: 0;
  overflow: hidden;
}

.c-service-card__figure img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.c-service-card:hover .c-service-card__figure img {
  transform: scale(1.05);
}

.c-service-card__body {
  padding: var(--space-lg);
}

.c-service-card__body h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.c-service-card__body p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.c-service-card__body ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.c-service-card__body ul li {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.c-service-card__body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.75rem;
}

.s-horizontal-scroll__nav {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-md);
}

.c-scroll-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.c-scroll-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transform: scale(1.08);
  box-shadow: var(--shadow-colored);
}

/* ============================
   IDEAL FOR SECTION
   ============================ */
.s-ideal {
  padding: var(--space-2xl) 0;
  background: var(--grad-section);
}

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

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

.s-ideal__content h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.s-ideal__content > p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.s-ideal__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.s-ideal__list li {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.s-ideal__list li i {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--grad-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  margin-top: 2px;
  box-shadow: var(--shadow-sm);
}

.s-ideal__list li strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.s-ideal__list li p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.s-ideal__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.s-ideal__figure img {
  width: 100%;
  height: clamp(300px, 45vw, 500px);
  object-fit: cover;
}

.s-ideal__figure figcaption {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-xs);
  color: var(--color-text-light);
  font-style: italic;
  background: var(--color-surface);
}

/* ============================
   PULL QUOTE
   ============================ */
.s-pullquote {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 60%, #1D4ED8 100%);
}

.c-pullquote {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.c-pullquote__mark {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 0.7;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.c-pullquote__text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.c-pullquote__cite {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
  letter-spacing: 0.05em;
}

.c-pullquote__cite mark {
  background-image: linear-gradient(135deg, #38BDF8, #06B6D4);
}

/* ============================
   AREA SECTION
   ============================ */
.s-area {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.s-area h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}

.s-area__lead {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  font-size: var(--text-lg);
}

.s-area__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-md);
}

.c-area-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid var(--color-border);
}

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

.c-area-card i {
  font-size: 2rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
  display: block;
}

.c-area-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.c-area-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================
   FAQ SECTION
   ============================ */
.s-faq {
  padding: var(--space-2xl) 0;
  background: var(--grad-section);
}

.s-faq h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xl);
}

.s-faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.c-faq-item {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}

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

.c-faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  min-height: 56px;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.c-faq-item__question:hover {
  color: var(--color-primary);
  background: var(--color-surface);
}

.c-faq-item__icon {
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 0.875rem;
  transition: transform var(--transition-base);
}

.c-faq-item__question[aria-expanded="true"] .c-faq-item__icon {
  transform: rotate(45deg);
}

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

.c-faq-item__answer.is-open {
  max-height: 400px;
}

.c-faq-item__answer p {
  padding: 0 var(--space-lg) var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================
   CTA BANNER
   ============================ */
.s-cta-banner {
  padding: var(--space-2xl) 0;
  background: var(--grad-cta);
  position: relative;
  overflow: hidden;
}

.s-cta-banner__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(124, 58, 237, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

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

.s-cta-banner__content h2 {
  font-size: var(--text-2xl);
  color: #fff;
  margin-bottom: var(--space-md);
}

.s-cta-banner__content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-lg);
  font-size: var(--text-lg);
}

/* ============================
   SIDEBAR CTA
   ============================ */
.c-sidebar-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.c-sidebar-cta.is-visible {
  opacity: 1;
  pointer-events: all;
}

.c-sidebar-cta__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  background: var(--grad-primary);
  color: #fff;
  padding: 1rem 0.75rem;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-colored);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.05em;
  min-height: 100px;
}

.c-sidebar-cta__btn i {
  writing-mode: horizontal-tb;
  font-size: 1.1rem;
}

.c-sidebar-cta__btn span {
  transform: rotate(180deg);
}

.c-sidebar-cta__btn:hover {
  transform: translateX(-4px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.4);
  color: #fff;
}

/* ============================
   PAGE HERO
   ============================ */
.s-page-hero {
  padding: clamp(6rem, 12vw, 10rem) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
  background: var(--grad-page-hero);
}

.s-page-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(6, 182, 212, 0.25) 0%, transparent 55%),
              radial-gradient(ellipse at 20% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 55%);
  pointer-events: none;
}

.s-page-hero__title {
  font-size: var(--text-3xl);
  color: #fff;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
}

.s-page-hero__title mark {
  background-image: linear-gradient(135deg, #38BDF8, #06B6D4);
}

.s-page-hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* ============================
   CONTENT SECTIONS (inner pages)
   ============================ */
.s-commitment-intro,
.s-unique-intro,
.s-owners-intro {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.s-commitment-intro__grid,
.s-owners-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.s-commitment-intro__text h2,
.s-owners-intro__text h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.s-commitment-intro__text p,
.s-owners-intro__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.s-commitment-intro__figure,
.s-owners-intro__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.s-commitment-intro__figure img,
.s-owners-intro__figure img {
  width: 100%;
  height: clamp(280px, 40vw, 460px);
  object-fit: cover;
}

.s-commitment-intro__figure figcaption,
.s-owners-intro__figure figcaption {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-xs);
  color: var(--color-text-light);
  font-style: italic;
  background: var(--color-surface);
}


.s-values {
  padding: var(--space-2xl) 0;
  background: var(--grad-section);
}

.s-values h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xl);
}

.s-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-md);
}

.c-value-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid var(--color-border);
}

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

.c-value-card__icon {
  width: 52px;
  height: 52px;
  background: var(--grad-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-colored);
}

.c-value-card h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
}

.c-value-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.c-value-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.c-value-card ul li {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.c-value-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.75rem;
}


.s-equipment {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.s-equipment h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xl);
}

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

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

.s-equipment__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.s-equipment__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.s-equipment__figure img {
  width: 100%;
  height: clamp(280px, 40vw, 460px);
  object-fit: cover;
}

.s-equipment__figure figcaption {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-xs);
  color: var(--color-text-light);
  font-style: italic;
  background: var(--color-surface);
}


.s-unique-intro h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.s-unique-intro__lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  max-width: 720px;
  line-height: 1.7;
}

.s-unique-intro__stages {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 780px;
}

.c-stage {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.c-stage:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.c-stage__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  line-height: 1;
  min-width: 44px;
}

.c-stage__content h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
}

.c-stage__content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}


.s-drying {
  padding: var(--space-2xl) 0;
  background: var(--grad-section);
}

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

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

.s-drying__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  order: -1;
}

@media (min-width: 768px) {
  .s-drying__figure { order: 0; }
}

.s-drying__figure img {
  width: 100%;
  height: clamp(280px, 40vw, 460px);
  object-fit: cover;
}

.s-drying__figure figcaption {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-xs);
  color: var(--color-text-light);
  font-style: italic;
  background: var(--color-surface);
}

.s-drying__content h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.s-drying__content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.s-drying__tips {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.s-drying__tips li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.s-drying__tips li i {
  color: var(--color-accent);
  font-size: 0.875rem;
  flex-shrink: 0;
}


.s-owner-scenarios {
  padding: var(--space-2xl) 0;
  background: var(--grad-section);
}

.s-owner-scenarios h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xl);
}

.s-owner-scenarios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-md);
}

.c-scenario-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.c-scenario-card__icon {
  width: 52px;
  height: 52px;
  background: var(--grad-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-colored);
}

.c-scenario-card h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
}

.c-scenario-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.c-scenario-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.c-scenario-card ul li {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.c-scenario-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}


.s-pets-section {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

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

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

.s-pets-section__content h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.s-pets-section__content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.s-pets-section__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.s-pets-section__figure img {
  width: 100%;
  height: clamp(280px, 40vw, 460px);
  object-fit: cover;
}

.s-pets-section__figure figcaption {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-xs);
  color: var(--color-text-light);
  font-style: italic;
  background: var(--color-surface);
}

/* ============================
   CONTACT PAGE
   ============================ */
.s-contact-main {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.s-contact-main__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

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

.s-contact-main__form-area h2,
.s-contact-main__info h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.s-contact-main__form-area > p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}


.c-form-field {
  margin-bottom: var(--space-md);
}

.c-form-field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.c-form-field label span[aria-hidden] {
  color: var(--color-primary);
}

.c-form-field input[type="text"],
.c-form-field input[type="email"],
.c-form-field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text);
  background: var(--color-bg-card);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 48px;
}

.c-form-field input:focus,
.c-form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.c-form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.c-form-field--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.c-form-field--checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.c-form-field--checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  color: var(--color-text-muted);
  cursor: pointer;
}

.c-form-field--checkbox label a {
  color: var(--color-primary);
  text-decoration: underline;
}

output#form-status {
  display: block;
  min-height: 1.5rem;
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

output#form-status.is-error {
  color: #DC2626;
}


.c-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

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

.c-contact-info__item i {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--grad-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  margin-top: 2px;
  box-shadow: var(--shadow-sm);
}

.c-contact-info__item strong {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: 0.2rem;
}

.c-contact-info__item a {
  font-size: var(--text-base);
  color: var(--color-text);
  font-weight: 500;
  display: block;
}

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

.c-contact-info__item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.c-contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.c-contact-map iframe {
  display: block;
}


.s-contact-faq {
  padding: var(--space-2xl) 0;
  background: var(--grad-section);
}

.s-contact-faq h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xl);
}

.s-contact-faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-md);
}

.c-contact-faq-item {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.c-contact-faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.c-contact-faq-item i {
  font-size: 1.5rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: var(--space-sm);
}

.c-contact-faq-item h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
}

.c-contact-faq-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================
   THANKS PAGE
   ============================ */
.s-thanks {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
  padding: var(--space-2xl) 0;
}

.s-thanks__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(6, 182, 212, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.s-thanks__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.s-thanks__icon {
  font-size: 4rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

.s-thanks h1 {
  font-size: var(--text-3xl);
  color: #fff;
  margin-bottom: var(--space-md);
}

.s-thanks p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-md);
}

.s-thanks__redirect {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-lg);
}

.s-thanks__redirect strong {
  color: var(--color-accent);
}

/* ============================
   LEGAL PAGES
   ============================ */
.s-legal-hero {
  padding: clamp(5rem, 10vw, 8rem) 0 var(--space-xl);
  background: var(--grad-section);
  border-bottom: 1px solid var(--color-border);
}

.s-legal-hero h1 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xs);
}

.s-legal-hero small {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.s-legal-content {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.s-legal-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.s-legal-content h2 {
  font-size: var(--text-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.s-legal-content code {
  background: var(--color-surface);
  padding: 0.15em 0.4em;
  border-radius: var(--radius-sm);
  font-size: 0.9em;
  color: var(--color-primary-dark);
}

/* ============================
   FOOTER
   ============================ */
.c-footer {
  background: #0F172A;
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-2xl) 0 0;
  margin-top: auto;
}

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

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

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

.c-footer__logo {
  margin-bottom: var(--space-md);
  filter: brightness(0) invert(1) opacity(0.9);
}

.c-footer__brand p {
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 280px;
}

.c-footer__nav h4,
.c-footer__contact h4,
.c-footer__legal h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-md);
}

.c-footer__nav ul,
.c-footer__legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.c-footer__nav ul li a,
.c-footer__legal ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.c-footer__nav ul li a:hover,
.c-footer__legal ul li a:hover {
  color: var(--color-accent);
}

.c-footer__contact address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.c-footer__contact address p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
}

.c-footer__contact address i {
  color: var(--color-accent);
  font-size: 0.875rem;
  width: 16px;
  flex-shrink: 0;
}

.c-footer__contact address a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}

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

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

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

.c-footer__bottom small {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
}

/* ============================
   COOKIE CONSENT BAR
   ============================ */
.c-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: #0F172A;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.c-cookie-bar__main {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-md) clamp(1rem, 4vw, 2.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

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

.c-cookie-bar__text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

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

.c-cookie-bar__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.c-cookie-bar__btn {
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition-fast);
  min-height: 44px;
}

.c-cookie-bar__btn--reject {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

.c-cookie-bar__btn--reject:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

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

.c-cookie-bar__btn--customize:hover {
  background: rgba(6, 182, 212, 0.1);
}

.c-cookie-bar__btn--accept {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
}

.c-cookie-bar__btn--accept:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.c-cookie-bar__expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 0px solid rgba(255, 255, 255, 0.08);
}

.c-cookie-bar__expand.is-open {
  max-height: 300px;
  border-top-width: 1px;
}

.c-cookie-bar__categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding: var(--space-md) clamp(1rem, 4vw, 2.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.c-cookie-bar__category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.c-cookie-bar__category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}

.c-cookie-bar__category small {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  margin-left: 0.25rem;
}

.c-cookie-bar__expand .c-cookie-bar__btn {
  display: block;
  margin: 0 clamp(1rem, 4vw, 2.5rem) var(--space-md);
  width: auto;
  display: inline-flex;
}

/* ============================
   SCROLL REVEAL ANIMATIONS
   ============================ */
.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   RESPONSIVE ADJUSTMENTS
   ============================ */
@media (max-width: 480px) {
  .s-hero__display {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  .c-sidebar-cta {
    display: none;
  }

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

@media (max-width: 767px) {
  .s-ideal__grid,
  .s-commitment-intro__grid,
  .s-equipment__grid,
  .s-drying__grid,
  .s-pets-section__grid,
  .s-owners-intro__grid {
    grid-template-columns: 1fr;
  }
}