/* ============================================================
   KALVISION — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Semi+Condensed:wght@400;500;600;700&family=Mulish:wght@300;400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --navy:    #0D1F3C;
  --navy2:   #152a50;
  --blue:    #1A56DB;
  --blue2:   #2563EB;
  --cyan:    #06B6D4;
  --cyan2:   #22D3EE;
  --surface: #F0F4FF;
  --white:   #FFFFFF;
  --dark:    #0B172E;
  --text:    #1E293B;
  --muted:   #64748B;
  --border:  #CBD5E1;
  --shadow:  0 4px 24px rgba(13,31,60,0.12);
  --radius:  6px;
  --trans:   all 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Mulish', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Barlow Semi Condensed', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-family: 'Barlow Semi Condensed', sans-serif; font-weight: 600; color: var(--navy); }
p  { color: var(--text); }

/* ── Layout Helpers ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--surface); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }

/* ── Section Titles ── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.section-title {
  color: var(--navy);
  margin-bottom: 16px;
}
.section-lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 620px;
}
.divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
  margin: 20px 0 40px;
}
.divider--center { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--trans);
}
.btn--primary {
  background: var(--blue2);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
.btn--primary:hover { background: #1d4ed8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.45); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--ghost {
  background: transparent;
  color: var(--blue2);
  padding: 0;
  font-size: 0.9rem;
  gap: 6px;
}
.btn--ghost:hover { color: var(--navy); gap: 10px; }
.btn--ghost svg { transition: var(--trans); }

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--trans);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.nav--scrolled {
  background: rgba(13,31,60,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav--solid {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav__logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__logo span { color: var(--cyan); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__item { position: relative; }
.nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  color: rgba(255,255,255,0.85);
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: var(--trans);
}
.nav__link:hover, .nav__link--active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav__link svg { opacity: 0.7; }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: var(--trans);
  border-top: 3px solid var(--blue2);
  /* Invisible padding bridges the gap so mouse stays in hover zone */
  padding-top: 8px;
  margin-top: 0;
}
/* Invisible bridge above the dropdown so moving mouse diagonally doesn't close it */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav__item:hover .nav__dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav__dropdown a {
  display: block;
  padding: 12px 18px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
.nav__dropdown a:last-child { border-bottom: none; }
.nav__dropdown a:hover { background: var(--surface); color: var(--blue2); padding-left: 24px; }

.nav__cta { margin-left: 12px; padding: 10px 22px; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav__hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--trans); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.active { opacity: 1; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,60,0.88) 0%, rgba(26,86,219,0.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 32px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--cyan);
}
.hero__title { color: var(--white); text-shadow: 0 2px 12px rgba(0,0,0,0.3); margin-bottom: 24px; }
.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--trans);
}
.hero__dot.active { background: var(--cyan); width: 24px; border-radius: 4px; }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 1; transform: scaleY(1) translateY(0); }
  50% { opacity: 0.3; transform: scaleY(0.5) translateY(20px); }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 140px 0 70px;
  background: var(--navy);
  background-image: url('https://www.kalvision.com/wp-content/uploads/2016/03/cropped-maintop.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,31,60,0.93) 50%, rgba(13,31,60,0.6));
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.page-hero__title { color: white; margin-bottom: 16px; }
.page-hero__lead { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 580px; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.85rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--trans); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb strong { color: rgba(255,255,255,0.9); }

/* ══════════════════════════════
   CARDS
══════════════════════════════ */
.card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(203,213,225,0.5);
  transition: var(--trans);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(13,31,60,0.15); }

.card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue2), var(--cyan));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; color: white; }
.card__title { margin-bottom: 12px; }
.card__body { color: var(--muted); margin-bottom: 20px; line-height: 1.6; }

/* Service/Solution Cards */
.solution-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(203,213,225,0.4);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.solution-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(13,31,60,0.18); }
.solution-card__bar {
  height: 4px;
  background: linear-gradient(90deg, var(--blue2), var(--cyan));
}
.solution-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.solution-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.solution-card__title { color: var(--navy); margin-bottom: 12px; font-size: 1.15rem; }
.solution-card__text { color: var(--muted); font-size: 0.93rem; line-height: 1.65; flex: 1; margin-bottom: 20px; }

/* ══════════════════════════════
   STATS BANNER
══════════════════════════════ */
.stats {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 60px 0;
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__num {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.5rem;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials { background: var(--surface); }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.testimonial {
  background: var(--white);
  border-radius: 10px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  border-left: 4px solid var(--blue2);
}
.testimonial__quote {
  font-size: 3rem;
  color: var(--blue2);
  opacity: 0.2;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: -8px;
}
.testimonial__text {
  color: var(--text);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.testimonial__author { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.testimonial__role { color: var(--muted); font-size: 0.83rem; }
.testimonial__company {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue2);
  background: rgba(37,99,235,0.08);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ══════════════════════════════
   WHY KALVISION / ABOUT
══════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(37,99,235,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue2);
}
.why-item__title { font-weight: 700; color: var(--navy); margin-bottom: 4px; font-size: 0.95rem; }
.why-item__text { color: var(--muted); font-size: 0.88rem; }

/* ══════════════════════════════
   INNER PAGE CONTENT
══════════════════════════════ */
.inner-content { padding: 80px 0; }
.inner-content .prose h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--surface);
}
.inner-content .prose h3:first-child { margin-top: 0; }
.inner-content .prose p { color: var(--muted); margin-bottom: 16px; }
.inner-content .prose ul {
  list-style: none;
  margin: 16px 0 24px;
}
.inner-content .prose ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text);
  border-bottom: 1px solid rgba(203,213,225,0.3);
  font-size: 0.95rem;
}
.inner-content .prose ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--blue2);
  font-size: 0.8rem;
  top: 10px;
}
.inner-content .prose strong { color: var(--navy); }

.cta-box {
  background: linear-gradient(135deg, var(--navy), var(--blue2));
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  color: white;
  margin-top: 48px;
}
.cta-box h3 { color: white; margin-bottom: 12px; }
.cta-box p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }

/* Sidebar */
.sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--navy);
  border-radius: 10px;
  padding: 28px;
  color: white;
  margin-bottom: 24px;
}
.sidebar-card h4 { color: var(--cyan); margin-bottom: 16px; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
.sidebar-card ul { list-style: none; }
.sidebar-card ul li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li a {
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: var(--trans);
}
.sidebar-card ul li a:hover { color: var(--cyan); padding-left: 6px; }
.sidebar-card ul li.active a { color: var(--cyan); font-weight: 600; }

.contact-sidebar {
  background: linear-gradient(135deg, var(--blue2), var(--cyan));
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  color: white;
}
.contact-sidebar h4 { color: white; font-size: 1.1rem; margin-bottom: 12px; }
.contact-sidebar p { font-size: 0.88rem; opacity: 0.9; margin-bottom: 20px; }
.contact-sidebar .btn { width: 100%; justify-content: center; background: white; color: var(--blue2); }
.contact-sidebar .btn:hover { background: var(--surface); }

/* ══════════════════════════════
   CONTACT PAGE
══════════════════════════════ */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; }

.contact-form-wrapper {
  background: var(--white);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 8px 40px rgba(13,31,60,0.1);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  letter-spacing: 0.02em;
}
.form-group label span { color: #EF4444; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Mulish', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--trans);
  outline: none;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue2);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group--row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__submit {
  width: 100%;
  padding: 15px;
  font-size: 1.05rem;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue2), #1d4ed8);
}
.form__submit:hover { background: linear-gradient(135deg, #1d4ed8, #1e40af); transform: translateY(-2px); }
.form__hint {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-weight: 500;
}
.form__hint--success { background: #D1FAE5; color: #065F46; border: 1px solid #6EE7B7; display: block; }
.form__hint--error   { background: #FEE2E2; color: #7F1D1D; border: 1px solid #FCA5A5; display: block; }
.honeypot { display: none !important; }

/* Contact Info Sidebar */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.info-card__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue2), var(--cyan));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.info-card__label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 4px; }
.info-card__value { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.info-card__value a { color: var(--blue2); }
.info-card__value a:hover { text-decoration: underline; }

.emailjs-note {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border: 1px solid #F59E0B;
  border-radius: 8px;
  padding: 18px 20px;
  font-size: 0.83rem;
  color: #92400E;
  line-height: 1.6;
}
.emailjs-note strong { display: block; margin-bottom: 4px; font-size: 0.88rem; }
.emailjs-note code { background: rgba(0,0,0,0.1); padding: 1px 5px; border-radius: 3px; font-size: 0.8rem; }

/* ══════════════════════════════
   RECENT ARTICLES
══════════════════════════════ */
.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.article-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--trans);
  border-left: 4px solid var(--blue2);
}
.article-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(13,31,60,0.15); }
.article-card__date { font-size: 0.75rem; color: var(--muted); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.article-card__title { color: var(--navy); font-size: 1.1rem; margin-bottom: 12px; }
.article-card__text { color: var(--muted); font-size: 0.9rem; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand .nav__logo { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.footer__brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.footer__heading {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--trans);
}
.footer ul li a:hover { color: var(--cyan); padding-left: 4px; }
.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.83rem;
}
.footer__bottom a { color: rgba(255,255,255,0.4); transition: var(--trans); }
.footer__bottom a:hover { color: rgba(255,255,255,0.8); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; }
.footer__contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--cyan); }

/* ══════════════════════════════
   CLOUD PAGE
══════════════════════════════ */
.cloud-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 20px; }
.cloud-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
}
.cloud-benefit svg { flex-shrink: 0; color: var(--blue2); margin-top: 2px; }

/* ══════════════════════════════
   ABOUT PAGE
══════════════════════════════ */
.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(13,31,60,0.2);
}
.about-image img { width: 100%; height: 280px; object-fit: cover; }
.promise-card {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 12px;
  padding: 40px;
  color: white;
  text-align: center;
}
.promise-card h3 { color: var(--cyan); margin-bottom: 20px; }
.promise-card p { color: rgba(255,255,255,0.8); margin-bottom: 12px; font-size: 1.05rem; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 72px;
    background: var(--dark);
    padding: 24px;
    overflow-y: auto;
  }
  .nav__dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    margin-top: 4px;
    border-radius: 6px;
    border-top: none;
  }
  .nav__dropdown a { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.1); }
  .nav__cta { display: none; }
  .hero__title { font-size: 2.4rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .form-group--row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px 20px; }
  .article-grid { grid-template-columns: 1fr; }
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.15s; opacity: 0; }
.delay-2 { animation-delay: 0.30s; opacity: 0; }
.delay-3 { animation-delay: 0.45s; opacity: 0; }
.delay-4 { animation-delay: 0.60s; opacity: 0; }
