*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; min-height: 100vh; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }

/* ─── Header / Nav ─── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(242, 250, 245, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
#header.nav-scrolled {
  background: rgba(242, 250, 245, 0.95);
  box-shadow: 0 4px 30px rgba(10, 37, 64, 0.08);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0a2540;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
}
.nav-logo-text { letter-spacing: -0.01em; }
.nav-logo-icon { color: #1a5276; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  text-decoration: none;
  color: #2d6a7a;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-link:hover { background: rgba(10, 37, 64, 0.06); color: #0a2540; }
.nav-cta {
  background: #0a2540;
  color: #f2faf5 !important;
  margin-left: 8px;
  transition: background 0.2s ease, transform 0.2s ease !important;
}
.nav-cta:hover { background: #1a5276; transform: translateY(-1px); }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #0a2540;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(242, 250, 245, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(10, 37, 64, 0.06);
    box-shadow: 0 20px 40px rgba(10, 37, 64, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
    pointer-events: none;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { padding: 12px 16px; width: 100%; text-align: left; }
  .nav-cta { margin-left: 0; text-align: center; margin-top: 8px; }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f2faf5 0%, #e8f5e9 30%, #f0f4f8 70%, #f2faf5 100%);
  padding-top: 72px;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(168, 230, 207, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(26, 82, 118, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 120px;
  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(10, 37, 64, 0.07);
  color: #1a5276;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: #0a2540;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.hero-accent {
  background: linear-gradient(135deg, #33c76d, #1a5276);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-description {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #52848c;
  margin: 0 0 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2d6a7a;
  font-size: 0.88rem;
  font-weight: 500;
}
.hero-trust-item svg { color: #33c76d; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: #0a2540;
  color: #f2faf5;
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.25);
}
.btn-primary:hover {
  background: #1a5276;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10, 37, 64, 0.3);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: #0a2540;
  border: 1px solid rgba(10, 37, 64, 0.15);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}
.btn-white {
  background: #ffffff;
  color: #0a2540;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); }
.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.1); border-color: #ffffff; }
.btn-full { width: 100%; justify-content: center; }

/* Hero Image */
.hero-image-wrap {
  position: relative;
}
.hero-image-frame {
  position: absolute;
  inset: 20px -12px -20px 20px;
  border: 2px solid rgba(51, 199, 109, 0.3);
  border-radius: 24px;
  z-index: 0;
}
.hero-image {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(10, 37, 64, 0.15);
}
.hero-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #33c76d, #1a5276);
  border-radius: 20px;
  z-index: 2;
  opacity: 0.15;
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 2;
}
.hero-wave svg { width: 100%; height: 100%; }

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image-wrap { max-width: 400px; margin: 0 auto; }
}

/* ─── Section Shared ─── */
.section { padding: 100px 24px; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #33c76d;
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: #0a2540;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.section-divider, .about-divider, .approach-divider, .faq-divider, .contact-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #33c76d, #1a5276);
  border-radius: 3px;
  margin-bottom: 24px;
}
.section-subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #52848c;
  max-width: 640px;
  margin: 0 auto;
}
.text-center { text-align: center; }

/* ─── About ─── */
.about { background: #ffffff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrapper {
  position: relative;
}
.about-image {
  width: 100%;
  aspect-ratio: 5/6.2;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(10, 37, 64, 0.12);
}
.about-image-pattern {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(51, 199, 109, 0.25);
  border-radius: 20px;
  z-index: -1;
}
.about-floating-card {
  position: absolute;
  bottom: 32px;
  right: -24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 40px rgba(10, 37, 64, 0.12);
  z-index: 2;
}
.about-floating-card svg { color: #33c76d; flex-shrink: 0; }
.about-float-label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #33c76d; }
.about-float-text { display: block; font-size: 0.85rem; color: #0a2540; font-weight: 500; margin-top: 2px; }
.about-text-col .section-eyebrow { margin-bottom: 12px; }
.about-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #52848c;
  margin: 0 0 20px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-value {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #f2faf5;
  border-radius: 12px;
}
.about-value-icon { color: #1a5276; flex-shrink: 0; }
.about-value span { font-size: 0.9rem; font-weight: 600; color: #0a2540; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-floating-card { right: 16px; }
  .about-values { grid-template-columns: 1fr; }
}

/* ─── Services ─── */
.services { background: #f2faf5; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(10, 37, 64, 0.05);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 37, 64, 0.1);
}
.service-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(51, 199, 109, 0.12), rgba(26, 82, 118, 0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a5276;
  margin-bottom: 20px;
}
.service-card-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a2540;
  margin: 0 0 12px;
}
.service-card-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #52848c;
  margin: 0;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ─── Approach ─── */
.approach { background: #ffffff; }
.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.approach-image-stack { position: relative; }
.approach-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 37, 64, 0.12);
}
.approach-img {
  width: 100%;
  aspect-ratio: 5/4.6;
  object-fit: cover;
}
.approach-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(10, 37, 64, 0.15);
  border: 4px solid #ffffff;
}
.approach-img-accent-inner { width: 100%; aspect-ratio: 6/5; object-fit: cover; }
.approach-text-col .section-eyebrow { margin-bottom: 12px; }
.approach-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #52848c;
  margin: 0 0 36px;
}
.approach-methods { display: flex; flex-direction: column; gap: 24px; }
.approach-method { display: grid; grid-template-columns: 40px 1fr; gap: 16px; }
.approach-method-num {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #33c76d;
  line-height: 1;
  padding-top: 2px;
}
.approach-method-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0a2540;
  margin: 0 0 6px;
}
.approach-method-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #52848c;
  margin: 0;
}

@media (max-width: 900px) {
  .approach-layout { grid-template-columns: 1fr; gap: 48px; }
  .approach-img-accent { width: 160px; bottom: -16px; right: -16px; }
}

/* ─── FAQ ─── */
.faq { background: #f2faf5; }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.faq-header-col .section-eyebrow { margin-bottom: 12px; }
.faq-divider { margin-bottom: 24px; }
.faq-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #52848c;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(10, 37, 64, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(10, 37, 64, 0.06); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}
.faq-btn-text {
  font-size: 1rem;
  font-weight: 600;
  color: #0a2540;
}
.faq-btn-icon {
  flex-shrink: 0;
  color: #33c76d;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-btn-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-text {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #52848c;
  margin: 0;
}

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── CTA Banner ─── */
.cta-banner {
  position: relative;
  padding: 100px 24px;
  background: linear-gradient(135deg, #0a2540 0%, #1a5276 50%, #2d6a7a 100%);
  overflow: hidden;
}
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(51, 199, 109, 0.12) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(168, 230, 207, 0.08) 0%, transparent 40%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-heading {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.cta-text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(242, 250, 245, 0.75);
  margin: 0 0 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ─── Contact ─── */
.contact { background: #ffffff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-col .section-eyebrow { margin-bottom: 12px; }
.contact-divider { margin-bottom: 24px; }
.contact-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #52848c;
  margin: 0 0 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  color: #1a5276;
  flex-shrink: 0;
  padding-top: 2px;
}
.contact-detail-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #33c76d;
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 0.95rem;
  color: #0a2540;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.2s ease;
}
.contact-detail-value:hover { color: #1a5276; }
.contact-map { border-radius: 12px; overflow: hidden; }

/* Form */
.contact-form-card {
  background: #f2faf5;
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid rgba(51, 199, 109, 0.15);
}
.contact-form-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a2540;
  margin: 0 0 8px;
}
.contact-form-subtitle {
  font-size: 0.92rem;
  color: #52848c;
  line-height: 1.6;
  margin: 0 0 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0a2540;
  margin-bottom: 8px;
}
.form-required { color: #cc6e24; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(10, 37, 64, 0.12);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Inter', system-ui, sans-serif;
  color: #0a2540;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-input:focus {
  border-color: #33c76d;
  box-shadow: 0 0 0 3px rgba(51, 199, 109, 0.15);
}
.form-input::placeholder { color: #a8bcc8; }
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2352848c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
  text-align: center;
  padding: 32px 20px;
}
.form-success svg { margin: 0 auto 16px; }
.form-success-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #0a2540;
  margin: 0 0 8px;
}
.form-success-text {
  font-size: 0.95rem;
  color: #52848c;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
}

/* ─── Footer ─── */
.footer {
  background: #0a2540;
  color: rgba(242, 250, 245, 0.7);
  padding: 64px 24px 0;
}
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(242, 250, 245, 0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #f2faf5;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.footer-logo svg { color: #33c76d; }
.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(242, 250, 245, 0.55);
  margin: 0;
  max-width: 280px;
}
.footer-nav-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #33c76d;
  margin-bottom: 16px;
}
.footer-nav nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  color: rgba(242, 250, 245, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: #f2faf5; }
.footer-address {
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: normal;
}
.footer-address a {
  color: rgba(242, 250, 245, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-address a:hover { color: #f2faf5; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 0;
  text-align: center;
}
.footer-copy {
  font-size: 0.85rem;
  color: rgba(242, 250, 245, 0.4);
  margin: 0;
}
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(242, 250, 245, 0.3);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: #0a2540;
  color: #f2faf5;
  border: none;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.3);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 50;
}
.back-to-top:hover { transform: translateY(-3px); }

/* ─── Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
