/* =============================================
   AS TOLD BY DANII — Main Stylesheet
   ============================================= */

:root {
  --blue: #6FB7DD;
  --deep-blue: #0C2E5F;
  --accent: #2F7BFF;
  --light-blue: #D9F3FF;
  --white: #FFFFFF;
  --shadow-color: #1A2C44;
  --dark-bg: #060E1A;
  --dark-surface: #0A1628;
  --dark-card: #0f1e33;
  --text-muted: #8BA8C4;
  --text-light: rgba(255,255,255,0.72);
  --body-color: #333;
  --light-bg: #f7fafd;
  --border-light: #e4eef5;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 18px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--body-color);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

/* ---- TYPOGRAPHY ---- */
.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  color: var(--deep-blue);
}

.section-title em { font-style: italic; color: var(--blue); }

.section-sub {
  font-size: 0.93rem;
  color: #666;
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--deep-blue);
  padding: 0.85rem 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--light-blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(111,183,221,0.3); }

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(111,183,221,0.5);
  color: var(--blue);
  padding: 0.85rem 2rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.btn-outline:hover { border-color: var(--blue); background: rgba(111,183,221,0.08); }

.btn-dark {
  display: inline-block;
  background: var(--deep-blue);
  color: var(--blue);
  padding: 0.75rem 1.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.btn-dark:hover { background: var(--blue); color: var(--deep-blue); }

/* ---- SECTIONS ---- */
.section-light { background: var(--light-bg); padding: 5rem 2rem; }
.section-dark  { background: var(--dark-bg); padding: 5rem 2rem; }
.section-white { background: var(--white); padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 3rem; }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6, 14, 26, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(111,183,221,0.12);
  height: 68px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.nav-logo span { color: var(--white); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-links .nav-cta {
  background: var(--blue);
  color: var(--deep-blue);
  padding: 0.45rem 1.15rem;
  border-radius: 2px;
  font-weight: 500;
}
.nav-links .nav-cta:hover { background: var(--light-blue); color: var(--deep-blue); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
#hero {
  min-height: 100vh;
  background: var(--dark-bg);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 75% 50%, rgba(47,123,255,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 15% 75%, rgba(111,183,221,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(111,183,221,0.25);
  padding: 0.4rem 0.9rem;
  border-radius: 1px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title em { color: var(--blue); font-style: italic; }
.hero-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image-wrap { display: flex; justify-content: center; }
.hero-frame {
  position: relative;
  width: 360px;
  height: 430px;
}
.hero-frame::before {
  content: '';
  position: absolute;
  top: -12px; right: -12px;
  width: 100%; height: 100%;
  border: 1px solid rgba(111,183,221,0.22);
  border-radius: 2px;
  z-index: 0;
}
.hero-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  position: absolute;
  bottom: -18px; left: -20px;
  background: var(--dark-card);
  border: 1px solid rgba(111,183,221,0.18);
  padding: 0.9rem 1.3rem;
  border-radius: 2px;
  z-index: 2;
}
.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--blue);
  display: block;
  line-height: 1;
}
.badge-label {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 3px;
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-strip {
  background: var(--deep-blue);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(111,183,221,0.15);
  border-bottom: 1px solid rgba(111,183,221,0.15);
}
.marquee-track {
  display: inline-block;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0 1.5rem;
}
.marquee-track .dot { color: var(--blue); padding: 0 0.25rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =============================================
   SERVICE CARDS
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 3px;
  padding: 2rem 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 42px rgba(12,46,95,0.09); }
.service-card:hover::after { transform: scaleX(1); }
.service-card.featured {
  border-color: rgba(111,183,221,0.35);
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
}
.service-icon { font-size: 1.6rem; margin-bottom: 1rem; }
.service-phase {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.4rem;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--deep-blue);
  margin-bottom: 0.65rem;
}
.service-card p { font-size: 0.85rem; color: #666; line-height: 1.75; }
.service-list { list-style: none; margin-top: 1rem; }
.service-list li {
  font-size: 0.82rem;
  color: #555;
  padding: 0.28rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.service-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}
.card-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 500;
  transition: gap 0.2s;
}
.card-link:hover { color: var(--deep-blue); }

/* =============================================
   ABOUT PREVIEW
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-stock {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 3px;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 1px solid rgba(111,183,221,0.18);
  border-radius: 3px;
  z-index: -1;
}
.about-text .section-title { color: var(--white); }
.about-body {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--blue);
  border-radius: 2px;
  padding: 2rem;
}
.t-service-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.t-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--deep-blue);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.t-author {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cta-title em { color: var(--blue); font-style: italic; }
.cta-sub { color: var(--text-muted); font-size: 0.9rem; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(111,183,221,0.1);
  padding: 4rem 2rem 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.social-links { display: flex; gap: 0.9rem; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(111,183,221,0.2);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  transition: all 0.2s;
}
.social-links a:hover { border-color: var(--blue); color: var(--blue); }
.footer-links h4 {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links ul li a { font-size: 0.82rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links ul li a:hover { color: var(--blue); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(111,183,221,0.08);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--blue); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--dark-bg);
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(47,123,255,0.1) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-hero h1 em { color: var(--blue); font-style: italic; }
.page-hero p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.service-full-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 3px;
  padding: 2.25rem 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-full-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.35s;
}
.service-full-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(12,46,95,0.09); }
.service-full-card:hover::after { transform: scaleX(1); }
.inquire-note {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  padding: 0.35rem 0.9rem;
  border-radius: 1px;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-full-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.about-full-img {
  width: 100%;
  border-radius: 3px;
  position: sticky;
  top: 90px;
}
.about-full-text .section-title { margin-bottom: 1.5rem; }
.about-full-text p {
  font-size: 0.93rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 1.25rem;
}
.about-stats-row {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.75rem 0;
  margin: 2rem 0;
}
.stat-block span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--blue);
  display: block;
  line-height: 1;
}
.stat-block span:last-child {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.about-values { margin: 2rem 0; }
.about-values h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--deep-blue);
  margin-bottom: 1rem;
}
.values-list { list-style: none; }
.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
}
.values-list li::before {
  content: '✦';
  color: var(--blue);
  font-size: 0.6rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* =============================================
   MERCH PAGE
   ============================================= */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}
.merch-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.3s;
}
.merch-card:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(12,46,95,0.1); }
.merch-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.merch-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.merch-card:hover .merch-img-wrap img { transform: scale(1.04); }
.merch-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,14,26,0.55) 0%, transparent 50%);
}
.merch-info { padding: 1.4rem; }
.merch-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--deep-blue);
  margin-bottom: 0.35rem;
}
.merch-info p { font-size: 0.82rem; color: #777; margin-bottom: 1.1rem; }
.merch-inquire {
  display: block;
  text-align: center;
  background: var(--deep-blue);
  color: var(--blue);
  padding: 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: all 0.22s;
}
.merch-inquire:hover { background: var(--blue); color: var(--deep-blue); }
.merch-note {
  background: rgba(111,183,221,0.08);
  border: 1px solid rgba(111,183,221,0.2);
  border-radius: 3px;
  padding: 1.5rem 2rem;
  margin-top: 3rem;
  font-size: 0.88rem;
  color: var(--deep-blue);
  line-height: 1.75;
}
.merch-note strong { color: var(--deep-blue); font-weight: 500; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-block { margin-top: 2rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: var(--text-light);
  font-size: 0.88rem;
}
.contact-icon {
  width: 38px; height: 38px;
  background: rgba(111,183,221,0.08);
  border: 1px solid rgba(111,183,221,0.18);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-form-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(111,183,221,0.12);
  border-radius: 3px;
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(111,183,221,0.14);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.87rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue); }
.form-group textarea { height: 130px; resize: vertical; }
.form-group select option { background: #0A1628; color: #fff; }
.form-submit {
  width: 100%;
  background: var(--blue);
  color: var(--deep-blue);
  border: none;
  padding: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s;
}
.form-submit:hover { background: var(--light-blue); }

/* =============================================
   LEGAL PAGE
   ============================================= */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--deep-blue);
  margin: 2.5rem 0 0.75rem;
}
.legal-content p, .legal-content li {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 0.75rem;
}
.legal-content ul { list-style: disc; padding-left: 1.5rem; }
.legal-content .legal-tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2rem;
  display: block;
}
.legal-highlight {
  background: #f0f8ff;
  border-left: 3px solid var(--blue);
  padding: 1rem 1.5rem;
  border-radius: 0 2px 2px 0;
  margin: 1.5rem 0;
  font-size: 0.87rem;
  color: var(--deep-blue);
  line-height: 1.75;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image-wrap { display: none; }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-btns { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { max-width: 480px; }
  .about-full-grid { grid-template-columns: 1fr; }
  .about-full-img { position: static; max-width: 400px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(6,14,26,0.98); padding: 1.5rem 2rem; gap: 1.25rem; border-bottom: 1px solid rgba(111,183,221,0.12); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .about-stats-row { gap: 1.5rem; flex-wrap: wrap; }
}
