/* ============================================
   NCS Brand Design System
   Aligned with Nxfusion Consulting Services logo
   ============================================ */

:root {
  /* Logo palette */
  --ncs-blue: #00ADEF;
  --ncs-blue-dark: #0072BC;
  --ncs-magenta: #9E2A8D;
  --ncs-magenta-light: #C0399A;
  --ncs-navy: #1B365D;
  --ncs-navy-deep: #0D47A1;
  --ncs-teal: #00A99D;
  --ncs-gray: #2D3748;
  --ncs-gray-light: #718096;
  --ncs-gray-muted: #A0AEC0;
  --ncs-white: #FFFFFF;
  --ncs-off-white: #F7FAFC;
  --ncs-border: #E2E8F0;

  /* Gradients from logo */
  --gradient-brand: linear-gradient(135deg, var(--ncs-navy-deep) 0%, var(--ncs-navy) 40%, var(--ncs-magenta) 100%);
  --gradient-accent: linear-gradient(135deg, var(--ncs-blue) 0%, var(--ncs-teal) 100%);
  --gradient-rocket: linear-gradient(135deg, var(--ncs-magenta) 0%, var(--ncs-magenta-light) 100%);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: 5rem;
  --container: 1200px;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(27, 54, 93, 0.08);
  --shadow-md: 0 4px 20px rgba(27, 54, 93, 0.12);
  --shadow-lg: 0 10px 40px rgba(27, 54, 93, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  color: var(--ncs-gray);
  background: var(--ncs-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography helpers */
.text-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-brand);
  color: var(--ncs-white);
  box-shadow: 0 4px 15px rgba(158, 42, 141, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(158, 42, 141, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--ncs-navy);
  border-color: var(--ncs-navy);
}

.btn--outline:hover {
  background: var(--ncs-navy);
  color: var(--ncs-white);
}

.btn--white {
  background: var(--ncs-white);
  color: var(--ncs-navy);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--ncs-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  border-color: var(--ncs-white);
  background: rgba(255, 255, 255, 0.1);
}

.btn--full {
  width: 100%;
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--ncs-border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo-img {
  height: 48px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ncs-gray);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--ncs-navy);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link--cta {
  background: var(--gradient-brand);
  color: var(--ncs-white) !important;
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(158, 42, 141, 0.3);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ncs-navy);
  transition: all var(--transition);
}

.nav__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  z-index: -2;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 173, 239, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 169, 157, 0.12) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--ncs-white), transparent);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 4rem 1.5rem;
}

.hero__badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--ncs-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--ncs-blue) 0%, var(--ncs-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__actions .btn--outline {
  color: var(--ncs-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero__actions .btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--ncs-white);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem 0.875rem;
  background: rgba(27, 54, 93, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: var(--ncs-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(13, 71, 161, 0.25);
}

.hero__scroll-line {
  width: 2px;
  height: 28px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--ncs-blue), rgba(0, 173, 239, 0.2));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   Partners
   ============================================ */
.partners {
  padding: 3rem 0;
  background: var(--ncs-off-white);
  border-bottom: 1px solid var(--ncs-border);
}

.partners__label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ncs-gray-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.partners__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}

.partner__item {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ncs-gray-light);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all var(--transition);
}

.partner__item:hover {
  color: var(--ncs-navy);
  background: var(--ncs-white);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   Sections (shared)
   ============================================ */
.section {
  padding: var(--section-pad) 0;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section__header--light .section__title,
.section__header--light .section__desc {
  color: var(--ncs-white);
}

.section__header--light .section__label {
  color: var(--ncs-blue);
}

.section__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ncs-magenta);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--ncs-navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__desc {
  font-size: 1.0625rem;
  color: var(--ncs-gray-light);
  line-height: 1.7;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Services
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--ncs-white);
  border: 1px solid var(--ncs-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-card__icon--blue { background: rgba(0, 173, 239, 0.12); }
.service-card__icon--magenta { background: rgba(158, 42, 141, 0.12); }
.service-card__icon--teal { background: rgba(0, 169, 157, 0.12); }
.service-card__icon--navy { background: rgba(27, 54, 93, 0.12); }

.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ncs-navy);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--ncs-gray-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ncs-magenta);
  transition: color var(--transition);
}

.service-card__link:hover {
  color: var(--ncs-blue);
}

/* ============================================
   Methodology
   ============================================ */
.methodology {
  background: var(--gradient-brand);
  position: relative;
}

.methodology__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.method-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.method-step:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.method-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--ncs-white);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.method-step__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ncs-white);
  margin-bottom: 0.75rem;
}

.method-step__desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

/* ============================================
   Pillars
   ============================================ */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 2rem;
}

.pillar-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.pillar-card--cloud {
  background: linear-gradient(135deg, var(--ncs-navy-deep) 0%, var(--ncs-navy) 100%);
  color: var(--ncs-white);
}

.pillar-card--staffing {
  background: linear-gradient(135deg, var(--ncs-magenta) 0%, var(--ncs-magenta-light) 100%);
  color: var(--ncs-white);
}

.pillar-card__num {
  font-size: 3rem;
  font-weight: 800;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pillar-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.pillar-card__desc {
  font-size: 0.9375rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.pillar-card__list {
  margin-bottom: 2rem;
}

.pillar-card__list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9375rem;
  opacity: 0.9;
}

.pillar-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ncs-teal);
  font-weight: 700;
}

.pillar-card .btn--white {
  font-size: 0.875rem;
}

/* ============================================
   Why NCS
   ============================================ */
.why {
  background: var(--ncs-off-white);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--ncs-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--ncs-border);
  transition: all var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.why-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ncs-navy);
  margin-bottom: 0.75rem;
}

.why-card__desc {
  font-size: 0.9375rem;
  color: var(--ncs-gray-light);
  line-height: 1.65;
}

/* ============================================
   Promises
   ============================================ */
.promises__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.promises__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ncs-navy);
  margin-bottom: 1rem;
}

.promises__intro p {
  color: var(--ncs-gray-light);
  font-size: 1.0625rem;
}

.promises__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.promise-card {
  padding: 2rem;
  border-left: 4px solid var(--ncs-blue);
  background: var(--ncs-off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: all var(--transition);
}

.promise-card:nth-child(2) { border-left-color: var(--ncs-magenta); }
.promise-card:nth-child(3) { border-left-color: var(--ncs-teal); }
.promise-card:nth-child(4) { border-left-color: var(--ncs-navy); }

.promise-card:hover {
  background: var(--ncs-white);
  box-shadow: var(--shadow-md);
}

.promise-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ncs-navy);
  margin-bottom: 0.75rem;
}

.promise-card__desc {
  font-size: 0.9375rem;
  color: var(--ncs-gray-light);
  line-height: 1.65;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--ncs-white);
  border: 1px solid var(--ncs-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--ncs-blue);
  opacity: 0.3;
  margin-bottom: 0.5rem;
}

.testimonial-card__text {
  font-size: 0.9375rem;
  color: var(--ncs-gray);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ncs-white);
  font-size: 0.75rem;
  font-weight: 700;
}

.testimonial-card__tag {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ncs-magenta);
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  background: var(--gradient-brand);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--ncs-white);
  margin-bottom: 1rem;
}

.cta-banner__desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============================================
   Contact
   ============================================ */
.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__desc {
  color: var(--ncs-gray-light);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

.contact__details h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ncs-navy);
  margin-bottom: 0.75rem;
}

.contact__details > p {
  font-size: 0.9375rem;
  color: var(--ncs-gray-light);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 173, 239, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact__item strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ncs-gray-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact__item a {
  color: var(--ncs-blue);
  font-weight: 600;
}

.contact__item a:hover {
  color: var(--ncs-magenta);
}

.contact__form {
  background: var(--ncs-off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--ncs-border);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ncs-navy);
  margin-bottom: 0.5rem;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  border: 1px solid var(--ncs-border);
  border-radius: 8px;
  background: var(--ncs-white);
  color: var(--ncs-gray);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--ncs-blue);
  box-shadow: 0 0 0 3px rgba(0, 173, 239, 0.15);
}

.form__group input.error,
.form__group select.error,
.form__group textarea.error {
  border-color: #E53E3E;
}

.form__error {
  display: block;
  font-size: 0.8125rem;
  color: #E53E3E;
  margin-top: 0.375rem;
  min-height: 1.2em;
}

.contact__success {
  background: var(--ncs-off-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--ncs-teal);
}

.contact__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ncs-teal);
  color: var(--ncs-white);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact__success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ncs-navy);
  margin-bottom: 0.75rem;
}

.contact__success p {
  color: var(--ncs-gray-light);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--ncs-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ncs-white);
  margin-bottom: 0.25rem;
}

.footer__brand p {
  font-size: 0.875rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer__links a {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--ncs-blue);
}

.footer__copy {
  font-size: 0.8125rem;
  opacity: 0.6;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
  :root {
    --section-pad: 3.5rem;
  }

  .contact__wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pillars__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--ncs-white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--ncs-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__menu li {
    width: 100%;
  }

  .nav__link {
    display: block;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--ncs-border);
  }

  .nav__link--cta {
    text-align: center;
    margin-top: 0.5rem;
    border-bottom: none;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .hero__scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__actions .btn {
    width: 100%;
    max-width: 320px;
  }
}
