:root {
  --primary-blue: #005ce6;
  --dark-base: #01122a;
  --dark-navy: #011e3b;
  --deep-navy: #020d1f;
  --luxury-gold: #f1d78f;
  --luxury-gold-soft: #f6e7bb;
  --accent-blue: #4da3ff;
  --accent-blue-soft: #9fd3ff;
  --accent-cyan: #7fe1ff;
  --border-gradient: linear-gradient(135deg, rgba(77, 163, 255, 0.95), rgba(255, 255, 255, 0.92), rgba(127, 225, 255, 0.88));
  --silver: #d8e4f1;
  --white: #ffffff;
  --off-white: #f8fafc;
  --text-main: #e2e8f0;
  --text-soft: rgba(226, 232, 240, 0.78);
  --panel-bg: rgba(4, 18, 38, 0.78);
  --panel-bg-strong: rgba(2, 12, 27, 0.92);
  --shadow-soft: 0 20px 45px rgba(0, 0, 0, 0.32);
  --shadow-strong: 0 28px 70px rgba(0, 0, 0, 0.46);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-main: 'Montserrat', sans-serif;
  --font-luxury: 'Playfair Display', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background:
    radial-gradient(circle at top, rgba(25, 74, 168, 0.16), transparent 28%),
    linear-gradient(180deg, #020b17 0%, #031327 35%, #01122a 100%);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 10%, rgba(255, 255, 255, 0.85) 1px, transparent 0),
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(255, 255, 255, 0.55) 1px, transparent 0),
    radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.65) 1px, transparent 0),
    radial-gradient(1px 1px at 70% 20%, rgba(255, 255, 255, 0.5) 1px, transparent 0),
    radial-gradient(1.5px 1.5px at 90% 80%, rgba(255, 255, 255, 0.8) 1px, transparent 0),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.7) 1px, transparent 0);
  background-size: 320px 320px;
  opacity: 0.34;
  pointer-events: none;
  z-index: -2;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-luxury);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

p {
  color: var(--text-soft);
}

ul {
  list-style: none;
}

.container {
  width: min(92%, 1180px);
  margin: 0 auto;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-blue-soft);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
}

.gold-text {
  color: var(--accent-blue-soft);
}

.star-icon {
  color: var(--luxury-gold);
  text-shadow: 0 0 12px rgba(241, 215, 143, 0.28);
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(180deg, rgba(2, 10, 24, 0.82), rgba(2, 10, 24, 0.12));
}

.navbar.scrolled {
  background: rgba(2, 13, 31, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  padding: 0.8rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo img {
  height: 60px;
  transition: height 0.3s ease;
}

.navbar.scrolled .logo img {
  height: 48px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--accent-blue-soft);
}

.nav-cta,
.hero-cta,
.contact-link,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.nav-cta {
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(159, 211, 255, 0.45);
  color: var(--off-white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.hero-cta:hover,
.hero-cta:focus-visible,
.contact-link:hover,
.contact-link:focus-visible,
.cta-btn:hover,
.cta-btn:focus-visible {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(159, 211, 255, 0.34);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.consent-group {
  margin-top: -0.1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--text-soft);
  cursor: pointer;
  line-height: 1.55;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--accent-blue);
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9.5rem 0 5rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 20, 46, 0.22) 0%, rgba(7, 18, 39, 0.64) 52%, rgba(3, 12, 28, 0.94) 100%),
    linear-gradient(90deg, rgba(22, 43, 92, 0.58) 0%, rgba(17, 36, 80, 0.16) 50%, rgba(5, 15, 33, 0.78) 100%),
    url('../luxury_bg.png') center/cover no-repeat fixed;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  animation: fadeIn 0.9s ease-out;
  padding-inline: 2rem;
}

.hero-logo-large {
  width: min(72vw, 420px);
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 18px rgba(255, 255, 255, 0.1));
}

.hero-title {
  font-size: clamp(2.9rem, 6.2vw, 5.3rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.04em;
  text-shadow: 0 5px 26px rgba(0, 0, 0, 0.42);
  white-space: nowrap;
  line-height: 1;
}

.hero-title-gold {
  font-style: italic;
  background: linear-gradient(180deg, #fffdf6 0%, #f7f3ea 18%, #f1e1a8 46%, #ece7dd 72%, #d5b86f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.luxury-text {
  font-style: italic;
  color: var(--white);
}

.hero-divider {
  width: min(82vw, 760px);
  height: 3px;
  margin: 1.6rem 0 1.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(225, 205, 130, 0.7) 16%, rgba(255, 240, 180, 1) 50%, rgba(225, 205, 130, 0.7) 84%, transparent 100%);
  box-shadow: 0 0 18px rgba(248, 223, 149, 0.22);
  position: relative;
}

.hero-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 243, 193, 1) 0%, rgba(246, 216, 122, 0.92) 35%, rgba(246, 216, 122, 0) 75%);
  box-shadow: 0 0 18px rgba(246, 216, 122, 0.5);
}

.hero-desc {
  max-width: 720px;
  margin-bottom: 2rem;
  font-size: 1.12rem;
  color: var(--silver);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.8rem;
}

.hero-cta {
  padding: 0.95rem 1.6rem;
}

.hero-cta-primary,
.submit-btn,
.contact-link,
.cta-btn {
  border: none;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  color: var(--deep-navy);
  box-shadow: 0 14px 30px rgba(77, 163, 255, 0.28);
}

.hero-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero-highlights li {
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(159, 211, 255, 0.2);
  font-size: 0.9rem;
  color: var(--off-white);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 25%, rgba(132, 176, 255, 0.18), transparent 26%),
    radial-gradient(circle at 12% 80%, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.06), transparent 14%),
    linear-gradient(90deg, rgba(6, 18, 40, 0.42) 0%, transparent 22%, transparent 78%, rgba(6, 18, 40, 0.42) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-bottom-glow,
.stars-layer-1,
.stars-layer-2 {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bottom-glow {
  inset: auto auto 3rem 50%;
  width: 320px;
  height: 140px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(114, 170, 255, 0.2) 0%, rgba(114, 170, 255, 0) 72%);
}

.trust-strip,
.services,
.feature-section,
.quote-section,
.page-content {
  position: relative;
}

.trust-strip {
  margin-top: -2.5rem;
  z-index: 3;
}

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

.trust-card,
.feature-card,
.service-card,
.content-wrapper,
.form-wrapper,
.contact-panel,
.grid-card,
.result-box {
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.trust-card,
.feature-card,
.service-card,
.content-wrapper,
.form-wrapper,
.contact-panel,
.grid-card {
  border: 1px solid transparent;
  background-image: linear-gradient(180deg, rgba(8, 25, 50, 0.82), rgba(3, 15, 31, 0.9)), var(--border-gradient);
  box-shadow: var(--shadow-soft);
}

.trust-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.trust-card strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.trust-card p {
  font-size: 0.94rem;
}

.services {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(1, 18, 42, 0.55) 0%, rgba(1, 20, 45, 0.92) 100%);
}

.services-header,
.feature-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.services-header h2,
.feature-intro h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  margin-bottom: 0.85rem;
}

.services-header p,
.feature-intro p {
  font-size: 1.04rem;
}

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

.service-card {
  min-height: 100%;
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover,
.feature-card:hover {
  transform: translateY(-6px);
}

.service-card:hover {
  box-shadow: var(--shadow-strong);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(159, 211, 255, 0.25);
}

.card-title h3 {
  font-family: var(--font-main);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--white);
}

.card-content p {
  margin-bottom: 1.35rem;
}

.read-more {
  color: var(--accent-blue-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
}

.feature-section {
  padding: 1rem 0 6rem;
}

.feature-layout {
  display: grid;
  gap: 2rem;
}

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

.feature-card {
  padding: 2rem;
  border-radius: var(--radius-md);
}

.feature-card h3 {
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(2, 13, 31, 0.92) 0%, rgba(1, 17, 38, 0.98) 100%);
}

.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 2rem;
  align-items: start;
}

.testimonials-header {
  text-align: left;
  margin: 0 0 2rem;
}

.testimonials-header h2,
.testimonials-header p {
  text-align: left;
}

.testimonials-panel,
.testimonial-form-card {
  border: 1px solid transparent;
  border-radius: 24px;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-image: linear-gradient(180deg, rgba(8, 25, 50, 0.82), rgba(3, 15, 31, 0.92)), var(--border-gradient);
  box-shadow: var(--shadow-soft);
}

.testimonials-panel {
  padding: 2rem;
}

.testimonials-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonials-title {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.testimonials-subtitle {
  font-size: 0.95rem;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(159, 211, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.testimonial-nav:hover,
.testimonial-nav:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(127, 225, 255, 0.8);
  background: rgba(77, 163, 255, 0.14);
  outline: none;
}

.testimonial-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.testimonials-counter {
  color: var(--silver);
  font-size: 0.92rem;
}

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

.testimonial-card {
  min-height: 100%;
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(159, 211, 255, 0.14);
}

.testimonial-rating {
  margin-bottom: 0.9rem;
  color: var(--luxury-gold);
  letter-spacing: 0.14em;
  font-size: 0.95rem;
}

.testimonial-message {
  color: var(--off-white);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.testimonial-meta strong,
.testimonial-meta span {
  display: block;
}

.testimonial-meta strong {
  color: var(--white);
  font-size: 1rem;
}

.testimonial-meta span {
  color: var(--accent-blue-soft);
  font-size: 0.9rem;
  margin-top: 0.18rem;
}

.testimonials-empty {
  padding: 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(159, 211, 255, 0.2);
  color: var(--silver);
  text-align: center;
}

.testimonial-form-card {
  padding: 2rem;
}

.testimonial-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-feedback {
  min-height: 1.4rem;
  color: var(--accent-blue-soft);
  font-size: 0.92rem;
}

.faq-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(1, 12, 28, 0.88) 0%, rgba(2, 13, 31, 0.96) 100%);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(159, 211, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 1.5rem;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  color: var(--accent-blue-soft);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  padding: 0 1.5rem 1.4rem;
  color: var(--silver);
}

.quote-section {
  padding: 6rem 0 6.5rem;
  background: linear-gradient(180deg, rgba(1, 18, 42, 0.86) 0%, rgba(1, 11, 24, 1) 100%);
}

.form-container {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 2rem;
  align-items: stretch;
}

.form-wrapper,
.contact-panel {
  border-radius: 24px;
}

.form-wrapper {
  padding: 2.4rem;
}

.form-header h3 {
  font-family: var(--font-main);
  color: var(--white);
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
}

.form-header p {
  margin-bottom: 2rem;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--silver);
  font-size: 0.92rem;
}

.required {
  color: var(--accent-blue-soft);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(159, 211, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  padding: 0.95rem 1rem;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.quote-form select option {
  color: #0b1527;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(226, 232, 240, 0.48);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.menu-toggle:focus-visible,
.nav-link:focus-visible,
.nav-cta:focus-visible,
.hero-cta:focus-visible,
.contact-link:focus-visible,
.submit-btn:focus-visible,
.cta-btn:focus-visible {
  outline: none;
  border-color: rgba(127, 225, 255, 0.88);
  box-shadow: 0 0 0 4px rgba(77, 163, 255, 0.16);
}

.submit-btn,
.cta-btn {
  padding: 1rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.contact-panel {
  height: 100%;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(180deg, rgba(3, 15, 31, 0.92), rgba(1, 10, 24, 0.98)), var(--border-gradient);
}

.contact-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1.2rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(159, 211, 255, 0.12);
  color: var(--accent-blue-soft);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.ready-text {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 0.9rem;
}

.contact-points {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0 2rem;
}

.contact-points li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--silver);
}

.contact-points li::before,
.grid-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-blue-soft);
  font-weight: 700;
}

.contact-link {
  align-self: flex-start;
  padding: 0.95rem 1.35rem;
}

footer {
  background: #000812;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  color: var(--silver);
  font-size: 0.95rem;
}

.footer-content p {
  font-size: 0.9rem;
}

.inner-page {
  background: linear-gradient(180deg, #020b17 0%, #031327 45%, #01122a 100%);
}

.inner-page .navbar {
  background: rgba(2, 13, 31, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-content {
  padding: 8.4rem 0 6rem;
}

.content-wrapper {
  max-width: 940px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 28px;
}

.breadcrumbs {
  margin-bottom: 1.8rem;
  color: var(--silver);
  font-size: 0.9rem;
}

.breadcrumbs a {
  text-decoration: underline;
}

.page-title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 0.65rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--accent-blue-soft);
  font-weight: 500;
  margin-bottom: 2rem;
}

.content-wrapper > p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

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

.grid-card {
  position: relative;
  padding: 1.8rem;
  border-radius: 20px;
}

.grid-card h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.card-gradient-title {
  background: linear-gradient(135deg, var(--accent-blue-soft) 0%, #ffffff 52%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.grid-card ul {
  display: grid;
  gap: 0.7rem;
}

.grid-card ul li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-main);
}

.result-box {
  margin-top: 0.6rem;
  padding: 1.6rem 1.8rem;
  border-radius: 20px;
  border: 1px solid rgba(77, 163, 255, 0.28);
  background: linear-gradient(90deg, rgba(0, 92, 230, 0.16), rgba(1, 18, 42, 0.35));
}

.result-box h4 {
  color: var(--accent-blue-soft);
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.result-box p {
  color: var(--white);
  font-weight: 500;
}

.cta-wrapper {
  text-align: center;
  margin-top: 2.4rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

body.nav-open {
  overflow: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .trust-strip-grid,
  .feature-grid,
  .form-container,
  .testimonials-layout {
    grid-template-columns: 1fr;
  }

  .feature-layout {
    gap: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 50%;
    width: min(92vw, 420px);
    transform: translateX(-50%);
    padding: 1rem;
    border-radius: 24px;
    background: rgba(2, 13, 31, 0.96);
    border: 1px solid rgba(159, 211, 255, 0.16);
    box-shadow: var(--shadow-strong);
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

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

  .site-nav .nav-link,
  .site-nav .nav-cta {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 8.5rem;
    background-attachment: scroll;
  }

  .hero-title {
    font-size: clamp(2.6rem, 12vw, 4rem);
    white-space: normal;
  }

  .hero-content {
    padding-inline: 1rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .services,
  .testimonials-section,
  .faq-section,
  .quote-section {
    padding: 5rem 0;
  }

  .services-grid,
  .testimonials-grid,
  .page-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .content-wrapper,
  .form-wrapper,
  .contact-panel,
  .testimonials-panel,
  .testimonial-form-card {
    padding: 1.6rem;
  }

  .testimonials-panel-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-content {
    padding-top: 7.4rem;
  }

  .page-title {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .logo img {
    height: 50px;
  }

  .hero-highlights {
    gap: 0.55rem;
  }

  .hero-highlights li {
    width: 100%;
  }

  .trust-strip {
    margin-top: -1.5rem;
  }

  .services-header h2,
  .feature-intro h2 {
    font-size: 2.2rem;
  }

  .hero-actions,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta,
  .contact-link,
  .cta-btn,
  .submit-btn {
    width: 100%;
  }
}
