/* ============================================================
   MASSAGE NICE - style.css
   Mediterranean Teal/Turquoise Design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --primary: #1A6B72;
  --secondary: #2DA8B0;
  --accent: #E8F6F7;
  --gold: #C9A84C;
  --gold-dark: #a8893a;
  --dark: #1C2B2D;
  --dark-light: #2e4447;
  --white: #FFFFFF;
  --gray-light: #f5f9fa;
  --gray: #8a9da0;
  --gray-text: #4a6063;
  --border: #d0e8eb;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Open Sans', sans-serif;

  --shadow-sm: 0 2px 8px rgba(26, 107, 114, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 107, 114, 0.12);
  --shadow-lg: 0 8px 40px rgba(26, 107, 114, 0.18);
  --shadow-xl: 0 16px 60px rgba(26, 107, 114, 0.22);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;

  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  --max-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--dark);
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--accent);
}

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

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

.section-teal {
  background-color: var(--primary);
  color: var(--white);
}

.section-teal h1,
.section-teal h2,
.section-teal h3 {
  color: var(--white);
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-teal { color: var(--primary); }
.text-secondary { color: var(--secondary); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
}

.section-label-light {
  color: var(--accent);
  opacity: 0.8;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.section-subtitle-light {
  color: rgba(232, 246, 247, 0.85);
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--gold));
  margin: 20px auto 40px;
  border-radius: 2px;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

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

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

.btn-teal {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26, 107, 114, 0.3);
}

.btn-teal:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 107, 114, 0.4);
  color: var(--white);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

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

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(28, 43, 45, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 168, 176, 0.15);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(28, 43, 45, 0.99);
  box-shadow: var(--shadow-md);
  height: 70px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo-main span {
  color: var(--secondary);
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 3px 12px rgba(201, 168, 76, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.45);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

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

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--dark);
  padding: 24px;
  flex-direction: column;
  gap: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(45, 168, 176, 0.2);
  transform: translateY(-110%);
  transition: transform var(--transition);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(45, 168, 176, 0.1);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--secondary);
}

.mobile-nav-cta {
  display: block;
  margin-top: 16px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #0d3a3e 0%,
    #1A6B72 35%,
    #1e7880 55%,
    #155a61 75%,
    #0a2e32 100%
  );
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(45, 168, 176, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 60% 80%, rgba(26, 107, 114, 0.3) 0%, transparent 60%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(28, 43, 45, 0.6));
}

/* Floating geometric shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(45, 168, 176, 0.06);
  animation: floatShape 8s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -80px;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 250px;
  height: 250px;
  bottom: 80px;
  right: 15%;
  animation-delay: 2s;
  background: rgba(201, 168, 76, 0.05);
}

.hero-shape:nth-child(3) {
  width: 180px;
  height: 180px;
  top: 30%;
  left: 5%;
  animation-delay: 4s;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 120px 24px 80px;
  margin: 0 auto 0 0;
  margin-left: 0;
  padding-left: calc((100vw - var(--max-width)) / 2 + 24px);
}

@media (max-width: 1200px) {
  .hero-content {
    padding-left: 24px;
    margin-left: 0;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(45, 168, 176, 0.15);
  border: 1px solid rgba(45, 168, 176, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 28px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 .highlight {
  color: var(--secondary);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(232, 246, 247, 0.88);
  line-height: 1.85;
  margin-bottom: 44px;
  max-width: 620px;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--dark);
  padding: 0;
  border-top: 1px solid rgba(45, 168, 176, 0.15);
  border-bottom: 1px solid rgba(45, 168, 176, 0.15);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-width);
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(45, 168, 176, 0.2);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), rgba(45, 168, 176, 0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap var(--transition);
}

.service-link:hover {
  gap: 10px;
  color: var(--secondary);
}

/* ============================================================
   AUDIENCE SECTION
   ============================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition);
}

.audience-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
  transform: translateY(-3px);
}

.audience-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.audience-card h4 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.audience-card p {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(45, 168, 176, 0.15);
  transition: all var(--transition);
}

.why-item:hover {
  background: rgba(45, 168, 176, 0.1);
  border-color: rgba(45, 168, 176, 0.3);
}

.why-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.why-text h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.why-text p {
  color: rgba(232, 246, 247, 0.75);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   HOW IT WORKS - STEPS
   ============================================================ */
.steps-container {
  position: relative;
  max-width: 800px;
  margin: 52px auto 0;
}

.steps-container::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--secondary), var(--primary), var(--gold));
}

.step-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 24px 28px;
  margin-bottom: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.step-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
  transform: translateX(6px);
}

.step-number {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  z-index: 1;
  position: relative;
  box-shadow: 0 4px 14px rgba(26, 107, 114, 0.3);
}

.step-content h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-container {
  max-width: 820px;
  margin: 52px auto 0;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  transition: background var(--transition);
  gap: 16px;
}

.faq-question:hover {
  background: var(--gray-light);
}

.faq-question h4 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  transition: all var(--transition);
  line-height: 1;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
  padding: 0 28px;
}

.faq-answer p {
  padding: 0 0 22px;
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ============================================================
   TESTIMONIALS CAROUSEL
   ============================================================ */
.testimonials-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  padding: 80px 0;
  overflow: hidden;
}

.testimonials-wrapper {
  position: relative;
  margin-top: 52px;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform 0.6s ease;
}

.testimonial-card {
  min-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(45, 168, 176, 0.15);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition);
  flex-shrink: 0;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(45, 168, 176, 0.3);
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--secondary);
  opacity: 0.15;
  font-weight: 700;
}

.testimonial-stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-text {
  font-size: 0.925rem;
  color: rgba(232, 246, 247, 0.82);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.78rem;
  color: rgba(232, 246, 247, 0.5);
  margin-top: 2px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(45, 168, 176, 0.3);
  background: rgba(45, 168, 176, 0.08);
  color: var(--secondary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.carousel-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(45, 168, 176, 0.3);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.carousel-dot.active {
  background: var(--secondary);
  transform: scale(1.4);
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.team-avatar {
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #3dc0c8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='80' r='45' fill='rgba(255,255,255,0.12)'/%3E%3Ccircle cx='100' cy='200' r='70' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E") center/cover;
}

.team-initials {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.team-body {
  padding: 28px;
}

.team-name {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.team-exp {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.team-quote {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--primary);
  border-left: 3px solid var(--secondary);
  padding: 10px 16px;
  background: var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 20px;
}

.team-formations {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.team-formations h5 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.formation-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 500;
  margin: 3px 3px 3px 0;
}

/* ============================================================
   VALUES
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 40px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(45, 168, 176, 0.15);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.value-card:hover {
  background: rgba(45, 168, 176, 0.08);
  border-color: rgba(45, 168, 176, 0.3);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.value-card h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 14px;
}

.value-card p {
  font-size: 0.9rem;
  color: rgba(232, 246, 247, 0.72);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.certif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.certif-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.certif-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
  transform: translateY(-3px);
}

.certif-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.certif-item p {
  font-size: 0.82rem;
  color: var(--gray-text);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th {
  background: var(--primary);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--gray-text);
  border-bottom: 1px solid var(--border);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
  background: var(--gray-light);
}

.comparison-table tr:hover td {
  background: var(--accent);
  color: var(--dark);
}

.badge-intensity {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
}

.badge-douce { background: #d4edda; color: #155724; }
.badge-moderee { background: #fff3cd; color: #856404; }
.badge-forte { background: #f8d7da; color: #721c24; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info-block {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}

.contact-phone-big {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-md);
  margin: 24px 0;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.contact-phone-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45);
}

.contact-phone-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-phone-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.contact-phone-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hours-list {
  margin-top: 16px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(45, 168, 176, 0.15);
  font-size: 0.9rem;
}

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

.hours-day {
  color: rgba(232, 246, 247, 0.7);
  font-weight: 400;
}

.hours-time {
  color: var(--secondary);
  font-weight: 600;
}

.contact-why-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(232, 246, 247, 0.8);
  line-height: 1.6;
}

.contact-why-item::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.contact-location {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  margin-top: 40px;
}

.contact-location h2 {
  color: var(--primary);
  margin-bottom: 16px;
}

/* ============================================================
   PAGE HEADER (internal pages)
   ============================================================ */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 60%, var(--dark-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(45, 168, 176, 0.15) 0%, transparent 70%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero p {
  color: rgba(232, 246, 247, 0.85);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(232, 246, 247, 0.55);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: rgba(232, 246, 247, 0.55);
  transition: color var(--transition);
}

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

.breadcrumb-sep {
  color: rgba(232, 246, 247, 0.3);
}

/* ============================================================
   CONTENT PROSE
   ============================================================ */
.prose h2 {
  margin: 48px 0 20px;
  color: var(--primary);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 36px 0 16px;
  color: var(--dark);
}

.prose p {
  font-size: 0.975rem;
  color: var(--gray-text);
  line-height: 1.85;
  margin-bottom: 16px;
}

.prose ul {
  margin: 16px 0 20px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prose ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.7;
}

.prose ul li::before {
  content: '→';
  color: var(--secondary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.intro-lead {
  font-size: 1.15rem;
  color: var(--dark);
  line-height: 1.9;
  border-left: 4px solid var(--secondary);
  padding: 20px 24px;
  background: var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 32px;
  font-style: italic;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(45, 168, 176, 0.12) 0%, transparent 70%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(232, 246, 247, 0.82);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, var(--dark) 0%, #111e20 100%);
  padding: 64px 0 0;
  color: rgba(232, 246, 247, 0.7);
  border-top: 1px solid rgba(45, 168, 176, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(45, 168, 176, 0.1);
}

.footer-brand .logo {
  margin-bottom: 18px;
}

.footer-brand .logo-main {
  font-size: 1.4rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(232, 246, 247, 0.6);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  box-shadow: 0 3px 12px rgba(201, 168, 76, 0.25);
}

.footer-phone-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.4);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(232, 246, 247, 0.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link::before {
  content: '›';
  color: var(--secondary);
  font-size: 1.1rem;
}

.footer-link:hover {
  color: var(--secondary);
}

.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(232, 246, 247, 0.6);
  line-height: 1.6;
}

.footer-info-icon {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(232, 246, 247, 0.35);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(232, 246, 247, 0.35);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--secondary);
}

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.floating-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.45);
  transition: all var(--transition);
  animation: floatBtn 3s ease-in-out infinite;
}

.floating-call:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(201, 168, 76, 0.55);
  color: var(--white);
}

.floating-call-icon {
  font-size: 1.2rem;
  animation: ringBell 3s ease-in-out infinite;
}

@keyframes floatBtn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes ringBell {
  0%, 80%, 100% { transform: rotate(0); }
  85% { transform: rotate(15deg); }
  90% { transform: rotate(-12deg); }
  95% { transform: rotate(8deg); }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.animate-fade.animated {
  opacity: 1;
}

.animate-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-right.animated {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.animated > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.stagger-children.animated > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.stagger-children.animated > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.stagger-children.animated > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.stagger-children.animated > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.stagger-children.animated > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

/* ============================================================
   MASSAGE NICE PAGE - SPECIFIC STYLES
   ============================================================ */
.massage-type-section {
  border-top: 1px solid var(--border);
  padding-top: 48px;
  margin-top: 48px;
}

.massage-type-section:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.massage-type-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.massage-type-emoji {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.science-box {
  background: var(--accent);
  border: 1px solid var(--border);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 28px 0;
}

.science-box h4 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1rem;
}

.science-box p {
  font-size: 0.9rem;
  color: var(--gray-text);
  margin-bottom: 0;
}

.stats-grid-inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.stat-box {
  text-align: center;
  padding: 24px 16px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
}

.stat-box .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-box .lbl {
  font-size: 0.78rem;
  color: rgba(232, 246, 247, 0.75);
  line-height: 1.4;
}

.steps-horizontal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.step-h-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.step-h-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.step-h-number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 16px;
}

.step-h-item h4 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 10px;
}

.step-h-item p {
  font-size: 0.875rem;
  color: var(--gray-text);
  margin-bottom: 0;
  line-height: 1.65;
}

/* ============================================================
   RESPONSIVE - TABLET (1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .stats-grid-inline {
    grid-template-columns: 1fr 1fr;
  }

  .steps-horizontal {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   RESPONSIVE - MOBILE (768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .section {
    padding: 56px 0;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .hero-content {
    padding: 100px 24px 60px;
    text-align: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

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

  .stat-item:nth-child(2)::after {
    display: none;
  }

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

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

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .testimonial-card {
    min-width: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

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

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

  .floating-call span.call-text {
    display: none;
  }

  .floating-call {
    padding: 14px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    justify-content: center;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-group .btn {
    justify-content: center;
  }

  .contact-info-block,
  .contact-form-container {
    padding: 28px;
  }

  .steps-container::before {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE - SMALL MOBILE (480px)
   ============================================================ */
@media (max-width: 480px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .btn {
    padding: 13px 24px;
    font-size: 0.82rem;
  }

  .btn-lg {
    padding: 15px 30px;
    font-size: 0.9rem;
  }

  .testimonial-card {
    min-width: 280px;
  }

  .stats-grid-inline {
    grid-template-columns: 1fr;
  }
}
