:root {
  --navy: #032153;
  --navy-deep: #020d22;
  --navy-soft: #0b2f6b;
  --royal: #2372d8;
  --sky: #55a9ee;
  --gold: #e1ba52;
  --gold-light: #f3dc91;
  --paper: #f2f5fa;
  --white: #ffffff;
  --ink: #0d1b33;
  --muted: #64728a;
  --line: #d8e1ed;
  --dark-line: rgba(255, 255, 255, 0.14);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --container: min(1180px, calc(100% - 2.5rem));
  --shadow: 0 30px 80px rgba(2, 20, 50, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(2, 13, 34, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  width: var(--container);
  min-height: 5.4rem;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex: 0 0 auto;
}

.brand-logo-wrap {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(225, 186, 82, 0.5);
  border-radius: 50%;
  background: #032153;
  box-shadow: 0 0 0 4px rgba(225, 186, 82, 0.08);
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translateX(-1.5%) scale(1.14);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.2em;
}

.brand-copy small {
  margin-top: 0.32rem;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.34em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.1vw, 2.05rem);
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 2.9rem;
  padding: 0.68rem 1.15rem;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-deep);
}

.menu-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1rem;
  height: 1px;
  margin: 0.3rem auto;
  background: var(--white);
  transition: transform 180ms ease;
}

.home-section {
  position: relative;
  overflow: hidden;
  padding-top: 10rem;
  background: var(--navy-deep);
  color: var(--white);
}

.hero-grid,
.package-grid-bg,
.contact-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 86%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-one {
  top: 3rem;
  right: -10rem;
  width: 42rem;
  height: 42rem;
  background: radial-gradient(circle, rgba(35, 114, 216, 0.32), rgba(35, 114, 216, 0) 68%);
}

.hero-glow-two {
  top: 30rem;
  left: -12rem;
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(225, 186, 82, 0.1), rgba(225, 186, 82, 0) 70%);
}

.hero-layout {
  position: relative;
  display: grid;
  min-height: 620px;
  padding-bottom: 3.5rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--royal);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 2rem;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--gold);
}

.hero-copy h1 {
  max-width: 750px;
  margin: 1.2rem 0 1.5rem;
  font-size: clamp(3.65rem, 6.3vw, 6.75rem);
  font-weight: 650;
  letter-spacing: -0.064em;
  line-height: 0.96;
}

.hero-copy h1 em,
.contact-copy h2 em {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 3.45rem;
  padding: 0.86rem 1.4rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 12px 30px rgba(225, 186, 82, 0.18);
}

.button-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 16px 36px rgba(225, 186, 82, 0.27);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-assurances {
  display: flex;
  margin: 1.8rem 0 0;
  padding: 0;
  gap: 0.7rem 1.4rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  list-style: none;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-assurances span {
  display: grid;
  width: 1.15rem;
  height: 1.15rem;
  place-items: center;
  border: 1px solid rgba(225, 186, 82, 0.45);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.65rem;
}

.logo-stage {
  position: relative;
  min-height: 570px;
}

.logo-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96%;
  aspect-ratio: 1;
  border: 1px solid rgba(225, 186, 82, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 3.5rem rgba(35, 114, 216, 0.03), 0 0 0 7rem rgba(35, 114, 216, 0.02);
  transform: translate(-50%, -50%);
}

.logo-panel {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(88%, 430px);
  padding: 1.15rem 1.15rem 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(225, 186, 82, 0.4);
  border-radius: 1.8rem;
  background: #032153;
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.38);
  transform: translate(-50%, -50%) rotate(1.5deg);
}

.logo-panel::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.logo-panel-label {
  margin: 0.15rem 0 0.3rem;
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-align: center;
}

.hero-logo {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.logo-panel p {
  margin: 0.1rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.logo-note {
  position: absolute;
  z-index: 2;
  display: flex;
  min-width: 170px;
  padding: 0.85rem 0.95rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.9rem;
  background: rgba(7, 31, 71, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.logo-note strong {
  font-size: 0.75rem;
}

.note-one {
  top: 9%;
  right: -1rem;
}

.note-two {
  bottom: 7%;
  left: -1.3rem;
}

.hero-promise {
  position: relative;
  padding: 0.5rem 0 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.hero-promise p {
  max-width: 980px;
  margin: 0 auto;
  color: var(--gold);
  font-size: clamp(1.65rem, 3.3vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.home-about {
  position: relative;
  display: grid;
  padding: 3.8rem 0 5rem;
  grid-template-columns: 0.28fr 0.92fr 0.8fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.about-label,
.section-label {
  color: #718098;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.about-label {
  color: var(--gold);
}

.about-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 620;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.65);
}

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

.service-ribbon {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy-soft);
}

.ribbon-track {
  display: flex;
  width: max-content;
  min-height: 4rem;
  align-items: center;
  gap: 1.4rem;
  animation: ticker 30s linear infinite;
}

.ribbon-track span {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ribbon-track i {
  color: var(--gold);
  font-size: 0.78rem;
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

.services-section {
  background: #101113;
  color: var(--white);
}

.services-section .section-heading > p {
  color: rgba(255, 255, 255, 0.58);
}

.section-heading,
.packages-heading {
  display: grid;
  margin-bottom: 3.5rem;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
}

.section-heading h2,
.packages-heading h2,
.contact-copy h2 {
  margin: 0.95rem 0 0;
  font-size: clamp(2.55rem, 4.8vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.058em;
  line-height: 1.02;
}

.section-heading > p,
.packages-heading > p {
  max-width: 450px;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  display: flex;
  min-height: 315px;
  padding: clamp(1.7rem, 3vw, 2.35rem);
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: #1a1b1d;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  border-color: rgba(225, 186, 82, 0.42);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24);
  transform: translateY(-5px);
}

.service-icon {
  margin: 0.65rem 0 1.75rem;
  font-size: 2rem;
  line-height: 1;
}

.service-card h3 {
  margin: 0 0 0.85rem;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.service-card > p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.98rem;
  line-height: 1.75;
}

.packages-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.packages-section .container {
  position: relative;
}

.light-label {
  color: var(--gold);
}

.packages-heading > p {
  color: rgba(255, 255, 255, 0.62);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 690px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.price-card-corporate {
  background: linear-gradient(145deg, #f8fbff, #e9f1fb);
}

.price-card-premium {
  border-color: rgba(225, 186, 82, 0.62);
  background:
    radial-gradient(circle at 92% 8%, rgba(35, 114, 216, 0.42), transparent 30%),
    var(--navy);
  color: var(--white);
}

.premium-badge {
  position: absolute;
  top: 0;
  right: 2.25rem;
  padding: 0.48rem 0.8rem;
  border-radius: 0 0 0.5rem 0.5rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.price-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.price-card-head h3 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.package-fit {
  min-height: 3.5rem;
  margin: 1rem 0 1.35rem;
  color: var(--muted);
}

.price-card-premium .package-fit {
  color: rgba(255, 255, 255, 0.62);
}

.price-block {
  display: grid;
  margin-bottom: 1.5rem;
  padding: 1.25rem 0;
  grid-template-columns: 1fr 0.78fr;
  gap: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-card-premium .price-block {
  border-color: rgba(255, 255, 255, 0.16);
}

.setup-price,
.monthly-price {
  display: flex;
  flex-direction: column;
}

.setup-price small {
  margin-bottom: 0.2rem;
  color: #79869a;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.price-card-premium .setup-price small {
  color: rgba(255, 255, 255, 0.46);
}

.setup-price strong,
.monthly-price strong {
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.setup-price > span,
.monthly-price > span {
  color: #7a8698;
  font-size: 0.7rem;
  line-height: 1.35;
}

.price-card-premium .setup-price > span,
.price-card-premium .monthly-price > span {
  color: rgba(255, 255, 255, 0.48);
}

.monthly-price {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.price-card-premium .monthly-price {
  border-color: rgba(255, 255, 255, 0.16);
}

.monthly-price strong {
  color: var(--royal);
}

.price-card-premium .monthly-price strong {
  color: var(--gold-light);
}

.feature-list {
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  padding: 0.48rem 0;
  align-items: flex-start;
  gap: 0.65rem;
  color: #47566e;
  font-size: 0.88rem;
  font-weight: 650;
}

.feature-list li::before {
  display: grid;
  width: 1.18rem;
  height: 1.18rem;
  flex: 0 0 auto;
  margin-top: 0.12rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(35, 114, 216, 0.1);
  color: var(--royal);
  content: "✓";
  font-size: 0.63rem;
  font-weight: 900;
}

.price-card-premium .feature-list li {
  color: rgba(255, 255, 255, 0.76);
}

.price-card-premium .feature-list li::before {
  background: rgba(225, 186, 82, 0.14);
  color: var(--gold);
}

.package-button {
  display: flex;
  min-height: 3.4rem;
  margin-top: auto;
  padding: 0.82rem 1.15rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #c9d5e5;
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.package-button:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.package-button-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-deep);
}

.package-button-gold:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--navy-deep);
}

.pricing-note {
  max-width: 980px;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  line-height: 1.65;
  text-align: center;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5.7rem, 10vw, 9rem) 0;
  background: #07080b;
  color: var(--white);
}

.contact-grid-bg {
  opacity: 0.45;
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-copy h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 5.5vw, 5.7rem);
}

.contact-copy > p {
  max-width: 550px;
  margin-bottom: 2.2rem;
  color: rgba(255, 255, 255, 0.57);
  font-size: 1.02rem;
}

.contact-details {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-details > a,
.contact-detail-row {
  display: flex;
  padding: 0.9rem 0;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.12rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-details > a {
  transition: padding 180ms ease, background 180ms ease;
}

.contact-details > a:hover {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  background: rgba(255, 255, 255, 0.035);
}

.contact-details small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.contact-details strong {
  overflow: hidden;
  margin-top: 0.12rem;
  font-size: 0.88rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-form {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(25, 27, 32, 0.96);
  box-shadow: var(--shadow);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.form-heading {
  display: flex;
  margin-bottom: 1.7rem;
  padding-bottom: 1.25rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.form-heading small {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.form-heading h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.form-heading > span {
  color: var(--gold);
  font-size: 1.35rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.project-form label {
  display: block;
  margin-bottom: 1rem;
}

.project-form label > span {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  font-weight: 800;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.7rem;
  background: #24272d;
  color: var(--white);
  font-size: 0.91rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.project-form input,
.project-form select {
  min-height: 3.25rem;
  padding: 0 0.9rem;
}

.project-form textarea {
  min-height: 7rem;
  padding: 0.8rem 0.9rem;
  resize: vertical;
}

.project-form select option {
  color: var(--white);
  background: #24272d;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: var(--gold);
  background: #292c32;
  box-shadow: 0 0 0 4px rgba(225, 186, 82, 0.1);
}

.project-form input::placeholder,
.project-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.33);
}

.form-submit {
  width: 100%;
  margin-top: 0.25rem;
  border: 0;
}

.form-note {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.72rem;
  text-align: center;
}

.site-footer {
  padding: 4rem 0 1.5rem;
  background: #020711;
  color: var(--white);
}

.footer-main {
  display: grid;
  padding-bottom: 3rem;
  grid-template-columns: 0.7fr 0.8fr 1.2fr;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main > p {
  max-width: 380px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.35rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 750;
  transition: color 160ms ease;
}

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

.footer-bottom {
  display: flex;
  padding-top: 1.4rem;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.7rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal][data-delay="1"] {
  transition-delay: 100ms;
}

[data-reveal][data-delay="2"] {
  transition-delay: 180ms;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
    gap: 2rem;
  }

  .logo-stage {
    min-height: 520px;
  }

  .note-one {
    right: -0.4rem;
  }

  .note-two {
    left: -0.4rem;
  }

  .home-about {
    grid-template-columns: 0.3fr 1fr 0.8fr;
    gap: 2.5rem;
  }

  .price-card {
    min-height: 710px;
  }
}

@media (max-width: 920px) {
  .nav-shell {
    min-height: 4.9rem;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 4.9rem;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100vh - 4.9rem);
    padding: 2rem 1.25rem 4rem;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: rgba(2, 13, 34, 0.985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.nav-cta) {
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.35rem;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 1.5rem;
    justify-content: center;
  }

  .home-section {
    padding-top: 8.7rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-copy h1 {
    max-width: 820px;
    font-size: clamp(3.8rem, 10vw, 6.5rem);
  }

  .logo-stage {
    width: min(90%, 620px);
    min-height: 610px;
    margin: 0 auto;
  }

  .home-about {
    grid-template-columns: 1fr 1fr;
  }

  .about-label {
    grid-column: 1 / -1;
  }

  .section-heading,
  .packages-heading {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 300px;
  }

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

  .price-card {
    min-height: auto;
  }

  .package-fit {
    min-height: auto;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    max-width: 760px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 1.5rem, 1180px);
    --radius-lg: 1.35rem;
  }

  .brand-logo-wrap {
    width: 2.35rem;
    height: 2.35rem;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy small {
    font-size: 0.61rem;
  }

  .home-section {
    padding-top: 7.7rem;
  }

  .hero-layout {
    min-height: auto;
    padding-bottom: 2.8rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.15rem, 15vw, 4.8rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-assurances {
    align-items: flex-start;
    flex-direction: column;
  }

  .logo-stage {
    width: 100%;
    min-height: 500px;
  }

  .logo-panel {
    width: 88%;
    padding: 0.8rem 0.8rem 1rem;
  }

  .hero-logo {
    max-height: 345px;
  }

  .logo-note {
    min-width: 165px;
    padding: 0.65rem;
  }

  .note-one {
    top: 4%;
    right: -0.25rem;
  }

  .note-two {
    bottom: 3%;
    left: -0.25rem;
  }

  .hero-promise {
    padding: 0.25rem 0 3.2rem;
  }

  .hero-promise p {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }

  .home-about {
    padding: 3rem 0 4rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-label {
    grid-column: auto;
  }

  .about-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .ribbon-track {
    min-height: 3.6rem;
  }

  .section {
    padding: 5.25rem 0;
  }

  .section-heading h2,
  .packages-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.45rem, 11vw, 3.65rem);
  }

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

  .service-card {
    min-height: 285px;
  }

  .pricing-grid {
    gap: 0.85rem;
  }

  .price-card {
    padding: 1.35rem;
  }

  .premium-badge {
    right: 1.35rem;
  }

  .price-card-head h3 {
    max-width: 260px;
  }

  .price-block {
    grid-template-columns: 1fr;
  }

  .monthly-price {
    padding: 1rem 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .price-card-premium .monthly-price {
    border-color: rgba(255, 255, 255, 0.16);
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .project-form {
    padding: 1.25rem;
  }

  .project-form input,
  .project-form select,
  .project-form textarea {
    font-size: 1rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-column: auto;
    gap: 1rem 1.4rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
