:root {
  --al-blue: #2563a8;
  --al-blue-deep: #1c4b82;
  --al-coral: #ff7a5c;
  --al-coral-soft: #ffe4dc;
  --al-grey: #f0f2f5;
  --al-ink: #23303f;
  --al-ink-soft: #5b6775;
  --al-white: #ffffff;
  --al-radius: 18px;
  --al-radius-lg: 26px;
  --al-shadow: 0 18px 40px -24px rgba(28, 75, 130, 0.45);
  --al-shadow-soft: 0 10px 26px -18px rgba(28, 75, 130, 0.4);
  --al-max: 1080px;
  --al-space: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.al-body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--al-ink);
  background: var(--al-grey);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .al-brand-text {
  font-family: "Poppins", "Inter", sans-serif;
  line-height: 1.2;
  margin: 0;
}

a { color: inherit; }

/* ---------- Header ---------- */
.al-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(37, 99, 168, 0.1);
}

.al-header-inner {
  max-width: var(--al-max);
  margin: 0 auto;
  padding: 14px var(--al-space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.al-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--al-blue);
  font-weight: 600;
}

.al-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--al-blue), var(--al-blue-deep));
  color: var(--al-white);
  box-shadow: var(--al-shadow-soft);
}

.al-brand-text {
  font-size: 1.1rem;
  color: var(--al-ink);
}

.al-nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  border: none;
  border-radius: 12px;
  background: var(--al-grey);
  cursor: pointer;
}

.al-nav-bar {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--al-blue);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.al-nav-toggle[aria-expanded="true"] .al-nav-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.al-nav-toggle[aria-expanded="true"] .al-nav-bar:nth-child(2) { opacity: 0; }
.al-nav-toggle[aria-expanded="true"] .al-nav-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.al-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: grid;
  gap: 4px;
  padding: 0 var(--al-space);
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid transparent;
  transition: max-height 0.34s ease, padding 0.34s ease;
}

.al-nav.al-nav-open {
  max-height: 280px;
  padding: 10px var(--al-space) 18px;
  border-bottom-color: rgba(37, 99, 168, 0.1);
}

.al-nav-link {
  text-decoration: none;
  color: var(--al-ink);
  font-weight: 500;
  padding: 12px 14px;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.al-nav-link:hover { background: var(--al-grey); color: var(--al-blue); }

.al-nav-cta {
  background: var(--al-coral);
  color: var(--al-white);
  text-align: center;
}

.al-nav-cta:hover { background: #ff6746; color: var(--al-white); }

/* ---------- Buttons ---------- */
.al-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.al-btn-primary {
  background: var(--al-coral);
  color: var(--al-white);
  box-shadow: 0 14px 26px -14px rgba(255, 122, 92, 0.9);
}

.al-btn-primary:hover { transform: translateY(-2px); background: #ff6746; }

.al-btn-ghost {
  background: transparent;
  color: var(--al-blue);
  border-color: rgba(37, 99, 168, 0.35);
}

.al-btn-ghost:hover { background: var(--al-white); transform: translateY(-2px); }

.al-btn-block { width: 100%; word-break: break-word; }

/* ---------- Hero ---------- */
.al-hero {
  position: relative;
  overflow: hidden;
  padding: 56px var(--al-space) 64px;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(255, 122, 92, 0.14), transparent 55%),
    linear-gradient(160deg, #ffffff 0%, var(--al-grey) 100%);
}

.al-hero-glow {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 168, 0.18), transparent 70%);
  pointer-events: none;
}

.al-hero-inner {
  position: relative;
  max-width: var(--al-max);
  margin: 0 auto;
  z-index: 1;
}

.al-eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--al-coral-soft);
  color: #c9492b;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.al-hero-title {
  font-size: clamp(2.1rem, 7vw, 3.4rem);
  font-weight: 700;
  color: var(--al-blue-deep);
  max-width: 12ch;
}

.al-hero-lead {
  margin: 18px 0 28px;
  font-size: clamp(1rem, 3.6vw, 1.2rem);
  color: var(--al-ink-soft);
  max-width: 54ch;
}

.al-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.al-hero-cards {
  position: relative;
  max-width: var(--al-max);
  margin: 40px auto 0;
  display: flex;
  gap: 14px;
  justify-content: center;
  z-index: 1;
}

.al-hero-card {
  position: relative;
  flex: 1 1 0;
  max-width: 150px;
  aspect-ratio: 3 / 4;
  border-radius: var(--al-radius);
  background: var(--al-white);
  box-shadow: var(--al-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.al-hero-card-roof {
  height: 42%;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.al-hero-card-body {
  flex: 1;
  border-top: 3px solid rgba(255, 255, 255, 0.6);
}

.al-hero-card-a .al-hero-card-roof { background: var(--al-coral); }
.al-hero-card-a .al-hero-card-body { background: linear-gradient(180deg, #fff, #ffe9e2); }
.al-hero-card-b { transform: translateY(-18px); }
.al-hero-card-b .al-hero-card-roof { background: var(--al-blue); }
.al-hero-card-b .al-hero-card-body { background: linear-gradient(180deg, #fff, #e7effa); }
.al-hero-card-c .al-hero-card-roof { background: var(--al-blue-deep); }
.al-hero-card-c .al-hero-card-body { background: linear-gradient(180deg, #fff, #eef1f6); }

/* ---------- Sections ---------- */
.al-section-inner {
  max-width: var(--al-max);
  margin: 0 auto;
  padding: 56px var(--al-space);
}

.al-section-title {
  font-size: clamp(1.6rem, 5.2vw, 2.3rem);
  font-weight: 600;
  color: var(--al-blue-deep);
}

.al-about { background: var(--al-white); }

.al-about-text {
  margin: 20px 0 0;
  font-size: 1.05rem;
  color: var(--al-ink-soft);
  max-width: 66ch;
}

/* ---------- Offerings ---------- */
.al-offerings-intro {
  margin: 16px 0 34px;
  color: var(--al-ink-soft);
  max-width: 56ch;
}

.al-card-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.al-card {
  background: var(--al-white);
  border: 1px solid rgba(37, 99, 168, 0.08);
  border-radius: var(--al-radius-lg);
  padding: 26px 24px;
  box-shadow: var(--al-shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.al-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 46px -26px rgba(28, 75, 130, 0.5);
}

.al-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: var(--al-white);
  margin-bottom: 16px;
}

.al-card-badge-1 { background: linear-gradient(140deg, var(--al-coral), #ff9a80); }
.al-card-badge-2 { background: linear-gradient(140deg, var(--al-blue), #3f83cf); }
.al-card-badge-3 { background: linear-gradient(140deg, var(--al-blue-deep), #2f74b8); }
.al-card-badge-4 { background: linear-gradient(140deg, #ff6746, var(--al-coral)); }

.al-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--al-ink);
  margin-bottom: 8px;
}

.al-card-text {
  margin: 0;
  color: var(--al-ink-soft);
  font-size: 0.98rem;
}

/* ---------- Contact ---------- */
.al-contact {
  background: linear-gradient(155deg, var(--al-blue-deep), var(--al-blue));
  color: var(--al-white);
}

.al-contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

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

.al-contact-text {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  max-width: 46ch;
}

.al-registered {
  margin: 22px 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.al-contact-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--al-radius-lg);
  padding: 26px 24px;
}

.al-contact-panel-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.al-address {
  font-style: normal;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.al-address-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--al-coral-soft);
  margin-bottom: 6px;
}

/* ---------- Footer ---------- */
.al-footer {
  background: var(--al-ink);
  color: rgba(255, 255, 255, 0.78);
}

.al-footer-inner {
  max-width: var(--al-max);
  margin: 0 auto;
  padding: 40px var(--al-space);
  display: grid;
  gap: 18px;
}

.al-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.al-footer-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.al-footer-name {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--al-white);
}

.al-footer-address {
  font-style: normal;
  line-height: 1.8;
  font-size: 0.92rem;
}

.al-footer-link {
  color: var(--al-coral);
  text-decoration: none;
  font-weight: 500;
}

.al-footer-link:hover { text-decoration: underline; }

.al-footer-nav { display: flex; gap: 18px; }

/* ---------- Reveal animation ---------- */
.al-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.al-reveal.al-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Privacy page ---------- */
.al-legal {
  background: var(--al-white);
}

.al-legal-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px var(--al-space) 60px;
}

.al-legal-title {
  font-size: clamp(1.8rem, 5.5vw, 2.4rem);
  color: var(--al-blue-deep);
  margin-bottom: 10px;
}

.al-legal-intro {
  color: var(--al-ink-soft);
  margin-bottom: 8px;
}

.al-legal h2 {
  font-size: 1.25rem;
  color: var(--al-blue);
  margin: 32px 0 10px;
}

.al-legal p { color: var(--al-ink-soft); margin: 0 0 12px; }

.al-legal ul {
  color: var(--al-ink-soft);
  padding-left: 20px;
  margin: 0 0 12px;
}

.al-legal li { margin-bottom: 6px; }

.al-legal a { color: var(--al-blue); }

/* ---------- Larger screens ---------- */
@media (min-width: 720px) {
  .al-card-grid { grid-template-columns: repeat(2, 1fr); }
  .al-contact-inner { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .al-hero-card { max-width: 180px; }
}

@media (min-width: 900px) {
  .al-nav-toggle { display: none; }
  .al-nav {
    position: static;
    max-height: none;
    overflow: visible;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: none;
  }
  .al-nav-link { padding: 10px 16px; }
  .al-nav-cta { padding: 11px 22px; }
  .al-hero { padding: 76px var(--al-space) 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .al-reveal { transition: none; opacity: 1; transform: none; }
  .al-btn, .al-card { transition: none; }
}
