/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 800; line-height: 1.15; }
.text-gold { color: #D4A84B; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 31, 63, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 75, 0.15);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.1rem; color: #fff;
}
.nav-logo-icon { width: 32px; height: 32px; flex-shrink: 0; }
.nav-logo-text { white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.8);
  transition: color 0.25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: #D4A84B; transition: width 0.3s;
}
.nav-links a:hover { color: #D4A84B; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: #D4A84B !important; color: #0A1F3F !important;
  padding: 10px 22px; border-radius: 8px; font-weight: 700 !important;
  transition: background 0.25s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #c49a3f !important; transform: translateY(-1px); }

/* Mobile toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; flex-direction: column; justify-content: space-between;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; background: #fff;
  border-radius: 2px; transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: #0A1F3F; padding: 120px 0 80px; overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; }
.hero-shape-1 {
  width: 600px; height: 600px; background: #D4A84B;
  top: -200px; right: -100px; opacity: 0.12;
}
.hero-shape-2 {
  width: 400px; height: 400px; background: #1a3a6e;
  bottom: -100px; left: -100px; opacity: 0.5;
}
.hero-shape-3 {
  width: 200px; height: 200px; background: #D4A84B;
  bottom: 100px; left: 30%; opacity: 0.15;
}
.hero-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212, 168, 75, 0.12); border: 1px solid rgba(212, 168, 75, 0.3);
  padding: 8px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 600;
  color: #D4A84B; margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px; background: #D4A84B; border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem); color: #fff;
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,0.7); line-height: 1.7;
  margin-bottom: 36px; max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 32px; align-items: center; }
.hero-stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800;
  color: #D4A84B; line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.hero-stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

/* Hero right */
.hero-right { position: relative; }
.hero-image-wrapper {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.hero-image-wrapper img { width: 100%; height: 480px; object-fit: cover; }
.hero-image-accent {
  position: absolute; bottom: -20px; left: -20px;
  width: 120px; height: 120px; background: #D4A84B;
  border-radius: 16px; z-index: -1;
}
.hero-floating-card {
  position: absolute; bottom: 40px; left: -40px;
  background: #fff; border-radius: 16px; padding: 20px 24px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2); z-index: 2;
}
.floating-card-icon {
  width: 48px; height: 48px; background: #0A1F3F; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.floating-card-icon svg { width: 24px; height: 24px; color: #D4A84B; }
.hero-floating-card strong { display: block; font-size: 0.95rem; color: #0A1F3F; }
.hero-floating-card span { font-size: 0.8rem; color: #666; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px; font-size: 0.95rem; font-weight: 700;
  transition: all 0.25s; border: 2px solid transparent; cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: #D4A84B; color: #0A1F3F; border-color: #D4A84B;
}
.btn-primary:hover { background: #c49a3f; border-color: #c49a3f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,168,75,0.35); }
.btn-outline {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: #D4A84B; color: #D4A84B; transform: translateY(-2px); }
.btn-outline-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ─── SECTION COMMON ─── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: #D4A84B; margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 32px; height: 2px; background: #D4A84B;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #0A1F3F;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.section-header.centered { text-align: center; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-label::before { display: none; }
.section-subtitle { font-size: 1.1rem; color: #555; max-width: 600px; margin: 0 auto; }

/* ─── ABOUT ─── */
.about { padding: 120px 0; background: #fff; }
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text { font-size: 1.05rem; color: #444; line-height: 1.8; margin-bottom: 20px; }
.about-highlights { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.about-highlight {
  display: flex; align-items: flex-start; gap: 14px;
}
.about-highlight svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.about-highlight span { font-size: 0.95rem; color: #333; line-height: 1.5; }
.about-image-grid { position: relative; }
.about-img-main {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(10,31,63,0.15);
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -30px; right: -30px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(10,31,63,0.2);
  border: 4px solid #fff;
}
.about-img-secondary img { width: 260px; height: 150px; object-fit: cover; }
.about-img-accent-shape {
  position: absolute; top: -20px; right: 40px;
  width: 100px; height: 100px; background: #D4A84B;
  border-radius: 16px; opacity: 0.2; transform: rotate(15deg);
}

/* ─── SERVICES ─── */
.services {
  padding: 120px 0; position: relative;
  background: #0A1F3F; overflow: hidden;
}
.services-bg-block {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0A1F3F 0%, #132d54 50%, #0A1F3F 100%);
}
.services .container { position: relative; z-index: 1; }
.services .section-title { color: #fff; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px;
}
.service-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 40px 32px; position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-6px); border-color: rgba(212,168,75,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.service-card.featured {
  background: rgba(212, 168, 75, 0.08); border-color: rgba(212, 168, 75, 0.25);
}
.service-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #D4A84B, #f0d078);
}
.service-card.featured .service-card-accent { height: 4px; }
.service-badge {
  display: inline-block; background: #D4A84B; color: #0A1F3F;
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 20px;
}
.service-icon {
  width: 56px; height: 56px; background: rgba(212, 168, 75, 0.12);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 28px; height: 28px; color: #D4A84B; }
.service-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; color: #fff;
  margin-bottom: 14px;
}
.service-card p { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 24px; }
.service-features { display: flex; flex-direction: column; gap: 10px; }
.service-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: rgba(255,255,255,0.7);
}
.service-features li::before {
  content: ''; width: 6px; height: 6px; background: #D4A84B; border-radius: 50%;
  flex-shrink: 0; margin-top: 8px;
}

/* ─── AREAS ─── */
.areas { padding: 120px 0; background: #f7f4ee; position: relative; }
.areas-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.areas-text { font-size: 1.05rem; color: #444; line-height: 1.8; margin-bottom: 32px; }
.areas-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.area-tag {
  background: #fff; border: 1px solid #e0d8c8; padding: 8px 18px;
  border-radius: 100px; font-size: 0.85rem; font-weight: 600; color: #0A1F3F;
  transition: all 0.2s;
}
.area-tag:hover { background: #0A1F3F; color: #D4A84B; border-color: #0A1F3F; }
.areas-note { font-size: 0.95rem; color: #555; }
.areas-note a { color: #D4A84B; font-weight: 700; text-decoration: underline; text-decoration-color: rgba(212,168,75,0.3); text-underline-offset: 4px; }
.areas-note a:hover { text-decoration-color: #D4A84B; }

/* Map visual */
.areas-visual { position: relative; }
.areas-map-placeholder {
  background: #0A1F3F; border-radius: 24px; padding: 48px;
  position: relative; overflow: hidden; min-height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.areas-map-icon {
  width: 80px; height: 80px; color: rgba(212,168,75,0.15); position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.areas-map-dots { position: relative; width: 100%; height: 100%; }
.map-dot {
  position: absolute; width: 14px; height: 14px; background: #D4A84B;
  border-radius: 50%; box-shadow: 0 0 0 4px rgba(212,168,75,0.25);
  animation: mapPulse 2.5s infinite;
}
.map-dot-1 { top: 60%; left: 55%; animation-delay: 0s; }
.map-dot-2 { top: 40%; left: 40%; animation-delay: 0.5s; }
.map-dot-3 { top: 25%; left: 25%; animation-delay: 1s; }
.map-dot-4 { top: 20%; left: 55%; animation-delay: 1.5s; }
.map-dot-5 { top: 70%; left: 40%; animation-delay: 0.8s; }
@keyframes mapPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(212,168,75,0.25); }
  50% { box-shadow: 0 0 0 10px rgba(212,168,75,0.1); }
}
.areas-map-label {
  text-align: center; margin-top: 16px; font-size: 0.85rem;
  color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 120px 0; position: relative;
  background: linear-gradient(180deg, #0A1F3F 0%, #132d54 100%);
  overflow: hidden;
}
.testimonials-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(212,168,75,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(26,58,110,0.4) 0%, transparent 50%);
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials .section-title { color: #fff; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 36px; transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonial-stars svg { width: 18px; height: 18px; }
.testimonial-card blockquote {
  font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.8;
  margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; background: linear-gradient(135deg, #D4A84B, #c49a3f);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: #0A1F3F; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; color: #fff; }
.testimonial-author span { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 100px 0; background: #D4A84B; position: relative; overflow: hidden;
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape { position: absolute; border-radius: 50%; }
.cta-shape-1 {
  width: 400px; height: 400px; background: rgba(255,255,255,0.1);
  top: -150px; right: -100px;
}
.cta-shape-2 {
  width: 250px; height: 250px; background: rgba(10,31,63,0.1);
  bottom: -80px; left: -50px;
}
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem); color: #0A1F3F; margin-bottom: 20px;
}
.cta-text { font-size: 1.1rem; color: rgba(10,31,63,0.7); line-height: 1.7; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline-light svg { width: 18px; height: 18px; }

/* ─── CONTACT ─── */
.contact { padding: 120px 0; background: #fff; }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-text { font-size: 1.05rem; color: #444; line-height: 1.8; margin-bottom: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon {
  width: 52px; height: 52px; background: rgba(212,168,75,0.1);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 24px; height: 24px; }
.contact-info-item strong { display: block; font-size: 0.95rem; color: #0A1F3F; margin-bottom: 4px; }
.contact-info-item span { font-size: 0.9rem; color: #555; line-height: 1.5; white-space: nowrap; }

/* Form */
.contact-form {
  background: #f9f7f2; border-radius: 20px; padding: 40px;
  border: 1px solid #ece6d8;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 700; color: #0A1F3F;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px; border: 1px solid #ddd; border-radius: 10px;
  font-size: 0.95rem; font-family: 'Inter', sans-serif; color: #1a1a2e;
  background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: #D4A84B; box-shadow: 0 0 0 3px rgba(212,168,75,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-privacy { font-size: 0.78rem; color: #999; text-align: center; margin-top: 16px; }

/* Success state */
.form-success {
  display: none; text-align: center; padding: 60px 40px;
  background: #f9f7f2; border-radius: 20px; border: 1px solid #ece6d8;
}
.form-success.active { display: block; }
.success-icon {
  width: 72px; height: 72px; background: rgba(212,168,75,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg { width: 36px; height: 36px; color: #D4A84B; }
.form-success h3 { font-size: 1.5rem; color: #0A1F3F; margin-bottom: 12px; }
.form-success p { color: #555; font-size: 0.95rem; }

/* ─── FOOTER ─── */
.footer { background: #0A1F3F; padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.1rem; color: #fff;
  margin-bottom: 16px;
}
.footer-logo-icon { width: 28px; height: 28px; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; }
.footer-links strong,
.footer-contact strong {
  display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: #D4A84B; margin-bottom: 20px;
}
.footer-links ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a,
.footer-contact li {
  font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color 0.2s;
  display: flex; align-items: flex-start; gap: 10px;
}
.footer-links a:hover { color: #D4A84B; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: #D4A84B; }
.footer-bottom {
  padding: 28px 0; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { max-width: 500px; }
  .hero-image-wrapper img { height: 400px; }
  .about-container { grid-template-columns: 1fr; gap: 60px; }
  .about-img-secondary { right: 20px; bottom: -20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-layout { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-container { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(10,31,63,0.98); backdrop-filter: blur(12px);
    flex-direction: column; padding: 32px 24px; gap: 20px;
    transform: translateY(-120%); transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(212,168,75,0.15);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-floating-card { position: relative; bottom: auto; left: auto; margin-top: 16px; }
  .hero-image-wrapper img { height: 320px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-img-secondary { display: none; }
  .about-img-accent-shape { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 24px; }
}
