/* ============================================================
   Rise Visuals LLC — Main Stylesheet
   Colors: Dark #0d0d0d | White #FFFFFF | Cyan #00c8e8
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d0d0d;
  --navy-dark:  #0d0d0d;
  --navy-mid:   #1a1a1a;
  --orange:     #00c8e8;
  --orange-dark:#00a8c4;
  --white:      #FFFFFF;
  --off-white:  #f5f5f5;
  --gray-light: #E8ECF0;
  --gray:       #9AA4B2;
  --gray-dark:  #555555;
  --text:       #0d0d0d;

  --font-head: 'Barlow', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius:  8px;
  --radius-lg: 16px;
  --shadow:  0 4px 20px rgba(13,13,13,.12);
  --shadow-lg: 0 12px 48px rgba(13,13,13,.20);
  --transition: 0.25s ease;

  --max-w: 1200px;
  --section-pad: 96px 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 700;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: var(--gray-dark); }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--navy);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,200,232,.35);
}

.btn-secondary {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-secondary:hover {
  background: rgba(0,200,232,.15);
  border-color: var(--orange);
  transform: translateY(-1px);
}

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

.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ── Layout Helpers ───────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: var(--section-pad); }
.section-dark { background: var(--navy); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p, .section-dark .section-label { color: var(--gray); }
.section-dark .section-label { color: var(--orange); }
.section-alt  { background: var(--off-white); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header p { font-size: 1.08rem; margin-top: 16px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

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

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 60px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  letter-spacing: .03em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 12px; }
.nav-cta .btn { padding: 10px 22px; font-size: .875rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(160deg, rgba(13,13,13,.45) 0%, rgba(13,13,13,.45) 50%, rgba(13,13,13,.45) 100%),
    url('../photos/panoramic.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}


.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,200,232,.15);
  border: 1px solid rgba(0,200,232,.35);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  max-width: 780px;
  margin-bottom: 28px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.9), 0px 0px 25px rgba(0,0,0,0.8);
}

.hero h1 span { color: var(--orange); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,.75);
  max-width: 620px;
  margin-bottom: 44px;
  line-height: 1.7;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.9), 0px 0px 25px rgba(0,0,0,0.8);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-buttons .btn {
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8), 0px 0px 20px rgba(0,0,0,0.6);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 72px;
  padding: 30px 36px;
  background: #0d0d0d;
  border-radius: var(--radius);
  border-top: none;
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: #00c8e8;
  line-height: 1;
}
.hero-stat-label {
  font-size: .85rem;
  color: #ffffff;
  margin-top: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Diagonal bottom cut */
.hero-divider {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  overflow: hidden;
  z-index: 1;
}
.hero-divider svg { display: block; }

/* ── Benefit Cards ────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(0,200,232,.12), rgba(0,200,232,.06));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}
.card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.card p  { font-size: .95rem; line-height: 1.65; }

/* Dark card variant */
.card-dark {
  background: var(--navy-mid);
  border-color: rgba(255,255,255,.08);
}
.card-dark h3, .card-dark h4 { color: var(--white); }
.card-dark p { color: rgba(255,255,255,.6); }
.card-dark .card-icon { background: rgba(0,200,232,.15); }

/* ── Services ─────────────────────────────────────────────── */
.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--gray-light);
  min-height: 560px;
}
.service-item:last-child { border-bottom: none; }
.service-item.reverse { direction: rtl; }
.service-item.reverse > * { direction: ltr; }

.service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-mid), #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.service-image img { width: 100%; height: 100%; object-fit: cover; }

/* Orthomosaic image — fill left side completely */
.service-image-ortho {
  box-shadow: none;
  border-radius: 0;
  background: transparent;
}
.service-image-ortho img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  background: transparent;
}

/* Video player in service slot */
.service-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.service-video-overlay span {
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  padding: 0 24px;
}

/* Video CTA bar */
.video-cta-bar {
  background: var(--white);
  padding: 64px 24px;
  text-align: center;
}
.video-cta-bar h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--black);
  margin: 0;
}

.service-content { }
.service-number {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 8px;
}
.service-content h3 { margin-bottom: 16px; font-size: 1.6rem; }
.service-content p  { margin-bottom: 20px; font-size: 1rem; line-height: 1.7; }

.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.service-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-dark);
  letter-spacing: .03em;
}

/* ── Portfolio ────────────────────────────────────────────── */
.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 100px;
  border: 2px solid var(--gray-light);
  background: var(--white);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-dark);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--navy);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-mid), #1a1a1a);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.portfolio-card:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

.portfolio-card img { width: 100%; height: 100%; object-fit: cover; }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,.92) 0%, rgba(13,13,13,.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.35);
}
.portfolio-card-placeholder span { font-size: 2.5rem; }
.portfolio-card-placeholder p {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

.portfolio-overlay h4 { color: var(--white); margin-bottom: 4px; }
.portfolio-overlay p  { color: rgba(255,255,255,.65); font-size: .85rem; }
.portfolio-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--orange);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ── About ────────────────────────────────────────────────── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-accent-box {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--orange);
  border-radius: var(--radius);
  padding: 28px 32px;
  color: var(--navy);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}
.about-accent-box .num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; line-height: 1; }
.about-accent-box .lbl { font-size: .8rem; font-weight: 600; opacity: .85; margin-top: 4px; letter-spacing: .04em; }

.about-text { }
.about-text h2 { margin-bottom: 20px; }
.about-text p  { margin-bottom: 18px; font-size: 1.02rem; line-height: 1.75; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1px solid var(--gray-light);
}
.value-bullet { width: 8px; height: 8px; border-radius: 50%; background: #00c8e8; flex-shrink: 0; margin-top: 5px; }
.value-item h4 { margin-bottom: 4px; font-size: .95rem; }
.value-item p  { font-size: .875rem; line-height: 1.55; }

/* ── Team ─────────────────────────────────────────────────── */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-4px); }
.team-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy-mid), #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,.25);
}
.team-info { padding: 24px; }
.team-info h4 { margin-bottom: 4px; }
.team-role { color: var(--orange); font-size: .85rem; font-weight: 700; letter-spacing: .04em; margin-bottom: 10px; }
.team-bio  { font-size: .88rem; line-height: 1.6; }

/* ── Contact ──────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { margin-bottom: 32px; font-size: 1.02rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(0,200,232,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); margin-bottom: 2px; }
.contact-detail a, .contact-detail span { font-weight: 600; color: var(--navy); font-size: .97rem; }
.contact-detail a:hover { color: var(--orange); }

/* ── Forms ────────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.form-group label .req { color: var(--orange); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(0,200,232,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group 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='%234A5568' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px; }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; }

.form-note { font-size: .8rem; color: var(--gray); text-align: center; margin-top: 14px; }

/* Quote page specifics */
.quote-header {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 140px 24px 80px;
  text-align: center;
}
.quote-header h1, .quote-header p { color: var(--white); }
.quote-header p { color: rgba(255,255,255,.7); margin-top: 12px; font-size: 1.1rem; }

.quote-form-wrap {
  max-width: 820px;
  margin: -40px auto 0;
  padding: 0 24px 80px;
  position: relative;
  z-index: 2;
}

/* ── Process Steps ────────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.process-step { text-align: center; position: relative; }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 40px);
  right: calc(-50% + 40px);
  height: 2px;
  background: var(--gray-light);
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.process-step h4 { margin-bottom: 8px; font-size: 1rem; }
.process-step p  { font-size: .88rem; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 50%, #1a1a1a 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,200,232,.1) 0%, transparent 70%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); max-width: 600px; margin: 0 auto 16px; }
.cta-banner p  { color: rgba(255,255,255,.65); max-width: 520px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  padding: 72px 24px 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 38px; width: auto; margin-bottom: 18px; }
.footer-brand p {
  color: rgba(255,255,255,.45);
  font-size: .88rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,.45);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .82rem; }
.footer-bottom a { color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--orange); }

.footer-domain {
  color: var(--orange) !important;
  font-weight: 600;
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 140px 24px 80px;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,.65); max-width: 560px; margin: 16px auto 0; font-size: 1.1rem; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
}

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

  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy-dark);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    align-items: flex-start;
  }
  .nav-links.open a::after { display: none; }
  .nav-links.open a { padding: 12px 0; font-size: 1rem; width: 100%; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-cta.open { display: block; padding: 16px 24px; background: var(--navy-dark); width: 100%; position: fixed; top: calc(72px + 5 * 53px); left: 0; right: 0; }
  .nav-toggle { display: flex; }

  .cards-grid, .grid-3, .portfolio-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 1fr; gap: 32px; }
  .service-item.reverse { direction: ltr; }
  .about-intro { grid-template-columns: 1fr; }
  .about-accent-box { position: static; margin-top: 16px; display: inline-block; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-stats { gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
}

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.fw-700 { font-weight: 700; }

/* Divider accent */
.divider-line {
  width: 48px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 20px auto 0;
}
.divider-line.left { margin-left: 0; }

/* Icon SVG inline helpers */
.icon { width: 1.25em; height: 1.25em; vertical-align: middle; flex-shrink: 0; }
