/* ===========================
   OBJECTIF TADAM — Global CSS
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-dark:   #1B3A6B;
  --blue-mid:    #4285F4;
  --blue-light:  #EBF1FF;
  /* Palette logo */
  --c-blue:      #4285F4;
  --c-red:       #EA4335;
  --c-yellow:    #FBBC05;
  --c-green:     #34A853;
  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-300:    #CBD5E1;
  --gray-500:    #64748B;
  --gray-700:    #374151;
  --gray-900:    #111827;
  --radius:      10px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(27,58,107,.10);
  --shadow-lg:   0 8px 32px rgba(27,58,107,.14);
  --transition:  .22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

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

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 24px;
}

section { padding-block: 80px; }

/* ─── TYPOGRAPHY ─── */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.15; color: var(--white); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; color: var(--blue-dark); }
h3 { font-size: 1.15rem; font-weight: 600; color: var(--blue-dark); }
p  { color: var(--gray-500); }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; }
.section-subtitle { max-width: 580px; font-size: 1.05rem; }
.section-header { margin-bottom: 56px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--blue-mid);
  color: var(--white);
  border-color: var(--blue-mid);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border-color: var(--blue-dark);
}
.btn-outline:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ─── COLOR STRIPE ─── */
.color-stripe {
  height: 5px;
  background: linear-gradient(to right,
    var(--c-blue)   0%  25%,
    var(--c-red)    25% 50%,
    var(--c-yellow) 50% 75%,
    var(--c-green)  75% 100%
  );
  flex-shrink: 0;
}

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.navbar::after {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(to right,
    var(--c-blue)   0%  25%,
    var(--c-red)    25% 50%,
    var(--c-yellow) 50% 75%,
    var(--c-green)  75% 100%
  );
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.navbar__logo img {
  height: 88px;
  width: auto;
  display: block;
}
.footer__brand .navbar__logo img {
  height: 110px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  transition: color var(--transition);
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blue-mid);
  transition: width var(--transition);
  border-radius: 2px;
}
.navbar__links a:hover,
.navbar__links a.active { color: var(--blue-mid); }
.navbar__links a:hover::after,
.navbar__links a.active::after { width: 100%; }

.navbar__cta { margin-left: 16px; padding: 9px 20px; font-size: .88rem; }

/* ─── NAVBAR DROPDOWN ─── */
.navbar__links > li { position: relative; }

/* Zone de déclenchement élargie sur le lien parent */
.has-dropdown > a {
  padding-block: 10px;
  margin-block: -10px;
}

.navbar__dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  min-width: 300px;
  padding: 8px;
  z-index: 200;
  list-style: none;
  margin: 0;
  transition: opacity .15s ease, visibility .15s ease;
}
/* Pont invisible qui couvre le gap entre le lien et le dropdown */
.navbar__dropdown::after {
  content: '';
  position: absolute;
  top: -14px;
  left: -20px;
  right: -20px;
  height: 14px;
}
.navbar__dropdown::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--white);
  border-left: 1px solid var(--gray-100);
  border-top: 1px solid var(--gray-100);
}
.has-dropdown:hover .navbar__dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.navbar__dropdown li { list-style: none; }
.navbar__dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--gray-700) !important;
  font-size: .875rem;
  white-space: nowrap;
}
.navbar__dropdown li a::after { display: none !important; }
.navbar__dropdown li a:hover {
  background: var(--gray-50);
  color: var(--blue-mid) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 92px 0 0 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
  border-top: 1px solid var(--gray-100);
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--blue-mid); }
.mobile-nav .btn { margin-top: 16px; justify-content: center; }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #2a4f96 60%, #2563EB 100%);
  padding-block: 100px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.hero__content { position: relative; z-index: 1; max-width: 700px; }
.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  margin-block: 20px 36px;
  font-weight: 400;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── CARDS ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: calc(var(--radius) + 4px);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.card p { flex: 1; }
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}

.card__icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.card h3 { margin-bottom: 10px; }

/* ─── ABOUT STRIP ─── */
.about-strip {
  background: var(--gray-50);
}

.about-strip__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}

.about-strip__visual {
  border-radius: 16px;
  height: 320px;
  overflow: hidden;
  justify-self: center;
  width: 100%;
  max-width: 280px;
  margin-top: 34px;
  /* Cadre : ombre douce + anneau blanc + liseré bleu logo */
  box-shadow:
    0 12px 40px rgba(27,58,107,.18),
    0 0 0 5px var(--white),
    0 0 0 9px var(--c-blue);
}

.about-strip__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-strip__text p { margin-bottom: 20px; }

/* Variante logo (about page) */
.about-strip__visual--logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  height: auto;
  max-width: 100%;
  overflow: visible;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
  margin-top: 34px;
}
.about-strip__visual--logo img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
}
.logo-tagline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--blue-light);
  border-radius: 12px;
  padding: 16px 24px;
  width: 100%;
  max-width: 280px;
}

.stats-row {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-300);
}
.stat__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1;
}
.stat__label { font-size: .85rem; color: var(--gray-500); margin-top: 4px; }

/* ─── SERVICE PAGE ─── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #2a4f96 100%);
  padding-block: 72px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 560px; margin-inline: auto; }

.service-list { display: flex; flex-direction: column; gap: 48px; }

.service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.service-item:hover { box-shadow: var(--shadow-md); border-color: var(--blue-light); }

.service-item__icon {
  width: 64px; height: 64px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.service-item h3 { font-size: 1.3rem; margin-bottom: 12px; }
.service-item p { margin-bottom: 20px; }

/* ─── ABOUT PAGE ─── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.value-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 14px;
  background: var(--blue-light);
  transition: transform var(--transition);
}
.value-card:hover { transform: translateY(-4px); }
.value-card .icon { font-size: 2.2rem; margin-bottom: 16px; }
.value-card h3 { color: var(--blue-dark); margin-bottom: 8px; }
.value-card p { font-size: .9rem; }

.team-section { background: var(--gray-50); }
.founder-card {
  display: flex;
  gap: 48px;
  align-items: center;
  max-width: 800px;
  margin-inline: auto;
}
.founder-avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), #bfdbfe);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  flex-shrink: 0;
}
.founder-info h3 { font-size: 1.4rem; margin-bottom: 4px; }
.founder-info .role { color: var(--blue-mid); font-weight: 600; font-size: .9rem; margin-bottom: 16px; }

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.blog-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card__thumb {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}

.blog-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta {
  display: flex; gap: 12px; align-items: center;
  font-size: .8rem; color: var(--gray-500);
  margin-bottom: 12px;
}
.blog-card__tag {
  background: var(--blue-light);
  color: var(--blue-mid);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.blog-card h3 { margin-bottom: 10px; }
.blog-card p { font-size: .93rem; flex: 1; margin-bottom: 20px; }
.blog-card .read-more {
  color: var(--blue-mid);
  font-weight: 600;
  font-size: .88rem;
  display: flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.blog-card .read-more:hover { gap: 10px; }

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

.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }

.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
}
.contact-detail__icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail h4 { font-size: .85rem; color: var(--gray-500); margin-bottom: 2px; }
.contact-detail p { color: var(--gray-700); font-size: .95rem; margin: 0; }

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { margin-bottom: 28px; color: var(--blue-dark); font-size: 1.2rem; }

.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 14px; }

.form-notice {
  text-align: center;
  font-size: .8rem;
  color: var(--gray-500);
  margin-top: 14px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.8);
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__brand .navbar__logo { color: var(--white); }
.footer__brand .navbar__logo span { color: #60A5FA; }
.footer__brand p { margin-top: 16px; font-size: .9rem; line-height: 1.7; }

.footer__col h4 {
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--white); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: background var(--transition);
}
.social-link:hover { background: var(--blue-mid); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 24px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--white); }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  padding-block: 72px;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 32px; font-size: 1.05rem; }

/* ─── CARD COLOR ACCENTS ─── */
.card { border-top: 4px solid transparent; }

.card--blue  { border-top-color: var(--c-blue); }
.card--blue  .card__icon { background: rgba(66,133,244,.12); }
.card--blue:hover { border-color: var(--c-blue); }

.card--red   { border-top-color: var(--c-red); }
.card--red   .card__icon { background: rgba(234,67,53,.10); }
.card--red:hover { border-color: var(--c-red); }

.card--yellow { border-top-color: var(--c-yellow); }
.card--yellow .card__icon { background: rgba(251,188,5,.12); }
.card--yellow:hover { border-color: var(--c-yellow); }

.card--green  { border-top-color: var(--c-green); }
.card--green  .card__icon { background: rgba(52,168,83,.10); }
.card--green:hover { border-color: var(--c-green); }

/* ─── SERVICE ITEM COLOR ACCENTS ─── */
.service-item--blue   { border-left: 5px solid var(--c-blue); }
.service-item--blue   .service-item__icon { background: rgba(66,133,244,.12); }
.service-item--blue:hover   { border: 2px solid var(--c-blue);   box-shadow: var(--shadow-md); }

.service-item--red    { border-left: 5px solid var(--c-red); }
.service-item--red    .service-item__icon { background: rgba(234,67,53,.10); }
.service-item--red:hover    { border: 2px solid var(--c-red);    box-shadow: var(--shadow-md); }

.service-item--yellow { border-left: 5px solid var(--c-yellow); }
.service-item--yellow .service-item__icon { background: rgba(251,188,5,.12); }
.service-item--yellow:hover { border: 2px solid var(--c-yellow); box-shadow: var(--shadow-md); }

.service-item--green  { border-left: 5px solid var(--c-green); }
.service-item--green  .service-item__icon { background: rgba(52,168,83,.10); }
.service-item--green:hover  { border: 2px solid var(--c-green);  box-shadow: var(--shadow-md); }

/* ─── VALUE CARD COLOR ACCENTS ─── */
.value-card--blue   { background: rgba(66,133,244,.10); border-top: 3px solid var(--c-blue); }
.value-card--red    { background: rgba(234,67,53,.07);  border-top: 3px solid var(--c-red); }
.value-card--yellow { background: rgba(251,188,5,.10);  border-top: 3px solid var(--c-yellow); }
.value-card--green  { background: rgba(52,168,83,.08);  border-top: 3px solid var(--c-green); }

/* ─── STAT COLOR ACCENTS ─── */
.stat--blue   .stat__number { color: var(--c-blue); }
.stat--red    .stat__number { color: var(--c-red); }
.stat--yellow .stat__number { color: var(--c-yellow); }
.stat--green  .stat__number { color: var(--c-green); }

/* ─── BLOG TAG COLORS ─── */
.tag--blue   { background: rgba(66,133,244,.12);  color: #2a6dd9; }
.tag--red    { background: rgba(234,67,53,.10);   color: #c0392b; }
.tag--yellow { background: rgba(251,188,5,.15);   color: #9a6e00; }
.tag--green  { background: rgba(52,168,83,.10);   color: #1e7e3e; }

/* ─── CONTACT DETAIL ICON COLORS ─── */
.contact-detail--blue  .contact-detail__icon { background: rgba(66,133,244,.12);  color: var(--c-blue); }
.contact-detail--red   .contact-detail__icon { background: rgba(234,67,53,.10);   color: var(--c-red); }
.contact-detail--yellow .contact-detail__icon { background: rgba(251,188,5,.15);  color: #9a6e00; }
.contact-detail--green .contact-detail__icon { background: rgba(52,168,83,.10);   color: var(--c-green); }

/* ─── PAGE ABOUT — espacement resserré ─── */
.page-about .page-hero { padding-block: 36px; }
.page-about section   { padding-block: 48px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .navbar__links, .navbar__cta { display: none; }
  .hamburger { display: flex; }
  .about-strip__grid { grid-template-columns: 1fr; }
  .about-strip__visual { height: 280px; max-width: 260px; margin-inline: auto; margin-top: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .service-item { grid-template-columns: 1fr; }
  .service-item__icon { width: 52px; height: 52px; font-size: 1.4rem; }
  .founder-card { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  section { padding-block: 56px; }
  .hero { padding-block: 72px 56px; }
  .page-hero { padding-block: 52px; }
  .cards-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 24px; }
  .stats-row { flex-wrap: wrap; gap: 24px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .service-item { padding: 24px; }
  .blog-grid { grid-template-columns: 1fr; }
}
