/* GLOBAL */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(90deg, #a6a6a6, #ffffff);
  color: #030405;
}


/* ACCESSIBILITY + GLOBAL UTILITIES */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  padding: 0.75rem 1rem;
  background: #fad12c;
  color: #030405;
  font-weight: bold;
  text-decoration: none;
  border: 3px solid #030405;
}

/* High-visibility keyboard focus on light backgrounds */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #030405;
  outline-offset: 3px;
}

/* Yellow focus ring on dark/blue areas */
.navbar a:focus-visible,
.navbar button:focus-visible,
.hero a:focus-visible,
.why-dizzy a:focus-visible,
.contact a:focus-visible,
.contact button:focus-visible {
  outline-color: #fad12c;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: #030405;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar nav {
  display: flex;
  justify-content: center;
  width: 100%;
}
.navbar nav {
  display: flex;
  justify-content: center;
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
} 

/* Hover + active color + glow */
.nav-links a:hover,
.nav-links a:focus,
.nav-links a:active {
  color: #fad12c;
  text-shadow: 0 0 6px rgba(250, 209, 44, 0.5);
}

/* Thin animated underline */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px; /* slight spacing below text */
  width: 0%;
  height: 2px;
  background: #fad12c;
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* Animate underline on hover */
.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}


.menu-btn {
  display: none;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #030405;
  color: white;
  padding: 4rem 2rem;
}

.hero-content {
  width: 100%;
  max-width: 850px;
}

.logo img {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: 0 auto 1.75rem;
}

.hero-eyebrow {
  color: #fad12c;
  font-size: 0.95rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 1.25rem;
}

.hero-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #e6e6e6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-btn {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #fad12c;
  transition: 0.3s ease;
}

.primary-btn {
  background: #fad12c;
  color: #030405;
}

.primary-btn:hover,
.primary-btn:focus {
  background: transparent;
  color: #fad12c;
}

.secondary-btn {
  background: transparent;
  color: #fad12c;
}

.secondary-btn:hover,
.secondary-btn:focus {
  background: #fad12c;
  color: #030405;
}
/* SERVICES */
.services {
  padding: 5rem 2rem;
  text-align: center;
}

.section-heading {
  max-width: 750px;
  margin: 0 auto;
}

.section-eyebrow {
  color: #1a41cb;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

.section-heading p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

.service-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 3rem auto 0;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border-left: 5px solid #1a41cb;
  text-align: left;
  transition: 0.3s ease;
}

.service-card:hover {
  border-left-color: #fad12c;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-top: 0;
}

.service-card p {
  line-height: 1.7;
  color: #444;
}

.service-link {
  display: inline-block;
  margin-top: 1rem;
  color: #1a41cb;
  font-weight: bold;
  text-decoration: none;
}

.service-link:hover,
.service-link:focus {
  color: #030405;
  text-decoration: underline;
}

@media (max-width: 850px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}
/* WHY DIZZY */
.why-dizzy {
  background: #030405;
  color: white;
  padding: 5rem 2rem;
}

.why-content {
  max-width: 1100px;
  margin: 0 auto;
}

.why-intro {
  max-width: 750px;
  margin: 0 auto 3rem;
  text-align: center;
}

.why-dizzy .section-eyebrow {
  color: #fad12c;
}

.why-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

.why-lead {
  color: #d9d9d9;
  font-size: 1.1rem;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid #444;
  border-left: 1px solid #444;
}

.why-item {
  padding: 2rem;
  border-right: 1px solid #444;
  border-bottom: 1px solid #444;
}

.why-item h3 {
  color: #fad12c;
  margin-top: 0;
  font-size: 1.25rem;
}

.why-item p {
  color: #d9d9d9;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* POPULAR SERVICES & PRICING */
.pricing {
  padding: 5rem 2rem;
  background: #f5f5f5;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.pricing-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: left;
  border-top: 4px solid #1a41cb;
  transition: 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-top-color: #fad12c;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: #1a41cb;
  margin: 1rem 0;
}

.price span {
  font-size: 0.9rem;
  font-weight: normal;
  color: #666;
}

.pricing-card p {
  line-height: 1.7;
  color: #444;
}

.pricing-link {
  display: inline-block;
  margin-top: 1rem;
  color: #1a41cb;
  font-weight: bold;
  text-decoration: none;
}

.pricing-link:hover,
.pricing-link:focus {
  color: #030405;
  text-decoration: underline;
}

.pricing-note {
  max-width: 700px;
  margin: 2.5rem auto 0;
  font-size: 1rem;
  color: #555;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* HOW IT WORKS */
.how-it-works {
  padding: 5rem 2rem;
  background: white;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 3.5rem auto 0;
}

.step {
  position: relative;
  padding: 2rem 2.5rem;
  text-align: left;
  border-right: 1px solid #ddd;
}

.step:last-child {
  border-right: none;
}

.step-number {
  display: block;
  color: #1a41cb;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.step h3 {
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.step p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 0;
}

.how-cta {
  margin-top: 3.5rem;
}

.how-cta p {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

@media (max-width: 800px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step {
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding: 2rem 0;
  }

  .step:last-child {
    border-bottom: none;
  }
}

/* ABOUT DIZZY */
.about-dizzy {
  padding: 5rem 2rem;
  background: #f7f7f7;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-copy {
  max-width: 700px;
}

.about-copy .section-eyebrow {
  margin-bottom: 0.75rem;
}

.about-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

.about-lead {
  font-size: 1.3rem;
  font-weight: bold;
  color: #1a41cb;
  line-height: 1.5;
}

.about-copy p {
  color: #444;
  line-height: 1.8;
}

.about-closing {
  margin-top: 1.5rem;
  font-weight: bold;
  color: #030405 !important;
}


/* ABOUT HIGHLIGHT */
.about-highlight {
  background: #030405;
  color: white;
  padding: 2.5rem;
  border-radius: 10px;
  border-top: 5px solid #fad12c;
}

.highlight-label {
  color: #fad12c;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  margin-top: 0;
}

.about-highlight h3 {
  font-size: 1.6rem;
  line-height: 1.35;
  margin: 0 0 1rem;
}

.about-highlight > p {
  color: #d9d9d9;
  line-height: 1.7;
}

.about-points {
  margin: 1.5rem 0 2rem;
  padding-left: 1.25rem;
}

.about-points li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.about-highlight .primary-btn {
  margin-top: 0.5rem;
}


/* ABOUT MOBILE */
@media (max-width: 850px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-copy {
    max-width: none;
  }
}

/* CONTACT */
.contact {
  padding: 5rem 2rem;
  background: #030405;
  color: white;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-copy .section-eyebrow {
  color: #fad12c;
}

.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

.contact-lead {
  color: #d9d9d9;
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-note {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 4px solid #fad12c;
  background: #111;
}

.contact-note h3 {
  margin-top: 0;
  color: #fad12c;
}

.contact-note p {
  color: #d9d9d9;
  line-height: 1.7;
  margin-bottom: 0;
}


/* FORM */

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form {
  background: white;
  color: #030405;
  padding: 2rem;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.45rem;
}

.contact-form label span {
  font-weight: normal;
  color: #666;
  font-size: 0.85rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.85rem;
  border: 1px solid #bbb;
  border-radius: 5px;
  font: inherit;
  background: white;
  color: #030405;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #1a41cb;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 1rem;
  font-weight: bold;
  line-height: 1.5;
}

.form-status.success {
  color: #176b2c;
}

.form-status.error {
  color: #a61b1b;
}

.contact-submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.contact-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #fad12c;
  background: #fad12c;
  color: #030405;
  font: inherit;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-submit:hover,
.contact-submit:focus {
  background: #030405;
  color: #fad12c;
}

.form-disclaimer {
  margin: 1rem 0 0;
  color: #666;
  font-size: 0.85rem;
  line-height: 1.5;
}


/* CONTACT MOBILE */
@media (max-width: 800px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
.footer {
  background: #030405;
  color: white;
  text-align: center;
  padding: 1rem;
}


/* MOBILE MENU */
@media (max-width: 768px) {
  .navbar nav {
    width: 100%;
  }

  .menu-btn {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.5rem;
    padding: 1rem;
    background: #1a41cb;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 0.5rem;
  }

  .logo img {
  width: min(100%, 280px);
	}	
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
