:root {
  --ink: #0f2438;
  --ink-soft: #3a5063;
  --paper: #f7f5ef;
  --card: #ffffff;
  --line: #d8d2c4;
  --accent: #d95f43;
  --accent-deep: #b6452d;
  --teal: #1e7f7b;
  --shadow: 0 14px 40px rgba(14, 28, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 0% 0%, #efe7d6 0%, #f7f5ef 40%, #f4efe3 100%);
  line-height: 1.65;
  min-height: 100vh;
}

.backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(217, 95, 67, 0.16), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(30, 127, 123, 0.18), transparent 36%),
    linear-gradient(140deg, transparent 40%, rgba(15, 36, 56, 0.05) 100%);
  z-index: -1;
}

.container {
  width: min(1000px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 3rem;
}

/* ——— Header ——— */

header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.6rem 1.4rem;
  position: sticky;
  top: 0.75rem;
  z-index: 100;
  background: rgba(252, 250, 245, 0.92);
  border: 1px solid rgba(216, 210, 196, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(15, 36, 56, 0.08);
  margin-top: 0.75rem;
}

.brand {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: clamp(52px, 8vw, 88px);
  width: auto;
  display: block;
  object-fit: contain;
}

.brand span {
  color: var(--accent);
}

/* ——— Nav ——— */

nav {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

a {
  color: var(--ink);
}

nav a {
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: 0.38rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

nav a:hover,
nav a:focus-visible {
  transform: translateY(-1px);
  border-color: var(--accent);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

nav a[aria-current="page"] {
  background: rgba(217, 95, 67, 0.1);
  border-color: rgba(217, 95, 67, 0.42);
  color: var(--accent-deep);
}

/* ——— Hero (index page) ——— */

.hero {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(217, 95, 67, 0.25);
  border-radius: 20px;
  padding: clamp(1.3rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
  animation: rise 0.7s ease;
  margin-top: 1.4rem;
}

.hero h1 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.9rem, 6vw, 3rem);
  line-height: 1.1;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  max-width: 70ch;
}

.cta-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
}

.cta {
  text-decoration: none;
  border-radius: 14px;
  padding: 0.95rem;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--ink);
}

.cta strong {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  margin-bottom: 0.1rem;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 36, 56, 0.12);
}

/* ——— Generic section ——— */

.section {
  margin-top: 1.1rem;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: clamp(1rem, 2.5vw, 1.6rem);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  animation: rise 0.75s ease;
}

.section h2 {
  margin-top: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.section h1 {
  margin-top: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.section h3 {
  margin-bottom: 0.4rem;
  margin-top: 1.2rem;
}

/* ——— Meta ——— */

.meta {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ——— Notice ——— */

.notice {
  border-left: 4px solid var(--teal);
  padding: 0.8rem 0.9rem;
  background: #edf8f7;
  border-radius: 10px;
}

ul {
  margin-top: 0.5rem;
}

/* ——— Footer ——— */

footer {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(216, 210, 196, 0.5);
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: 0.01em;
}

/* ——— Animations ——— */

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   POLICY PAGE
   ======================================== */

/* Reading progress bar */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--teal) 100%);
  width: 0%;
  z-index: 9999;
  border-radius: 0 2px 2px 0;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* Policy hero */
.policy-hero {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(1rem, 2vw, 1.8rem);
  text-align: center;
  animation: rise 0.5s ease;
}

.policy-eyebrow {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(217, 95, 67, 0.1), rgba(30, 127, 123, 0.08));
  border: 1px solid rgba(217, 95, 67, 0.3);
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.38rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.policy-hero h1 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 1.4rem;
  background: linear-gradient(135deg, var(--ink) 15%, #1a3d5c 55%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-hero .meta {
  justify-content: center;
  margin-top: 0;
}

.policy-hero .meta span {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(216, 210, 196, 0.65);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.82rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Policy grid */
.policy-grid {
  display: grid;
  gap: 0.8rem;
  padding-bottom: 0.5rem;
}

/* Policy card */
.policy-card {
  background: var(--card);
  border: 1px solid rgba(216, 210, 196, 0.7);
  border-radius: 20px;
  padding: clamp(1.1rem, 2.5vw, 1.65rem) clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 2px 10px rgba(15, 36, 56, 0.04);
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.2rem;
  align-items: start;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  animation: rise 0.55s ease both;
}

.policy-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), rgba(217, 95, 67, 0.2));
  opacity: 0;
  transition: opacity 0.22s ease;
  border-radius: 3px 0 0 3px;
}

.policy-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 36, 56, 0.09);
  border-color: rgba(217, 95, 67, 0.3);
}

.policy-card:hover::after {
  opacity: 1;
}

/* Staggered entrance */
.policy-card:nth-child(1)  { animation-delay: 0.04s; }
.policy-card:nth-child(2)  { animation-delay: 0.09s; }
.policy-card:nth-child(3)  { animation-delay: 0.13s; }
.policy-card:nth-child(4)  { animation-delay: 0.17s; }
.policy-card:nth-child(5)  { animation-delay: 0.21s; }
.policy-card:nth-child(6)  { animation-delay: 0.24s; }
.policy-card:nth-child(7)  { animation-delay: 0.27s; }
.policy-card:nth-child(8)  { animation-delay: 0.30s; }
.policy-card:nth-child(9)  { animation-delay: 0.33s; }
.policy-card:nth-child(10) { animation-delay: 0.36s; }
.policy-card:nth-child(11) { animation-delay: 0.39s; }
.policy-card:nth-child(12) { animation-delay: 0.42s; }

/* Section number badge */
.policy-num {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(217, 95, 67, 0.1), rgba(217, 95, 67, 0.04));
  border: 1px solid rgba(217, 95, 67, 0.22);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  transition: background 0.22s, border-color 0.22s;
}

.policy-card:hover .policy-num {
  background: linear-gradient(135deg, rgba(217, 95, 67, 0.16), rgba(217, 95, 67, 0.07));
  border-color: rgba(217, 95, 67, 0.38);
}

/* Content typography */
.policy-content h3 {
  margin: 0.12rem 0 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.policy-content p {
  margin: 0 0 0.55rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.72;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

.policy-content ul {
  margin: 0 0 0.55rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.policy-content ul:last-child {
  margin-bottom: 0;
}

.policy-content li {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  padding-left: 1.2rem;
  position: relative;
}

.policy-content li::before {
  content: '';
  position: absolute;
  left: 0.15rem;
  top: 0.62em;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.75;
}

.policy-content a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(30, 127, 123, 0.28);
  transition: border-color 0.18s, color 0.18s;
  padding-bottom: 0.05em;
}

.policy-content a:hover {
  color: #135e5a;
  border-color: var(--teal);
}

/* Contact card variant */
.policy-card--contact {
  background: linear-gradient(135deg, #fff 60%, rgba(30, 127, 123, 0.035));
  border-color: rgba(30, 127, 123, 0.22);
}

.policy-card--contact .policy-num {
  color: var(--teal);
  background: linear-gradient(135deg, rgba(30, 127, 123, 0.1), rgba(30, 127, 123, 0.04));
  border-color: rgba(30, 127, 123, 0.22);
}

.policy-card--contact:hover {
  border-color: rgba(30, 127, 123, 0.38);
}

.policy-card--contact::after {
  background: linear-gradient(180deg, var(--teal), rgba(30, 127, 123, 0.2));
}

.policy-card--contact:hover .policy-num {
  background: linear-gradient(135deg, rgba(30, 127, 123, 0.16), rgba(30, 127, 123, 0.07));
  border-color: rgba(30, 127, 123, 0.38);
}

/* ——— Responsive ——— */

@media (max-width: 640px) {
  nav {
    width: 100%;
  }

  nav a {
    flex: 1;
    text-align: center;
    font-size: 0.79rem;
    padding: 0.36rem 0.4rem;
  }
}

@media (max-width: 520px) {
  .policy-card {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .policy-num {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    font-size: 0.72rem;
  }
}

/* ========================================
   LANDING PAGE — PREMIUM REDESIGN
   ======================================== */

/* ——— Landing Hero ——— */

.landing-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 1.4rem;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.85) 100%);
  border: 1px solid rgba(217, 95, 67, 0.22);
  border-radius: 24px;
  box-shadow: var(--shadow);
  animation: rise 0.7s ease;
  position: relative;
  overflow: hidden;
}

.landing-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(30, 127, 123, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(217, 95, 67, 0.1), rgba(30, 127, 123, 0.07));
  border: 1px solid rgba(217, 95, 67, 0.28);
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  width: fit-content;
}

.hero-headline {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, var(--ink) 15%, #1a3d5c 55%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hero-body p {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  color: var(--ink-soft);
  line-height: 1.72;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.4rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent) 0%, #c44e35 100%);
  color: #fff;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(217, 95, 67, 0.38);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  letter-spacing: 0.01em;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217, 95, 67, 0.48);
  background: linear-gradient(135deg, #e06b4d 0%, var(--accent-deep) 100%);
  color: #fff;
}

.btn-primary svg {
  flex-shrink: 0;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink-soft);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.68rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 210, 196, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
  letter-spacing: 0.01em;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-2px);
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(30, 127, 123, 0.06);
}

/* ——— Hero Visual ——— */

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 320px;
}

.hv-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 8px 28px rgba(15, 36, 56, 0.1), 0 2px 6px rgba(15, 36, 56, 0.05);
  border: 1px solid rgba(216, 210, 196, 0.6);
}

.hv-card--top {
  animation: hv-float 5s ease-in-out infinite;
}

.hv-card--mid {
  animation: hv-float 5s ease-in-out infinite;
  animation-delay: -1.6s;
}

.hv-card--bot {
  animation: hv-float 5s ease-in-out infinite;
  animation-delay: -3.2s;
}

@keyframes hv-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

/* Stats row (mid card) */
.hv-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.hv-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.hv-stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.hv-stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hv-stat-divider {
  width: 1px;
  height: 2rem;
  background: rgba(216, 210, 196, 0.7);
  flex-shrink: 0;
}

/* Feature row (bot card) */
.hv-feature-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hv-feature-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(30, 127, 123, 0.12), rgba(30, 127, 123, 0.05));
  border: 1px solid rgba(30, 127, 123, 0.22);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hv-feature-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.hv-feature-sub {
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 0.1rem;
}

.hv-feature-badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(30, 127, 123, 0.1);
  border: 1px solid rgba(30, 127, 123, 0.25);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  flex-shrink: 0;
}

/* Main card internals */
.hv-course-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.3rem;
}

.hv-course-name {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.hv-progress-bar {
  height: 6px;
  background: rgba(216, 210, 196, 0.5);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.35rem;
}

.hv-progress-fill {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--accent), #e8784f);
  border-radius: 999px;
}

.hv-progress-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.85rem;
  display: block;
}

.hv-skill-badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.hv-skill {
  font-size: 0.67rem;
  font-weight: 700;
  padding: 0.24rem 0.6rem;
  border-radius: 999px;
  background: rgba(216, 210, 196, 0.35);
  border: 1px solid rgba(216, 210, 196, 0.6);
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.hv-skill--active {
  background: rgba(30, 127, 123, 0.1);
  border-color: rgba(30, 127, 123, 0.32);
  color: var(--teal);
}

/* AI card internals */
.hv-ai-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.hv-ai-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(30, 127, 123, 0.2);
  flex-shrink: 0;
}

.hv-ai-label {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.hv-ai-text {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ——— Features Section ——— */

.features-section {
  margin-top: 1.4rem;
  animation: rise 0.78s ease;
}

.features-section-header {
  text-align: center;
  margin-bottom: 1.2rem;
}

.features-section-header h2 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.features-section-header p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid rgba(216, 210, 196, 0.7);
  border-radius: 18px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 2px 10px rgba(15, 36, 56, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15, 36, 56, 0.1);
  border-color: rgba(217, 95, 67, 0.22);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon--orange {
  background: rgba(217, 95, 67, 0.1);
  border: 1px solid rgba(217, 95, 67, 0.22);
  color: var(--accent);
}

.feature-icon--teal {
  background: rgba(30, 127, 123, 0.1);
  border: 1px solid rgba(30, 127, 123, 0.22);
  color: var(--teal);
}

.feature-icon--blue {
  background: rgba(15, 36, 56, 0.08);
  border: 1px solid rgba(15, 36, 56, 0.14);
  color: var(--ink);
}

.feature-title {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

/* ——— Quick Links Section ——— */

.links-section {
  margin-top: 1.4rem;
  animation: rise 0.82s ease;
}

.links-section-header {
  margin-bottom: 1rem;
}

.links-section-header h2 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700;
  margin: 0 0 0.3rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.links-section-header p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  background: var(--card);
  border: 1px solid rgba(216, 210, 196, 0.7);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 2px 8px rgba(15, 36, 56, 0.04);
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 36, 56, 0.1);
  border-color: rgba(217, 95, 67, 0.3);
}

.link-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.link-icon--shield {
  background: rgba(30, 127, 123, 0.1);
  border: 1px solid rgba(30, 127, 123, 0.22);
  color: var(--teal);
}

.link-icon--doc {
  background: rgba(15, 36, 56, 0.08);
  border: 1px solid rgba(15, 36, 56, 0.14);
  color: var(--ink);
}

.link-icon--support {
  background: rgba(217, 95, 67, 0.1);
  border: 1px solid rgba(217, 95, 67, 0.22);
  color: var(--accent);
}

.link-icon--delete {
  background: rgba(185, 28, 28, 0.07);
  border: 1px solid rgba(185, 28, 28, 0.16);
  color: #b91c1c;
}

.link-body {
  flex: 1;
  min-width: 0;
}

.link-body strong {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.18rem;
  color: var(--ink);
}

.link-body span {
  font-size: 0.83rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.link-arrow {
  font-size: 1.15rem;
  color: var(--line);
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
  margin-left: auto;
}

.link-card:hover .link-arrow {
  color: var(--accent);
  transform: translateX(3px);
}

/* ——— Company Section ——— */

.company-section {
  margin-top: 1.4rem;
  background: var(--card);
  border-radius: 18px;
  border: 1px solid rgba(216, 210, 196, 0.7);
  padding: clamp(1.3rem, 3vw, 2rem) clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: 0 3px 12px rgba(15, 36, 56, 0.04);
  animation: rise 0.85s ease;
}

.company-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(216, 210, 196, 0.5);
}

.company-section-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(15, 36, 56, 0.07);
  border: 1px solid rgba(15, 36, 56, 0.12);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.company-section-header h2 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.company-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.5rem;
}

.company-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.company-item--wide {
  grid-column: 1 / -1;
}

.company-item-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.75;
}

.company-item-value {
  font-size: 0.93rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}

.company-item-value a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(30, 127, 123, 0.28);
  transition: border-color 0.18s, color 0.18s;
  padding-bottom: 0.05em;
}

.company-item-value a:hover {
  color: #135e5a;
  border-color: var(--teal);
}

/* ——— Responsive: landing redesign ——— */

@media (max-width: 768px) {
  .landing-hero {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .hero-visual {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .links-grid {
    grid-template-columns: 1fr;
  }

  .company-details {
    grid-template-columns: 1fr;
  }

  .company-item--wide {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}
