/* ============================================================
   NOVABUILD — STYLES.CSS
   Premium Web Design & Digital Consulting
   ============================================================ */

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

/* ========================
   CSS CUSTOM PROPERTIES
   ======================== */
:root {
  color-scheme: light dark;

  --white:       #FFFFFF;
  --navy:        #1A2F5E;
  --navy-800:    #243E72;
  --navy-700:    #2D4D87;
  --gold:        #6AAED6;
  --gold-hover:  #5899C3;
  --gold-light:  rgba(106, 174, 214, 0.12);
  --gold-glow:   rgba(106, 174, 214, 0.28);

  --gray-50:  #F9FAFB;
  --gray-100: #F2F4F7;
  --gray-200: #E4E7EC;
  --gray-400: #98A2B3;
  --gray-500: #667085;
  --gray-700: #344054;
  --gray-900: #101828;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h: 72px;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.05), 0 10px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.07), 0 30px 60px rgba(0,0,0,0.05);
  --shadow-blue: 0 4px 24px rgba(106,174,214,0.35);

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --trans:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow: 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--navy);
  color: var(--white);
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: var(--font); cursor: pointer; }

/* ========================
   TYPOGRAPHY
   ======================== */

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

h1, .h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy);
}

h2, .h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h3, .h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--gray-500);
  font-weight: 400;
}

.body-md {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--gray-500);
}

/* ========================
   LAYOUT
   ======================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section       { padding: 104px 0; }
.section-sm    { padding: 64px 0; }

.text-center  { text-align: center; }
.text-gold    { color: var(--gold); }

.mb-1  { margin-bottom: 4px; }
.mb-2  { margin-bottom: 8px; }
.mb-3  { margin-bottom: 12px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }

.section-header {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================
   NAVIGATION
   ======================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--trans), box-shadow var(--trans);
}

.nav.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--trans);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--trans);
}

.nav-links a:hover       { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active      { color: var(--navy); font-weight: 600; }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  border-radius: var(--r-sm);
  transition: background var(--trans);
}

.hamburger:hover { background: var(--gray-100); }

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--trans);
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 28px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-md);
}

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

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--trans);
}

.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

.mobile-menu-cta {
  margin-top: 20px;
}

/* ========================
   BUTTONS
   ======================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans);
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-blue);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost-gold {
  background: transparent;
  color: var(--gold);
  border-color: rgba(106,174,214,0.40);
}
.btn-ghost-gold:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-lg { padding: 16px 40px; font-size: 0.95rem; }
.btn-sm { padding: 9px 20px; font-size: 0.8rem; }

/* ========================
   HERO — HOME
   ======================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% 105%, rgba(106,174,214,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 75% 10%,  rgba(10,22,40,0.035) 0%, transparent 65%);
  animation: heroPulse 10s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.65; }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.4;
  animation: scrollBounce 2.2s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

.hero-scroll-hint svg { color: var(--navy); }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.hero-content {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 28px 100px;
  position: relative;
  z-index: 1;
}

.hero-content .eyebrow { margin-bottom: 28px; }

.hero-content h1 {
  margin-bottom: 28px;
}

.hero-em {
  font-style: italic;
  background: linear-gradient(125deg, var(--gold) 0%, #A8D4EE 60%, var(--gold-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .body-lg {
  max-width: 600px;
  margin: 0 auto 44px;
}

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

/* ========================
   VALUE PROPS ROW
   ======================== */

.value-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
}

.value-item {
  padding: 52px 36px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
  transition: background var(--trans);
  position: relative;
}

.value-item:last-child { border-right: none; }
.value-item:hover { background: var(--gray-50); }

.value-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--r-md);
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--gold);
  transition: background var(--trans), transform var(--trans);
}

.value-item:hover .value-icon {
  background: var(--gold-glow);
  transform: scale(1.05);
}

.value-item h3 { margin-bottom: 10px; }

/* ========================
   INDUSTRY TAGS
   ======================== */

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.industry-tag {
  padding: 10px 22px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--white);
  transition: all var(--trans);
  cursor: default;
}

.industry-tag:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: var(--gold-light);
}

/* ========================
   PROJECT CARDS
   ======================== */

.project-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--trans), transform var(--trans);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.project-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-700) 55%, #0d2040 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(106,174,214,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.project-image-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.project-body {
  padding: 36px 40px 40px;
}

.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.tag {
  padding: 5px 13px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--gold-light);
  color: var(--gold-hover);
  border: 1px solid rgba(106,174,214,0.20);
}

.project-body h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.project-body .body-md { margin-bottom: 28px; }

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  transition: gap var(--trans), color var(--trans);
}

.project-link:hover {
  gap: 10px;
  color: var(--gold-hover);
}

/* Work page — full project */
.project-card-full .project-image { height: 420px; }

/* ========================
   CTA BANNER
   ======================== */

.cta-banner {
  background: var(--navy);
  padding: 88px 48px;
  text-align: center;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%; left: -15%;
  width: 55%;  height: 200%;
  background: radial-gradient(ellipse, rgba(106,174,214,0.13) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -10%;
  width: 50%;  height: 180%;
  background: radial-gradient(ellipse, rgba(106,174,214,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner .eyebrow   { color: rgba(106,174,214,0.90); margin-bottom: 16px; }
.cta-banner h2         { color: var(--white); margin-bottom: 18px; }
.cta-banner .body-lg   {
  color: rgba(255,255,255,0.58);
  margin-bottom: 40px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================
   PAGE HERO (inner pages)
   ======================== */

.page-hero {
  padding: calc(var(--nav-h) + 88px) 28px 88px;
  text-align: center;
  background: var(--white);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 110%, rgba(106,174,214,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero > * { position: relative; z-index: 1; }

.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1       { margin-bottom: 22px; max-width: 720px; margin-left: auto; margin-right: auto; }
.page-hero .body-lg { max-width: 560px; margin: 0 auto; }

/* ========================
   ABOUT PAGE
   ======================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 88px;
  align-items: start;
}

.about-photo-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.about-photo-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

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

.about-photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-400);
}

.about-photo-placeholder svg { opacity: 0.4; }

.about-photo-placeholder span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-accent-line {
  position: absolute;
  inset: -10px;
  border: 1.5px solid rgba(106,174,214,0.30);
  border-radius: calc(var(--r-xl) + 10px);
  pointer-events: none;
}

.about-content .eyebrow { margin-bottom: 14px; }
.about-content h1       { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 28px; }
.about-content p        { margin-bottom: 20px; }
.about-content p:last-of-type { margin-bottom: 0; }

/* ========================
   VALUE CARDS
   ======================== */

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  background: var(--white);
  transition: all var(--trans);
}

.value-card:hover {
  border-color: rgba(106,174,214,0.45);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.value-card-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
  transition: background var(--trans), transform var(--trans);
}

.value-card:hover .value-card-icon {
  background: var(--gold-glow);
  transform: scale(1.06);
}

.value-card h3 { margin-bottom: 10px; }

/* ========================
   WHAT DRIVES ME
   ======================== */

.drives-block {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
}

.drives-block::before {
  content: '"';
  position: absolute;
  top: -20px; left: 32px;
  font-size: 12rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  pointer-events: none;
  font-style: italic;
}

.drives-block .eyebrow { margin-bottom: 16px; }
.drives-block p        { font-size: 1.15rem; line-height: 1.7; color: var(--gray-700); }

/* ========================
   SERVICES LIST
   ======================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 22px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  background: var(--white);
  transition: all var(--trans);
}

.service-item:hover {
  border-color: rgba(106,174,214,0.40);
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.service-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background var(--trans);
}

.service-item:hover .service-icon { background: var(--gold-glow); }

.service-text h3  { font-size: 0.95rem; margin-bottom: 4px; }
.service-text p   { font-size: 0.825rem; line-height: 1.5; color: var(--gray-500); }

/* ========================
   PRICING
   ======================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 44px 36px;
  background: var(--white);
  transition: all var(--trans);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover:not(.featured) {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pricing-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(10,22,40,0.25);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: var(--r-full);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--shadow-blue);
}

.pricing-tier {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.pricing-card.featured .pricing-tier { color: rgba(106,174,214,0.80); }

.pricing-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.pricing-card.featured .pricing-name { color: var(--white); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.pricing-price .amount {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-card.featured .pricing-price .amount { color: var(--white); }

.pricing-price .currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-price .currency { color: rgba(255,255,255,0.5); }

.pricing-price .period {
  font-size: 0.875rem;
  color: var(--gray-400);
  font-weight: 400;
}

.pricing-card.featured .pricing-price .period { color: rgba(255,255,255,0.45); }

.pricing-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
  line-height: 1.55;
}

.pricing-card.featured .pricing-desc {
  color: rgba(255,255,255,0.55);
  border-bottom-color: rgba(255,255,255,0.12);
}

.pricing-delivery {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-hover);
  margin-bottom: 24px;
  background: var(--gold-light);
  padding: 6px 12px;
  border-radius: var(--r-full);
}

.pricing-card.featured .pricing-delivery {
  background: rgba(106,174,214,0.18);
  color: var(--gold);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.45;
}

.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.82); }

.feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-hover);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card.featured .feature-check {
  background: rgba(106,174,214,0.20);
  color: var(--gold);
}

.pricing-card .btn { width: 100%; }

/* Consult prompt */
.consult-prompt {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 64px;
  text-align: center;
}

.consult-prompt h3 { font-size: 1.6rem; margin-bottom: 12px; }
.consult-prompt .body-md { margin-bottom: 32px; }

/* ========================
   FORMS
   ======================== */

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 56px 60px;
  box-shadow: var(--shadow-md);
}

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

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

label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: 0.925rem;
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(106,174,214,0.16);
}

input::placeholder,
textarea::placeholder {
  color: var(--gray-400);
  font-weight: 400;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2398A2B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
  cursor: pointer;
}

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

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--gray-300);
  padding: 0;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--navy);
}

.form-submit-wrap {
  margin-top: 32px;
}

.form-submit-wrap .btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 72px 48px;
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin: 0 auto;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.form-success-icon svg {
  color: var(--gold);
}

.form-success-headline {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.form-success-sub {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 400px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ========================
   CONTACT INFO BLOCKS
   ======================== */

.contact-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.contact-block {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  background: var(--white);
  transition: all var(--trans);
  min-width: 220px;
}

.contact-block:hover {
  border-color: rgba(106,174,214,0.45);
  background: var(--gold-light);
  box-shadow: var(--shadow-sm);
}

.contact-block-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background var(--trans);
}

.contact-block:hover .contact-block-icon { background: var(--gold-glow); }

.contact-block-text span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 3px;
}

.contact-block-text a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--trans);
}

.contact-block-text a:hover { color: var(--gold-hover); }

/* Simple contact form (contact page) */
.contact-form-wrap {
  max-width: 580px;
  margin: 0 auto;
}

.response-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.825rem;
  color: var(--gray-400);
}

/* Coming soon */
.coming-soon {
  text-align: center;
  padding: 64px 28px;
  border: 1px dashed var(--gray-200);
  border-radius: var(--r-xl);
}

.coming-soon-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 20px;
}

.coming-soon h3 { margin-bottom: 10px; }

/* ========================
   FOOTER
   ======================== */

.footer {
  background: var(--navy);
  padding: 80px 0 36px;
  color: rgba(255,255,255,0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--white);
  display: inline-block;
  margin-bottom: 12px;
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.42);
  margin-bottom: 28px;
  line-height: 1.55;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.55);
}

.footer-contact-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  transition: color var(--trans);
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  transition: color var(--trans);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
}

/* ========================
   ANIMATIONS
   ======================== */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.72s var(--ease);
}

.fade-in.visible { opacity: 1; }

.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }
.delay-5 { transition-delay: 0.50s; }

/* ========================
   RESPONSIVE
   ======================== */

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .about-photo-wrap {
    position: static;
    max-width: 380px;
    margin: 0 auto;
  }

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

  .footer-brand { grid-column: 1 / -1; }

  .drives-block {
    padding: 44px 48px;
  }

  .form-wrapper {
    padding: 44px 40px;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-logo img { height: 46px; }

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

  .section    { padding: 72px 0; }
  .section-sm { padding: 48px 0; }

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

  .value-item {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    padding: 36px 28px;
  }

  .value-item:last-child { border-bottom: none; }

  .value-cards { grid-template-columns: 1fr; }

  .cta-banner { padding: 60px 32px; }

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

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

  .footer-brand { grid-column: auto; }

  .consult-prompt { padding: 44px 28px; }

  .drives-block {
    padding: 36px 32px;
  }

  .drives-block::before { display: none; }

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

  .contact-blocks { flex-direction: column; align-items: stretch; }

  .form-wrapper {
    padding: 36px 28px;
    border-radius: var(--r-lg);
  }

  .project-body { padding: 28px; }
}

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

  .hero-content { padding: 48px 20px 80px; }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta .btn { width: 100%; }

  .page-hero { padding: calc(var(--nav-h) + 60px) 20px 60px; }

  .cta-banner { padding: 48px 24px; border-radius: var(--r-lg); }

  .pricing-card { padding: 36px 24px; }

  .about-content h1 { font-size: 2rem; }
}

/* ========================
   DARK MODE
   ======================== */

@media (prefers-color-scheme: dark) {

  /* ── Override core palette ── */
  :root {
    --white:    #0f1117;
    --gray-50:  #141820;
    --gray-100: #1a2030;
    --gray-200: #252d3d;
    --gray-400: #8892a4;
    --gray-500: #9aa5b8;
    --gray-700: #c8d0e0;
    --gray-900: #e8edf5;
    --navy:     #d4daf0;

    --shadow-xs: 0 1px 2px rgba(0,0,0,0.30);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.35), 0 1px 2px rgba(0,0,0,0.25);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.25), 0 10px 24px rgba(0,0,0,0.30);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.30), 0 30px 60px rgba(0,0,0,0.25);
  }

  /* ── Body & selection ── */
  body {
    background: #0f1117;
    color: var(--gray-700);
  }

  ::selection {
    background: var(--gold);
    color: #0f1117;
  }

  /* ── Logo swap ── */
  .nav-logo img { content: url('../images/logo-dark.svg'); }

  /* ── Navigation ── */
  .nav {
    background: rgba(15, 17, 23, 0.88);
    border-bottom-color: var(--gray-200);
  }

  .nav.scrolled {
    border-bottom-color: var(--gray-200);
  }

  .hamburger span { background: var(--gray-700); }

  /* ── Mobile menu ── */
  .mobile-menu {
    background: #141820;
    border-bottom-color: var(--gray-200);
  }

  .mobile-menu a {
    color: var(--gray-700);
    border-bottom-color: var(--gray-200);
  }

  /* ── Buttons ── */
  .btn-primary {
    background: var(--gray-700);
    color: #0f1117;
    border-color: var(--gray-700);
  }
  .btn-primary:hover {
    background: #e8edf5;
    border-color: #e8edf5;
  }

  .btn-outline {
    color: var(--gray-700);
    border-color: var(--gray-200);
  }
  .btn-outline:hover {
    background: var(--gray-700);
    color: #0f1117;
    border-color: var(--gray-700);
  }

  /* ── Sections with gray bg ── */
  section[style*="background:var(--gray-50)"] {
    background: var(--gray-50) !important;
    border-top-color: var(--gray-200) !important;
    border-bottom-color: var(--gray-200) !important;
  }

  /* ── Value props row ── */
  .value-row {
    background: #141820;
    border-color: var(--gray-200);
  }
  .value-item { border-right-color: var(--gray-200); }
  .value-item:hover { background: #1a2030; }

  /* ── Industry tags ── */
  .industry-tag {
    background: #141820;
    border-color: var(--gray-200);
    color: var(--gray-700);
  }

  /* ── CTA Banner (keeps dark navy feel, just shifted) ── */
  .cta-banner { background: #141e35; }

  /* ── Page hero (inner pages) ── */
  .page-hero { background: #0f1117; }

  /* ── About ── */
  .about-photo-frame {
    background: linear-gradient(145deg, #1a2030 0%, #252d3d 100%);
  }

  .drives-block {
    background: #141820;
    border-color: var(--gray-200);
  }
  .drives-block p { color: var(--gray-700); }

  /* ── Value cards ── */
  .value-card {
    background: #141820;
    border-color: var(--gray-200);
  }
  .value-card:hover { border-color: rgba(106,174,214,0.35); }

  /* ── Services ── */
  .service-item {
    background: #141820;
    border-color: var(--gray-200);
  }

  /* ── Project cards ── */
  .project-card {
    background: #141820;
    border-color: var(--gray-200);
  }

  /* ── Pricing ── */
  .pricing-card:not(.featured) {
    background: #141820;
    border-color: var(--gray-200);
  }
  .pricing-card.featured {
    background: #141e35;
    border-color: #1e2d50;
  }
  .pricing-desc { border-bottom-color: var(--gray-200); }

  .consult-prompt {
    background: #141820;
    border-color: var(--gray-200);
  }

  /* ── Forms ── */
  .form-wrapper {
    background: #141820;
    border-color: var(--gray-200);
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    background: #0f1117;
    color: var(--gray-700);
    border-color: var(--gray-200);
  }

  input::placeholder,
  textarea::placeholder { color: var(--gray-400); }

  label { color: var(--gray-700); }

  .checkbox-label { color: var(--gray-700); }
  .checkbox-label input[type="checkbox"] { accent-color: var(--gold); }

  .form-success {
    background: #141820;
    border-color: var(--gray-200);
  }

  /* ── Contact blocks ── */
  .contact-block {
    background: #141820;
    border-color: var(--gray-200);
  }

  /* ── Footer (already dark — just slightly deeper) ── */
  .footer { background: #080c14; }

  /* ── Coming soon ── */
  .coming-soon { border-color: var(--gray-200); }

  /* ── Mobile responsive border overrides ── */
  .value-item { border-bottom-color: var(--gray-200); }
}
