/* ===================================================
   ATTIRER DES CLIENTS — Charte graphique
   Direction : Éditorial tropical · La Réunion
   Fonts : Playfair Display + DM Sans
   =================================================== */

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

/* ===== VARIABLES ===== */
:root {
  /* Palette */
  --coral:      #E8682A;
  --coral-dark: #C9531A;
  --coral-light:#FDE8DB;
  --ocean:      #1B3A4B;
  --ocean-mid:  #2A5A72;
  --gold:       #F2A93B;
  --gold-light: #FEF3DE;
  --cream:      #FDF8F3;
  --cream-dark: #F5EDE3;
  --ink:        #1A1108;
  --ink-mid:    #4A3728;
  --ink-light:  #8C7B6E;
  --white:      #FFFFFF;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --max-width: 1100px;
  --radius:    8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 17, 8, 0.08);
  --shadow-md: 0 8px 32px rgba(26, 17, 8, 0.12);
  --shadow-lg: 0 20px 60px rgba(26, 17, 8, 0.16);

  /* Transitions */
  --ease: cubic-bezier(0.34, 1.2, 0.64, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ===== PAGE LOAD ANIMATION ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

section { padding: 90px 0; }

/* ===== NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 104, 42, 0.1);
  animation: fadeIn 0.4s ease both;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ocean);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.site-logo:hover { color: var(--coral); }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-mid);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width 0.3s var(--ease);
  border-radius: 2px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--coral);
}

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

.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s !important;
  box-shadow: 0 4px 16px rgba(232, 104, 42, 0.3) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--coral-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(232, 104, 42, 0.4) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ocean);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
  box-shadow: 0 4px 20px rgba(232, 104, 42, 0.35);
}

.btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(232, 104, 42, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--ocean);
  border-color: var(--ocean);
}

.btn-outline:hover {
  background: var(--ocean);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 58, 75, 0.25);
}

.btn-white {
  background: var(--white);
  color: var(--coral);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.18);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--ocean);
  color: var(--white);
  padding: 130px 0 160px;
  text-align: center;
  overflow: hidden;
}

/* Gradient mesh background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(242, 169, 59, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(232, 104, 42, 0.3) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 110%, rgba(232, 104, 42, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* Diagonal bottom clip */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

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

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.7s 0.1s var(--ease) both;
}

/* Golden accent on italic words */
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(253, 248, 243, 0.75);
  margin-bottom: 44px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  animation: fadeUp 0.7s 0.25s var(--ease) both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s var(--ease) both;
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--ocean);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--ink-light);
  max-width: 560px;
  margin-bottom: 52px;
  font-weight: 400;
  line-height: 1.7;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===== PROBLEM SECTION ===== */
.section-problem {
  background: var(--cream-dark);
  position: relative;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.problem-content p {
  color: var(--ink-mid);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

.problem-visual {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--coral);
  position: relative;
}

.problem-visual::before {
  content: '';
  position: absolute;
  top: -1px; left: 32px;
  width: 60px; height: 4px;
  background: var(--gold);
  border-radius: 0 0 4px 4px;
}

.stat-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--cream-dark);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--ink-light);
  font-weight: 400;
}

/* ===== SOLUTION SECTION ===== */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.solution-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}

/* Vertical line between steps */
.step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--coral-light), transparent);
}

.step-number {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(232, 104, 42, 0.35);
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 6px;
  margin-top: 8px;
}

.step-content p {
  font-size: 0.92rem;
  color: var(--ink-light);
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.section-services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(232, 104, 42, 0.1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 104, 42, 0.25);
}

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

.service-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
  transition: transform 0.3s var(--ease);
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-5deg);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.65;
}

/* ===== TEAM ===== */
.section-team {
  background: var(--ocean);
  position: relative;
  overflow: hidden;
}

.section-team::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 10% 50%, rgba(242, 169, 59, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 30%, rgba(232, 104, 42, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

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

.section-team .section-title { color: var(--white); }

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-header p { color: rgba(253, 248, 243, 0.65); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 640px;
  margin: 0 auto;
}

.team-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.team-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(232, 104, 42, 0.4);
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.team-card .role {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== CTA SECTION ===== */
.section-cta {
  position: relative;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 40%, #9B3015 100%);
  color: var(--white);
  text-align: center;
  padding: 110px 0;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 20%, rgba(242, 169, 59, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(253, 248, 243, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative circles */
.section-cta::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

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

.section-cta .section-title {
  color: var(--white);
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}

.section-cta p {
  color: rgba(253, 248, 243, 0.8);
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--ocean);
  color: var(--white);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(232, 104, 42, 0.2) 0%, transparent 55%);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

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

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  animation: fadeUp 0.6s 0.1s var(--ease) both;
}

.page-header p {
  font-size: 1.05rem;
  color: rgba(253, 248, 243, 0.7);
  max-width: 480px;
  font-weight: 300;
  animation: fadeUp 0.6s 0.25s var(--ease) both;
}

/* ===== BLOG LIST ===== */
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(232, 104, 42, 0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

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

/* Colorful top border per card */
.blog-card:nth-child(3n+1) { border-top: 3px solid var(--coral); }
.blog-card:nth-child(3n+2) { border-top: 3px solid var(--gold); }
.blog-card:nth-child(3n)   { border-top: 3px solid var(--ocean); }

.blog-card-body { padding: 30px 26px; }

.blog-meta {
  font-size: 0.78rem;
  color: var(--ink-light);
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ocean);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.blog-card:hover h2 { color: var(--coral); }

.blog-card p {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.65;
  margin-bottom: 22px;
}

.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--coral);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s var(--ease);
}

.read-more:hover { gap: 10px; }

/* ===== ARTICLE ===== */
.article-header {
  background: var(--ocean);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.article-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 85% 30%, rgba(232, 104, 42, 0.22) 0%, transparent 55%);
  pointer-events: none;
}

.article-header::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.article-header .container { position: relative; z-index: 1; }

.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 800px;
}

.article-meta {
  font-size: 0.82rem;
  color: rgba(253, 248, 243, 0.6);
  display: flex;
  gap: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 70px 28px 90px;
}

.article-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ocean);
  margin-top: 54px;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.article-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ocean);
  margin-top: 36px;
  margin-bottom: 12px;
}

.article-content p {
  margin-bottom: 22px;
  color: var(--ink-mid);
  line-height: 1.85;
  font-size: 1.02rem;
}

.article-content ul,
.article-content ol {
  margin: 0 0 22px 24px;
  color: var(--ink-mid);
  line-height: 1.85;
}

.article-content li { margin-bottom: 10px; }

.article-content strong { color: var(--ocean); font-weight: 600; }

.article-content blockquote {
  border-left: 4px solid var(--coral);
  padding: 20px 28px;
  margin: 36px 0;
  background: var(--coral-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--ink-mid);
}

/* ===== TEAM PAGE ===== */
.team-page-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

/* Reuse team card style from ocean section but on cream bg */
.team-page-grid .team-card {
  background: var(--white);
  border: 1px solid rgba(232, 104, 42, 0.12);
}

.team-page-grid .team-card h3 { color: var(--ocean); }
.team-page-grid .team-card:hover { background: var(--cream); }

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding: 20px;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.value-item:hover { background: var(--cream-dark); }

.value-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.65;
}

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

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(232, 104, 42, 0.1);
  transition: box-shadow 0.2s, transform 0.2s var(--ease);
}

.contact-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item h3 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 0.98rem;
  color: var(--ocean);
  font-weight: 500;
}

.contact-item a:hover { color: var(--coral); }

.contact-cta-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  border: 1px solid rgba(232, 104, 42, 0.12);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--coral);
}

.contact-cta-box h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ocean);
  margin-bottom: 14px;
}

.contact-cta-box p {
  color: var(--ink-light);
  margin-bottom: 30px;
  line-height: 1.75;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 104, 42, 0.12);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-light);
  font-weight: 300;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 70px 28px 90px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ocean);
  margin-top: 44px;
  margin-bottom: 14px;
}

.legal-content p {
  color: var(--ink-mid);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ocean);
  color: var(--white);
  padding: 60px 0 36px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 5% 50%, rgba(232, 104, 42, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.site-footer .container { position: relative; z-index: 1; }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 44px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(253, 248, 243, 0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(253, 248, 243, 0.55);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(253, 248, 243, 0.35);
}

.footer-eu {
  font-size: 0.75rem;
  color: rgba(253, 248, 243, 0.3);
  text-align: center;
  margin-top: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid,
  .solution-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .blog-list     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(253, 248, 243, 0.97);
    backdrop-filter: blur(12px);
    padding: 24px 28px;
    border-bottom: 1px solid rgba(232, 104, 42, 0.15);
    gap: 18px;
  }

  .nav-menu.open { display: flex; }
  .nav-toggle    { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; max-width: 320px; }
  .blog-list     { grid-template-columns: 1fr; }

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

  .footer-bottom { text-align: center; }
  .team-page-grid { grid-template-columns: 1fr; }

  .hero { padding: 100px 0 140px; }
  .hero::after { height: 60px; }
}
