@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* ===== TOKENS ===== */
:root {
  --navy: #042C53;
  --navy-deep: #021d37;
  --navy-mid: #063660;
  --electric-blue: #185FA5;
  --electric-blue-hover: #1a6bb8;
  --light-blue: #85B7EB;
  --white: #ffffff;
  --off-white: #f5f8fc;
  --text-dark: #0d1b2a;
  --text-muted: #4a6080;
  --border: rgba(4, 44, 83, 0.1);
  --border-light: rgba(255, 255, 255, 0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-pill: 100px;
  --nav-height: 72px;
  --max-width: 1200px;
  --section-pad: 96px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { list-style: none; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--navy);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 24px rgba(2, 29, 55, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  transform: scale(1.42);
  transform-origin: center;
}

.nav-logo span {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--light-blue);
}

.nav-links .nav-cta {
  background: var(--electric-blue);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease !important;
}

.nav-links .nav-cta:hover {
  background: var(--electric-blue-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(24, 95, 165, 0.4);
}

.nav-links .nav-cta:active {
  transform: translateY(0);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--navy-deep);
  padding: 16px 24px 28px;
  border-top: 1px solid var(--border-light);
  z-index: 99;
}

.nav-mobile.open { display: block; }

.nav-mobile ul {
  display: flex;
  flex-direction: column;
}

.nav-mobile a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s ease;
}

.nav-mobile a:last-child { border-bottom: none; }

.nav-mobile a:hover { color: var(--light-blue); }

.nav-mobile .nav-cta-mobile {
  display: inline-block;
  margin-top: 20px;
  background: var(--electric-blue);
  color: var(--white) !important;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  border-bottom: none !important;
  transition: background 0.2s ease !important;
}

.nav-mobile .nav-cta-mobile:hover {
  background: var(--electric-blue-hover) !important;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--electric-blue);
  color: var(--white);
  text-decoration: none;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--electric-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 95, 165, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.02em;
  border: 2px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-outline:active { transform: translateY(0); }

.btn-outline-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--electric-blue);
  text-decoration: none;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.02em;
  border: 2px solid var(--electric-blue);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn-outline-blue:hover {
  background: var(--electric-blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== HERO - HOME ===== */
.hero {
  min-height: 100dvh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 90% at 75% 50%, rgba(24, 95, 165, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 24px 210px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 640px;
}

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

.hero-actions {
  justify-content: center;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--light-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-headline {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

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

.hero-subtext {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 40px;
}

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

/* Hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-logo-scene {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(133, 183, 235, 0.12);
}

.hero-ring-1 {
  width: 340px;
  height: 340px;
}

.hero-ring-2 {
  width: 280px;
  height: 280px;
  border-color: rgba(133, 183, 235, 0.18);
}

.hero-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(133, 183, 235, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-logo-img {
  width: 200px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 32px rgba(133, 183, 235, 0.25));
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-height) + 56px) 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 20% 50%, rgba(24, 95, 165, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

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

.page-hero h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.68);
  max-width: 520px;
  line-height: 1.65;
}

/* ===== SECTION BASE ===== */
.section {
  padding: var(--section-pad) 0;
}

.section-white { background: var(--white); }
.section-off-white { background: var(--off-white); }
.section-navy { background: var(--navy); }
.section-dark { background: var(--navy-deep); }

.section-header {
  margin-bottom: 52px;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-title.on-dark { color: var(--white); }

.section-body {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

.section-body.on-dark { color: rgba(255, 255, 255, 0.68); }

/* ===== HOME: SERVICE CATEGORIES ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.category-card:hover {
  border-color: rgba(24, 95, 165, 0.35);
  box-shadow: 0 8px 32px rgba(24, 95, 165, 0.1);
  transform: translateY(-3px);
}

.category-icon {
  width: 46px;
  height: 46px;
  background: rgba(24, 95, 165, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-blue);
  font-size: 22px;
  margin-bottom: 18px;
}

.category-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.category-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.category-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--electric-blue);
  background: rgba(24, 95, 165, 0.07);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(24, 95, 165, 0.12);
}

/* ===== HOME: WHY NOVA ===== */
.why-nova-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.why-item {
  border-left: 3px solid var(--electric-blue);
  padding-left: 24px;
}

.why-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.why-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--navy);
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(24, 95, 165, 0.28) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-inner h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.022em;
  margin-bottom: 14px;
  line-height: 1.2;
}

.cta-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 36px;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SERVICES PAGE ===== */
.services-block {
  padding: 64px 0;
  border-bottom: 1px solid rgba(4, 44, 83, 0.07);
}

.services-block:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.services-block-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}

.services-label {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.services-label-icon {
  width: 52px;
  height: 52px;
  background: rgba(24, 95, 165, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-blue);
  font-size: 26px;
  margin-bottom: 18px;
}

.services-label h2 {
  font-size: 21px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.services-label p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.services-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-item:hover {
  border-color: rgba(133, 183, 235, 0.5);
  box-shadow: 0 4px 16px rgba(24, 95, 165, 0.07);
  transform: translateY(-2px);
}

.service-item i {
  color: var(--electric-blue);
  font-size: 18px;
  margin-top: 1px;
  flex-shrink: 0;
}

.service-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

/* Pricing note */
.pricing-note {
  background: rgba(24, 95, 165, 0.05);
  border: 1px solid rgba(24, 95, 165, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
}

.pricing-note i {
  color: var(--electric-blue);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-note p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.65;
}

.pricing-note strong {
  font-weight: 700;
  color: var(--navy);
}

/* ===== ABOUT PAGE ===== */
/* First section needs to clear the fixed nav when there's no page hero */
.section-first {
  padding-top: calc(var(--nav-height) + 64px);
}

/* Founder photo card */
.about-photo {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 20px 50px rgba(4, 44, 83, 0.18);
  aspect-ratio: 4 / 5;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.about-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: linear-gradient(to top, rgba(2, 13, 28, 0.88) 0%, rgba(2, 13, 28, 0) 100%);
}

.about-photo-name {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.about-photo-role {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.022em;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-story-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-story-text p:last-child { margin-bottom: 0; }

.about-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(24, 95, 165, 0.25) 0%, transparent 60%);
}

.about-visual img {
  width: 120px;
  height: auto;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 24px rgba(133, 183, 235, 0.25));
}

.about-visual h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.about-visual p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-item {
  border-left: 3px solid var(--electric-blue);
  padding-left: 22px;
}

.value-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.value-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Area strip */
.area-strip {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.area-strip-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.area-strip-text p {
  font-size: 14px;
  color: var(--text-muted);
}

.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(24, 95, 165, 0.08);
  border: 1px solid rgba(24, 95, 165, 0.18);
  color: var(--electric-blue);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.022em;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.contact-info > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(24, 95, 165, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-blue);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-body label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item-body a,
.contact-item-body span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item-body a:hover { color: var(--electric-blue); }

.contact-item-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
  font-weight: 400;
}

/* Booking panel */
.booking-panel {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

.booking-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(24, 95, 165, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.booking-panel-inner {
  position: relative;
  z-index: 1;
}

.booking-panel h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.booking-panel > .booking-panel-inner > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 28px;
}

.booking-panel .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--radius);
}

.booking-features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.booking-feature i {
  color: var(--light-blue);
  font-size: 15px;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  padding: 64px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 32px;
}

.footer-brand img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  transform: scale(1.4);
  transform-origin: left center;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 22px;
}

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

.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 17px;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: var(--electric-blue);
  color: var(--white);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--light-blue); }

.footer-col span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .about-story-grid {
    gap: 48px;
  }

  .why-nova-grid {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner {
    gap: 40px;
    padding: 48px 24px 130px;
    text-align: center;
  }

  .hero-visual { order: -1; }

  .hero-logo-scene {
    width: 240px;
    height: 240px;
  }

  .hero-logo-img { width: 130px; }

  .hero-ring-1 { width: 220px; height: 220px; }
  .hero-ring-2 { width: 180px; height: 180px; }
  .hero-glow { width: 180px; height: 180px; }

  .hero-subtext {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions { justify-content: center; }

  .categories-grid { grid-template-columns: 1fr; }
  .why-nova-grid { grid-template-columns: 1fr; gap: 28px; }

  .services-block-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .services-label { position: static; }
  .services-items-grid { grid-template-columns: 1fr; }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-grid { grid-template-columns: 1fr; gap: 24px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .area-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

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

  .booking-panel { padding: 32px 24px; }
}

/* ===== HERO DEVICE MARQUEE ===== */
.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 28px 0;
  overflow: hidden;
  /* fade the row out at both edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.hero-marquee-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: hero-marquee-scroll 60s linear infinite;
}

.hero-marquee-track img {
  height: 100px;
  width: auto;
  flex: none;
  opacity: 0.85;
}

/* Xbox (device7) reads small in a row; give it a touch more presence */
.hero-marquee-track img[src*="device7"] { height: 128px; }

@keyframes hero-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Reduced-motion: keep it moving but very slow rather than frozen */
@media (prefers-reduced-motion: reduce) {
  .hero-marquee-track { animation-duration: 150s; }
}

@media (max-width: 768px) {
  .hero-logo-space { display: none; }
  .hero-marquee { padding: 18px 0; }
  .hero-marquee-track { gap: 52px; }
  .hero-marquee-track img { height: 64px; }
  .hero-marquee-track img[src*="device7"] { height: 82px; }
}

/* ===== BRAND BAND ===== */
.brand-band {
  padding: 72px 0;
  text-align: center;
}

.brand-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.brand-band-logo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  transform: scale(1.3);
}

.brand-band-tagline {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-band-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.6;
}

/* ===== 3D ROTATING PHONE ===== */
.phone-scene {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  perspective-origin: 50% 42%;
}

.phone-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 56px;
  padding-top: 16px;
}

.phone-3d {
  /* W=200, H=400, D=18 */
  width: 200px;
  height: 400px;
  position: relative;
  transform-style: preserve-3d;
  animation: phone-spin 8s linear infinite;
}

/* Honor reduced-motion by slowing the spin rather than freezing it */
@media (prefers-reduced-motion: reduce) {
  .phone-3d {
    animation-duration: 24s;
  }
}

@keyframes phone-spin {
  from { transform: rotateX(8deg) rotateY(0deg); }
  to   { transform: rotateX(8deg) rotateY(360deg); }
}

.phone-face {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Front face — 200x400 at z=+9 */
.phone-front {
  width: 200px;
  height: 400px;
  background: #08111e;
  border-radius: 30px;
  border: 1.5px solid rgba(133, 183, 235, 0.45);
  transform: translateZ(9px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 28%, rgba(24, 95, 165, 0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

.phone-notch {
  width: 62px;
  height: 12px;
  background: #030810;
  border-radius: 0 0 9px 9px;
  margin-top: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.phone-status-bar {
  width: 100%;
  padding: 6px 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.phone-status-left,
.phone-status-right {
  display: flex;
  gap: 3px;
  align-items: center;
}

.phone-status-dot {
  width: 3px;
  height: 3px;
  background: rgba(133, 183, 235, 0.4);
  border-radius: 50%;
}

.phone-status-battery {
  width: 14px;
  height: 7px;
  border: 1px solid rgba(133, 183, 235, 0.35);
  border-radius: 2px;
  position: relative;
}

.phone-status-battery::after {
  content: '';
  position: absolute;
  left: 2px;
  top: 1px;
  bottom: 1px;
  width: 60%;
  background: rgba(133, 183, 235, 0.45);
  border-radius: 1px;
}

.phone-screen-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}

.phone-screen-logo-img {
  width: 80px;
  height: 80px;
  opacity: 0.9;
}

.phone-screen-name {
  font-family: 'Noto Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(133, 183, 235, 0.6);
  text-transform: uppercase;
  text-align: center;
}

.phone-home-bar {
  width: 56px;
  height: 5px;
  background: rgba(133, 183, 235, 0.22);
  border-radius: 3px;
  margin-bottom: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* Back face — rotated 180 around Y, at z=+9 in local (z=-9 world) */
.phone-back {
  width: 200px;
  height: 400px;
  background: linear-gradient(155deg, #042C53 0%, #021d37 55%, #031629 100%);
  border-radius: 30px;
  border: 1.5px solid rgba(4, 44, 83, 0.9);
  transform: rotateY(180deg) translateZ(9px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-back-cam {
  position: absolute;
  top: 32px;
  left: 28px;
  width: 46px;
  height: 46px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-back-cam::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle, #0b1e38, #040c18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.phone-back-logo-img {
  width: 90px;
  height: 90px;
  opacity: 0.18;
}

/* Right face — 18x400, rotateY(90) translateZ(100) */
.phone-right {
  width: 18px;
  height: 400px;
  background: linear-gradient(to right, #071525, #0d1e38);
  left: 91px; /* (200-18)/2 */
  transform: rotateY(90deg) translateZ(100px); /* W/2 = 100 */
}

/* Left face — 18x400, rotateY(-90) translateZ(100) */
.phone-left {
  width: 18px;
  height: 400px;
  background: linear-gradient(to left, #071525, #0d1e38);
  left: 91px;
  transform: rotateY(-90deg) translateZ(100px);
}

/* Top face — 200x18, rotateX(90) translateZ(200) */
.phone-top {
  width: 200px;
  height: 18px;
  background: #0b1a2d;
  left: 0;
  top: 191px; /* (400-18)/2 */
  transform: rotateX(90deg) translateZ(200px); /* H/2 = 200 */
}

/* Bottom face — 200x18, rotateX(-90) translateZ(200) */
.phone-bottom {
  width: 200px;
  height: 18px;
  background: #0b1a2d;
  left: 0;
  top: 191px;
  transform: rotateX(-90deg) translateZ(200px);
}

/* Ground shadow */
.phone-ground-shadow {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 22px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
  border-radius: 50%;
}

/* Mobile: scale down phone via scene perspective */
@media (max-width: 768px) {
  .phone-scene {
    transform: scale(0.76);
    transform-origin: center center;
  }
}
