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

/* ===== VARIABLES ===== */
:root {
  --navy:        #0D1F3C;
  --navy-mid:    #132847;
  --blue:        #185FA5;
  --blue-dark:   #0C447C;
  --blue-light:  #E6F1FB;
  --teal:        #1D9E75;
  --teal-light:  #E1F5EE;
  --white:       #FFFFFF;
  --off-white:   #F7F6F2;
  --gray-100:    #EEECEA;
  --gray-300:    #C8C6BE;
  --gray-500:    #8A8880;
  --text:        #0D1F3C;
  --text-sec:    #4A5568;
  --text-muted:  #8A8880;
  --border:      rgba(13,31,60,0.08);
  --border-med:  rgba(13,31,60,0.14);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 4px rgba(13,31,60,0.06);
  --shadow-md:   0 4px 20px rgba(13,31,60,0.10);
  --shadow-lg:   0 12px 40px rgba(13,31,60,0.14);
  --ease:        0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
ul { list-style: none; }
a { color: var(--blue); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--teal); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p { color: var(--text-sec); line-height: 1.75; }

/* ===== LAYOUT ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 56px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--teal);
  display: block;
  flex-shrink: 0;
}

.section-title   { color: var(--text); margin-bottom: 14px; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-sec);
  max-width: 560px;
  margin-bottom: 52px;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.text-center .section-label { justify-content: center; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo svg { width: 30px; height: 30px; }
.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-logo-text em { font-style: normal; color: var(--blue); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-sec);
  transition: color var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--ease);
}
.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid var(--border);
  padding: 8px 24px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--ease);
  border: 1.5px solid transparent;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(24,95,165,0.28);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-med);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}
.btn-white {
  background: white;
  color: var(--navy);
  border-color: white;
}
.btn-white:hover {
  background: var(--off-white);
  color: var(--navy);
  transform: translateY(-1px);
}
.btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost-white:hover {
  color: white;
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}
.btn-lg { padding: 14px 30px; font-size: 0.95rem; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--navy);
  padding: 68px 0 58px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(24,95,165,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.page-header-content { position: relative; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.38); }
.breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.breadcrumb-sep { font-size: 0.7rem; }
.page-header-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5DCAA5;
  margin-bottom: 10px;
}
.page-header h1 {
  color: white;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}
.page-header p { color: rgba(255,255,255,0.55); max-width: 520px; }

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(24,95,165,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.hero-deco {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.04;
  pointer-events: none;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,158,117,0.14);
  border: 1px solid rgba(29,158,117,0.28);
  color: #5DCAA5;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.hero h1 { color: white; margin-bottom: 22px; max-width: 660px; }
.hero h1 em { font-style: normal; color: #5DCAA5; }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.58);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 44px;
  margin-top: 68px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* ===== SERVICE CARDS ===== */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: all var(--ease);
}
.card:hover {
  border-color: rgba(24,95,165,0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-icon {
  width: 46px; height: 46px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.card-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.card p { font-size: 0.88rem; color: var(--text-sec); line-height: 1.65; margin: 0; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--blue);
  margin-top: 16px;
  transition: gap var(--ease);
}
.card-link:hover { gap: 10px; color: var(--blue-dark); }

/* ===== SERVICE DETAIL (services.html) ===== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-icon-lg {
  width: 64px; height: 64px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon-lg svg { width: 28px; height: 28px; stroke: var(--blue); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--blue-light);
  color: var(--blue);
}
.tag-teal { background: var(--teal-light); color: var(--teal); }
.checklist { margin-top: 16px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-sec);
  padding: 6px 0;
}
.checklist li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal-light);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231D9E75' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== PRICING ===== */
.pricing-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.pricing-section-title h3 { font-size: 1.3rem; margin: 0; }
.pricing-badge {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--blue-light);
  color: var(--blue);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 0.9rem;
}
.pricing-table thead tr {
  background: var(--navy);
  color: white;
}
.pricing-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.pricing-table thead th:last-child { text-align: right; }
.pricing-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--blue-light); }
.pricing-table tbody td {
  padding: 14px 20px;
  color: var(--text-sec);
}
.pricing-table tbody td:first-child { color: var(--text); font-weight: 500; }
.pricing-table tbody td:last-child {
  text-align: right;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.pricing-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.pricing-note::before { content: '*'; color: var(--teal); font-weight: 600; flex-shrink: 0; }
.pricing-highlight td { background: rgba(24,95,165,0.04) !important; }
.pricing-cta-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 56px;
}
.pricing-cta-box h3 { color: white; font-size: 1.4rem; margin-bottom: 8px; }
.pricing-cta-box p { color: rgba(255,255,255,0.55); margin: 0; font-size: 0.9rem; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 30px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Syne', sans-serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--blue);
  opacity: 0.12;
  position: absolute;
  top: 12px;
  left: 22px;
}
.stars { color: #F59E0B; font-size: 0.88rem; margin-bottom: 14px; }
.testimonial-text {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.author-name { font-weight: 500; font-size: 0.88rem; color: var(--text); }
.author-role  { font-size: 0.8rem; color: var(--text-muted); }

/* ===== À PROPOS ===== */
.skill-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.skill-item {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.skill-item::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.value-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--blue);
}
.value-card h4 { margin-bottom: 8px; }
.value-card p  { font-size: 0.88rem; margin: 0; }
.timeline { position: relative; padding-left: 24px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 6px; top: 6px; bottom: 6px;
  width: 1.5px;
  background: var(--border-med);
}
.timeline-item {
  position: relative;
  margin-bottom: 32px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px; top: 6px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid white;
  box-shadow: 0 0 0 2px var(--blue-light);
}
.timeline-date { font-size: 0.78rem; font-weight: 500; color: var(--teal); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.timeline-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.timeline-desc { font-size: 0.88rem; color: var(--text-sec); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 48px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.84rem; font-weight: 500; color: var(--text); margin-bottom: 7px; }
.form-req { color: var(--blue); }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border-med);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: white;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24,95,165,0.1);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: white;
}
.contact-info-card h3 { color: white; margin-bottom: 24px; font-size: 1.2rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 16px; height: 16px; stroke: #5DCAA5; fill: none; stroke-width: 1.8; stroke-linecap: round; }
.contact-info-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.07em; }
.contact-info-value { font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.contact-info-value a { color: rgba(255,255,255,0.85); }
.contact-info-value a:hover { color: white; }
.zone-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(29,158,117,0.15);
  border: 1px solid rgba(29,158,117,0.3);
  color: #5DCAA5;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
  margin-top: 20px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(24,95,165,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2 { color: white; margin-bottom: 14px; position: relative; }
.cta-banner p  { color: rgba(255,255,255,0.55); margin-bottom: 32px; position: relative; }
.cta-banner-actions { display: flex; align-items: center; justify-content: center; gap: 14px; position: relative; flex-wrap: wrap; }

/* ===== WHY US ===== */
.pillar-card {
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: white;
  transition: all var(--ease);
}
.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(24,95,165,0.2); }
.pillar-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 16px;
}
.pillar-card h3 { margin-bottom: 10px; }
.pillar-card p  { font-size: 0.88rem; margin: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.footer-brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.footer-brand-name em { font-style: normal; color: #5DCAA5; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-col h5 { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color var(--ease); }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.25); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,0.25); }
.footer-bottom a:hover { color: rgba(255,255,255,0.55); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.55s cubic-bezier(0.4,0,0.2,1) both; }
.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.16s; }
.d3 { animation-delay: 0.24s; }
.d4 { animation-delay: 0.32s; }
.d5 { animation-delay: 0.40s; }
.d6 { animation-delay: 0.48s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 24px; }
  .cta-banner { padding: 40px 32px; }
  .pricing-cta-box { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 72px 0 64px; }
  .section { padding: 64px 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero-stats { gap: 24px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .skill-grid { grid-template-columns: 1fr; }
}
