/* =============================================
   Shule Yako — Bristol-Inspired
   Anchor: #004aae
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Colors ---------- */
:root {
  --primary: #004aae;
  --primary-dark: #062c65;
  --primary-700: #005fff;
  --primary-600: #0078ff;
  --primary-500: #079eff;
  --primary-50: #ebf8ff;
  --green: #17a230;
  --green-600: #17a230;
  --green-700: #157928;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #adb5bd;
  --gray-500: #868e96;
  --gray-600: #495057;
  --gray-700: #343a40;
  --gray-800: #212529;
  --gray-900: #111;
  --white: #fff;

  /* Inline hero palette */
  --blue: #07499d;
  --blue-dark: #053a80;
  --blue-soft: #eaf6fb;
  --green-light: #7ff09c;
  --ink: #111820;
  --muted: #7b8790;
  --line: #d9e2ea;
  --section: #f6f9fb;
  --shadow: 0 24px 70px rgba(15, 42, 80, .12);
  --radius: 24px;
}

/* ---------- Container ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

@media (max-width: 991px) {
  .container { padding: 0 30px; }
}

@media (max-width: 479px) {
  .container { padding: 0 20px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 44px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--green-600);
  color: #fff;
  border: 2px solid var(--green-600);
}

.btn-primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
}

.btn-outline-dark:hover {
  border-color: var(--gray-500);
}

.btn-full { width: 100%; }

/* ---------- Section ---------- */
.section {
  padding: 104px 0;
}

.section-gray {
  background: var(--section);
}

.section-header {
  text-align: center;
  margin-bottom: 54px;
}

.section-label {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
}

.section-title {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.accent {
  color: var(--blue);
}

.section-sub {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 24px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: var(--primary);
  padding: 14px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--primary);
  transition: color 0.3s ease;
}

.navbar.scrolled .navbar-brand {
  color: var(--white);
}

.navbar-brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 980px) {
  .nav-links { display: none; }
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--primary); }

.navbar.scrolled .nav-links a {
  color: rgba(255,255,255,0.8);
}

.navbar.scrolled .nav-links a:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions .btn {
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 1.5px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

@media (max-width: 980px) {
  .menu-toggle { display: flex; }
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar.scrolled .menu-toggle span {
  background: var(--white);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px 30px;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.navbar.scrolled + .mobile-menu {
  top: 68px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}

/* ---------- Hero (rich dashboard) ---------- */
.hero {
  background:
    radial-gradient(circle at 75% 20%, rgba(23,162,48,.08), transparent 28%),
    linear-gradient(180deg, #eaf7fc 0%, #eef8fb 72%, #fff 100%);
  overflow: hidden;
}

.hero .container {
  min-height: 690px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 58px;
  padding: 120px 0 90px;
}

@media (max-width: 980px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
  }
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 6vw, 82px);
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 850;
}

.hero h1 .light {
  color: #aeb8c1;
  font-weight: 300;
  letter-spacing: -.07em;
}

.hero p {
  max-width: 500px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

@media (max-width: 680px) {
  .hero p {
    font-size: 17px;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

@media (max-width: 680px) {
  .hero-buttons {
    flex-direction: column;
  }
}

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

@media (max-width: 980px) {
  .hero-image {
    justify-content: flex-start;
  }
}

/* ---- Hero visual / dashboard ---- */
.hero-visual {
  position: relative;
  width: 610px;
  max-width: 100%;
  min-height: 470px;
  isolation: isolate;
}

.orb {
  position: absolute;
  inset: 40px 10px 20px 64px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,.95), transparent 22%),
    radial-gradient(circle at 80% 10%, rgba(126,240,156,.4), transparent 28%),
    linear-gradient(145deg, rgba(7,73,157,.18), rgba(23,162,48,.08));
  filter: blur(.2px);
  opacity: .75;
  z-index: -2;
}

/* Dashboard card */
.dashboard-card {
  position: absolute;
  inset: 50px 20px 36px 44px;
  padding: 28px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 12%, rgba(255,255,255,.24), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(126,240,156,.22), transparent 30%),
    linear-gradient(145deg, #063a7d, #0759c3);
  box-shadow: 0 38px 100px rgba(7, 63, 134, .32);
  overflow: hidden;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 100% 58px, 72px 100%;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}

.dashboard-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  bottom: -110px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}

.dashboard-top,
.payment-row,
.progress-track,
.chart-area,
.dashboard-grid,
.activity-list {
  position: relative;
  z-index: 1;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.dashboard-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.66);
  font-weight: 800;
}

.dashboard-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-light);
  box-shadow: 0 0 0 5px rgba(126,240,156,.12);
}

.dashboard-top h3 {
  margin: 12px 0 5px;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -.04em;
}

.dashboard-top p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.status-pill {
  height: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.16);
  font-size: 13px;
  white-space: nowrap;
}

.payment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255,255,255,.78);
  margin-bottom: 10px;
}

.payment-row strong {
  color: #fff;
}

.progress-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  overflow: hidden;
  margin-bottom: 24px;
}

.progress-fill {
  width: 92%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-600), var(--green-light));
}

.chart-area {
  height: 120px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(4, 32, 76, .22);
  border: 1px solid rgba(255,255,255,.1);
  margin-bottom: 16px;
}

.chart-area span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(to top, var(--green-600), var(--green-light));
  box-shadow: 0 12px 28px rgba(23,162,48,.18);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.dashboard-grid div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}

.dashboard-grid span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.62);
  margin-bottom: 6px;
}

.dashboard-grid strong {
  font-size: 19px;
}

.activity-list {
  display: grid;
  gap: 9px;
}

.activity-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

.activity-item strong {
  color: #fff;
  font-size: 13px;
}

/* Floating cards */
.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 198px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 28px 80px rgba(15, 42, 80, .18);
  backdrop-filter: blur(18px);
}

.floating-card span {
  display: block;
  margin-bottom: 7px;
  color: #7d8790;
  font-size: 13px;
}

.floating-card strong {
  color: var(--ink);
  font-size: 19px;
  letter-spacing: -.02em;
}

.floating-card-top {
  top: 82px;
  right: -6px;
}

.floating-card-left {
  left: 0;
  bottom: 96px;
}

.floating-card-bottom {
  right: 42px;
  bottom: 0;
}

/* Phone card */
.phone-card {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 126px;
  height: 202px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15,42,80,.16);
  padding: 12px;
  transform: rotate(-6deg);
  z-index: 2;
}

.phone-screen {
  height: 100%;
  border-radius: 18px;
  background: linear-gradient(180deg, #f5fbff, #eaf4fb);
  padding: 14px 10px;
  overflow: hidden;
}

.phone-pill {
  width: 36px;
  height: 5px;
  border-radius: 999px;
  background: #cfdce7;
  margin: 0 auto 18px;
}

.phone-line {
  height: 8px;
  border-radius: 999px;
  background: #c8d7e4;
  margin-bottom: 9px;
}

.phone-line.short {
  width: 62%;
}

.phone-pay {
  margin-top: 18px;
  border-radius: 15px;
  background: var(--green-600);
  color: #fff;
  padding: 12px;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

/* ---- Hero responsive ---- */
@media (max-width: 680px) {
  .hero .container {
    padding-top: 90px;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(40px, 10vw, 54px);
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 340px;
  }

  .hero-visual {
    width: 100%;
    min-height: 420px;
    margin: 0 auto;
  }

  .orb {
    inset: 30px 0 30px 20px;
  }

  .dashboard-card {
    inset: 80px 10px 60px 10px;
    padding: 18px;
    border-radius: 22px;
  }

  .dashboard-top {
    display: block;
  }

  .dashboard-top h3 {
    font-size: 32px;
  }

  .dashboard-label {
    font-size: 11px;
  }

  .status-pill {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    padding: 7px 11px;
  }

  .payment-row {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .progress-track {
    margin-bottom: 16px;
  }

  .chart-area {
    height: 72px;
    padding: 12px;
    gap: 8px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 10px;
  }

  .dashboard-grid div {
    padding: 10px 12px;
  }

  .dashboard-grid strong {
    font-size: 16px;
  }

  .activity-list {
    gap: 6px;
  }

  .activity-item {
    padding: 8px 10px;
    font-size: 11px;
  }

  .phone-card {
    width: 96px;
    height: 152px;
    left: 6px;
    top: 4px;
    padding: 8px;
  }

  .phone-screen {
    padding: 10px 8px;
  }

  .phone-pill {
    width: 28px;
    height: 4px;
    margin: 0 auto 12px;
  }

  .phone-line {
    height: 6px;
    margin-bottom: 6px;
  }

  .phone-pay {
    margin-top: 12px;
    padding: 8px;
    font-size: 10px;
  }

  .floating-card {
    min-width: 140px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .floating-card span {
    font-size: 11px;
    margin-bottom: 4px;
  }

  .floating-card strong {
    font-size: 16px;
  }

  .floating-card-top {
    top: 28px;
    right: 4px;
  }

  .floating-card-left {
    left: 4px;
    bottom: 60px;
  }

  .floating-card-bottom {
    right: 4px;
    bottom: 0;
  }

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

@media (max-width: 420px) {
  .hero .container {
    padding-top: 76px;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 40px);
  }

  .hero p {
    font-size: 15px;
    margin-top: 20px;
  }

  .hero-buttons {
    margin-top: 28px;
  }

  .hero-buttons .btn {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 340px;
  }

  .dashboard-card {
    inset: 64px 6px 50px 6px;
    padding: 14px;
    border-radius: 18px;
  }

  .dashboard-top h3 {
    font-size: 26px;
  }

  .dashboard-label::before {
    width: 6px;
    height: 6px;
  }

  .chart-area {
    height: 56px;
    padding: 8px;
    gap: 5px;
    border-radius: 16px;
  }

  .dashboard-grid div {
    padding: 8px 10px;
    border-radius: 14px;
  }

  .phone-card {
    width: 76px;
    height: 122px;
    left: 4px;
    top: 2px;
    padding: 6px;
  }

  .phone-screen {
    padding: 8px 6px;
    border-radius: 14px;
  }

  .phone-pill {
    width: 22px;
    height: 3px;
    margin: 0 auto 8px;
  }

  .phone-line {
    height: 5px;
    margin-bottom: 5px;
  }

  .phone-pay {
    margin-top: 10px;
    padding: 6px;
    font-size: 9px;
    border-radius: 12px;
  }

  .floating-card {
    min-width: 120px;
    padding: 10px 12px;
  }

  .floating-card strong {
    font-size: 14px;
  }

  .floating-card-top {
    top: 18px;
  }

  .floating-card-left {
    bottom: 44px;
  }

  .orb {
    inset: 20px 0 20px 10px;
    border-radius: 28px;
  }

  .dashboard-card::after {
    width: 160px;
    height: 160px;
    right: -60px;
    bottom: -70px;
  }
}

/* ---------- Feature Cards ---------- */
.feature-grid,
.steps-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-grid {
  grid-template-columns: .85fr 1.15fr;
  align-items: start;
}

.card,
.form-card {
  background: #fff;
  border: 1px solid #e7eef4;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 18px 50px rgba(15,42,80,.06);
}

.card-icon,
.contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--blue);
  background: #eaf6fb;
  margin-bottom: 22px;
}

.card h3,
.form-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.card p,
.form-sub {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 22px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
}

.card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4c5965;
  line-height: 1.45;
  font-size: 14px;
}

.check {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
}

/* ---------- Steps ---------- */
.step-number {
  font-size: 13px;
  letter-spacing: .16em;
  color: var(--green);
  font-weight: 900;
  margin-bottom: 18px;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid #e0e9f0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 22px 24px;
  font-size: 17px;
  font-weight: 800;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--ink);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.faq-answer.open {
  max-height: 260px;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.65;
}

.icon.open {
  transform: rotate(45deg);
}

.icon {
  transition: .2s ease;
  color: var(--blue);
  font-size: 24px;
}

/* ---------- CTA ---------- */
.cta-section {
  padding: 110px 20px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(126,240,156,.22), transparent 30%),
    linear-gradient(145deg, #063a7d, #0759c3);
}

.cta-section h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.cta-section .accent {
  color: var(--green-light);
}

.cta-section p {
  max-width: 620px;
  margin: 18px auto 30px;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.6;
}

/* ---------- Contact ---------- */
.contact-section {
  padding: 104px 0;
  background: #fff;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.contact-info-item h4 {
  margin: 0 0 5px;
  font-size: 17px;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--muted);
  margin: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #dce6ee;
  border-radius: 14px;
  padding: 15px 16px;
  font: inherit;
  color: var(--ink);
  outline: none;
  background: #fbfdff;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(7,73,157,.08);
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  background: #eaf8ee;
  color: #0e7a23;
  line-height: 1.5;
}

.form-success.show {
  display: block;
}

/* ---------- Footer ---------- */
.footer {
  background: #071524;
  color: #fff;
  padding: 68px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .6fr .8fr;
  gap: 40px;
  margin-bottom: 54px;
}

.footer-brand p {
  max-width: 370px;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
}

.footer-col h4 {
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}

.footer-col a,
.footer-social a {
  color: rgba(255,255,255,.62);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.48);
  font-size: 14px;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .feature-grid,
  .steps-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1148px);
  }

  .nav-actions .btn {
    display: none;
  }

  .section,
  .contact-section {
    padding: 72px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* ---------- Login ---------- */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-50);
  padding: 24px;
}

.login-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
}

.login-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.login-brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.login-brand span {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.login-card h1 {
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 8px;
}

.login-sub {
  font-size: 14px;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 32px;
}

.login-card label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.login-card input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.login-card input:focus {
  border-color: var(--primary);
}

.login-card .form-group {
  margin-bottom: 20px;
}

.login-card .btn {
  width: 100%;
  margin-top: 8px;
}

.login-error {
  display: none;
  background: #ffe3e3;
  border: 1px solid #ffa8a8;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #c92a2a;
  margin-bottom: 20px;
  text-align: center;
}

.login-error.show { display: block; }

.login-back {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--gray-500);
}

.login-back a {
  color: var(--primary);
  font-weight: 500;
}

.login-back a:hover {
  text-decoration: underline;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
