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

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

body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  font-weight: 300;
  color: #444;
  line-height: 1.7;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Roboto Slab', serif;
  color: #1a1a1a;
  line-height: 1.25;
}

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

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

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 0.75rem 0;
}

.nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 2.5rem;
  width: auto;
}

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

.nav-links a {
  font-size: 0.925rem;
  font-weight: 400;
  color: #555;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #FFA500;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #FFA500;
  color: #fff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border: 2px solid #FFA500;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.btn:hover {
  background: #2BA7ED;
  border-color: #2BA7ED;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #FFA500;
}

.btn-outline:hover {
  background: #FFA500;
  color: #fff;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

/* ===== Hero ===== */
.hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(165deg, #fefefe 0%, #fdf6e9 50%, #fef9f0 100%);
}

.hero-content {
  max-width: 44rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFA500;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 165, 0, 0.08);
  border-radius: 2rem;
}

.hero h1 {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.highlight {
  color: #FFA500;
}

.hero-sub {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 2.25rem;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== Trust Bar ===== */
.trust-bar {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFA500;
}

.trust-item span {
  font-size: 0.85rem;
  color: #777;
  font-weight: 400;
}

.trust-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(0,0,0,0.1);
}

/* ===== Sections ===== */
.section {
  padding: 6rem 0;
}

.section-alt {
  background: #fafafa;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFA500;
  margin-bottom: 0.75rem;
  text-align: center;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  padding: 2.25rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(255, 165, 0, 0.25);
  box-shadow: 0 8px 30px rgba(255, 165, 0, 0.08);
  transform: translateY(-2px);
}

.service-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 165, 0, 0.08);
  border-radius: 0.5rem;
  color: #FFA500;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.925rem;
  color: #666;
  line-height: 1.65;
}

/* ===== Steps ===== */
.steps {
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-number {
  font-family: 'Roboto Slab', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 165, 0, 0.2);
  line-height: 1;
  min-width: 3.5rem;
}

.step-content h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.65;
}

/* ===== Split Layout ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.split-text .section-eyebrow {
  text-align: left;
}

.split-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.check-list {
  list-style: none;
  margin-top: 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: #444;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1rem;
  height: 1rem;
  background: #FFA500;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 6L5.5 8L8.5 4' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.split-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.value-card {
  padding: 1.75rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: rgba(255, 165, 0, 0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.value-card-icon {
  color: #FFA500;
  margin-bottom: 1rem;
}

.value-card h4 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ===== CTA Section ===== */
.section-cta {
  background: linear-gradient(165deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 6rem 0;
}

.cta-box {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.cta-box h2 {
  font-size: 2.25rem;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-box > p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ===== Form ===== */
.cta-form {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.925rem;
  font-weight: 300;
  color: #fff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.375rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

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

.cta-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  color: rgba(255,255,255,0.35);
}

.cta-form select:valid {
  color: #fff;
}

.cta-form option {
  color: #1a1a1a;
  background: #fff;
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  border-color: #FFA500;
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.15);
}

.cta-form textarea {
  resize: vertical;
  margin-bottom: 1.25rem;
}

.cta-form .btn {
  font-size: 1rem;
  padding: 1rem;
}

/* ===== Footer ===== */
.footer {
  padding: 4rem 0 2rem;
  background: #111;
  color: rgba(255,255,255,0.5);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo-text {
  font-family: 'Roboto Slab', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.logo-text span {
  color: #FFA500;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #FFA500;
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero h1 {
    font-size: 2.5rem;
  }

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

  .split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

@media (max-width: 736px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 20rem;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -4px 0 30px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
  }

  .nav-links.open {
    right: 0;
  }

  .hero {
    padding: 8rem 0 3.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

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

  .trust-items {
    flex-direction: column;
    gap: 1.5rem;
  }

  .trust-divider {
    width: 3rem;
    height: 1px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step {
    gap: 1.25rem;
  }

  .step-number {
    font-size: 2rem;
    min-width: 2.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
  }
}
