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

:root {
  --black: #111111;
  --white: #ffffff;
  --gray-50: #f9f9f9;
  --gray-100: #f0f0f0;
  --gray-200: #e0e0e0;
  --gray-300: #cccccc;
  --gray-500: #777777;
  --gray-700: #444444;
  --blue: #0066ff;
  --blue-hover: #0052cc;
  --blue-light: #e6f0ff;
  --blue-deep: #0040b0;
  --blue-sky: #38bdf8;
  --blue-sky-light: #e0f2fe;
  --gradient-hero: linear-gradient(160deg, #f8faff 0%, #eef4ff 35%, #e0f2fe 70%, #f4f9ff 100%);
  --gradient-header: linear-gradient(135deg, #f8faff 0%, #e0f2fe 50%, #eef4ff 100%);
  --gradient-cta: linear-gradient(135deg, #0a0e1a 0%, #0d2244 40%, #0a3060 100%);
  --gradient-footer: var(--black);
  --gradient-card: linear-gradient(135deg, rgba(0,102,255,0.04) 0%, rgba(56,189,248,0.04) 100%);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1100px;
  --nav-height: 80px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
  overflow-y: scroll;
}

body {
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.text-small {
  font-size: 0.875rem;
  color: var(--gray-500);
}

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

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

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 1rem 0;
}

.section--gray {
  background: var(--gray-50);
}

/* ===== AMA PARTNERSHIP SECTION ===== */
.ama-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.ama-content p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
}

.ama-content__cta {
  margin-top: 0.5rem;
  align-self: center;
}

/* ===== AMA CHECKBOX ===== */
.form-group--checkbox {
  margin-bottom: 0.5rem;
}

.ama-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  transition: border-color var(--transition), background var(--transition);
}

.ama-checkbox-label:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}

.ama-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
  vertical-align: middle;
  margin: 0;
}

.ama-checkbox-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
}

.ama-checkbox-badge {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.01em;
  margin-left: auto;
}

#services {
  padding-bottom: 2.5rem;
}

#ama-partnership {
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}

#about {
  padding-bottom: 1rem;
}

#get-started {
  padding-top: 3.5rem;
}

#marketing,
#branding,
#graphic-design {
  padding-top: 3rem;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  display: flex;
  align-items: center;
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.nav__logo svg,
.nav__logo-img {
  height: auto;
  width: 90px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid var(--gray-200);
}

.nav__social-link {
  display: flex;
  align-items: center;
  color: var(--gray-500);
  transition: color var(--transition);
}

.nav__social-link:hover {
  color: var(--blue);
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--black);
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__social {
    display: none;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav__links--open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.2rem;
  }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--black);
  color: var(--white);
}

.btn--primary:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
}

.btn--blue:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,102,255,0.3);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

.btn--outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn--outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn--outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

.btn--ghost {
  background: none;
  color: var(--blue);
  padding: 0.5rem 0;
  font-weight: 600;
}

.btn--ghost:hover {
  text-decoration: underline;
}

.btn--ghost svg,
.btn--ghost .arrow {
  transition: transform var(--transition);
}

.btn--ghost:hover svg,
.btn--ghost:hover .arrow {
  transform: translateX(4px);
}

.btn--large {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

/* ===== HERO SECTION (Landing Page) ===== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ddeeff 0%, #e8f4ff 30%, #f4f9ff 65%, #ffffff 100%);
  overflow: hidden;
  padding-top: calc(var(--nav-height) + 0.5rem);
}

/* Decorative watermark image */
.hero__deco {
  position: absolute;
  left: 47%;
  top: 60%;
  transform: translate(-50%, -50%);
  width: 900px;
  max-width: 70%;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  object-fit: contain;
}

/* Gradient glow orbs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.35;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0,102,255,0.45), transparent 70%);
  top: -80px;
  right: -100px;
}

.hero::after {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(56,189,248,0.3), transparent 70%);
  bottom: 40px;
  left: -60px;
}

.hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 1;
  min-height: calc(72vh - var(--nav-height));
}

.hero__content {
  display: contents;
}

.hero__visual {
  display: none;
}

.hero__deco-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 820px;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 580px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__ama-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding: 0.85rem 1.75rem;
  background: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(0,102,255,0.2);
  border-radius: 50px;
  backdrop-filter: blur(6px);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.hero__ama-banner:hover {
  background: rgba(255,255,255,0.95);
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(0,102,255,0.12);
}

.hero__ama-badge {
  background: var(--blue);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.hero__ama-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
}

.hero__ama-learn {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
}

.btn--outline-white {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--gray-300);
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
}

.btn--outline-white:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

/* Hero CTA bar */
.hero__cta-bar {
  background: transparent;
  border-top: 1px solid rgba(0, 80, 200, 0.12);
  padding: 2.75rem 0 3rem;
  position: relative;
  z-index: 1;
}

.hero__cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.hero__cta-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
  max-width: 320px;
  padding: 0 2rem;
  text-align: center;
}

.hero__cta-divider {
  display: none;
}

.hero__cta-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-500);
  font-style: italic;
  line-height: 1.4;
}

.btn--outline-dark {
  padding: 0.65rem 1.5rem;
  border: 2px solid var(--black);
  color: var(--black);
  background: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn--outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto;
    gap: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hero__eyebrow {
    margin-bottom: 1rem;
  }

  .hero__title {
    margin-bottom: 1rem;
  }

  .hero__subtitle {
    margin-bottom: 1.5rem;
  }

  .hero__content {
    align-items: center;
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__visual {
    width: 100%;
  }

  .hero__deco-img {
    max-width: 380px;
  }

  .hero__cta-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
    padding: 0 1rem;
  }

  .hero__cta-col {
    align-items: flex-start;
    padding: 0;
    max-width: 100%;
  }

  .hero__cta-divider {
    width: 100%;
    height: 1px;
  }
}

/* ===== HOME PAGE ADDITIONAL SECTIONS ===== */
.section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-note {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
  font-style: italic;
  text-align: center;
}

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

.home-service-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem;
  border: 1px solid var(--gray-200);
  text-decoration: none;
  color: inherit;
  background: var(--white);
  transition: all var(--transition);
}

.home-service-card:hover {
  border-color: var(--blue);
  background: var(--gradient-card);
  box-shadow: 0 8px 30px rgba(0,102,255,0.12);
  transform: translateY(-4px);
}

.home-service-card__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-sky-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.home-service-card__icon svg {
  width: 22px;
  height: 22px;
}

.home-service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
}

.home-service-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}

.home-service-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 0.5rem;
}

/* Why section */
.home-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.home-why__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.home-why__icon {
  width: 28px;
  height: 28px;
  background: var(--gray-100);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.home-why__item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.35rem;
}

.home-why__item p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* CTA section */
.home-cta {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.home-cta__inner {
  text-align: center;
}

.home-cta__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.home-cta__subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.home-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.home-cta .btn--outline {
  color: var(--black);
  border-color: var(--gray-300);
}

.home-cta .btn--outline:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

@media (max-width: 768px) {
  .home-services__grid {
    grid-template-columns: 1fr;
  }

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

/* ===== PAGE HEADER ===== */
.page-header {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 5rem;
  background: linear-gradient(180deg, #eef4ff 0%, #e0f2fe 40%, #f0f7ff 70%, #ffffff 100%);
  text-align: center;
  border-bottom: none;
}

.page-header__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.page-header__title {
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.page-header__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--blue);
  margin: 0.6rem auto 0;
}

.page-header__subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0.75rem auto 0;
  line-height: 1.7;
}

.page-header__note {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
  font-style: italic;
}

/* ===== SERVICES OVERVIEW PAGE ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem 0 4rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(0,102,255,0.08);
  transform: translateY(-2px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--black);
}

.service-card__title {
  font-size: 1.3rem;
  font-weight: 700;
}

.service-card__price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  padding: 0.25rem 0.7rem;
  display: inline-block;
  align-self: flex-start;
}

.service-card__desc {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.service-card .btn--ghost {
  align-self: flex-start;
}

/* ===== SERVICE DETAIL PAGES ===== */
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-bottom: 2rem;
}

/* Service items */
.service-item {
  background: var(--white);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  display: flex;
  flex-direction: column;
}

.service-item:hover {
  border-color: rgba(0,102,255,0.2);
  background: var(--gradient-card);
  box-shadow: 0 4px 16px rgba(0,102,255,0.08);
}

.service-item__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.service-item__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
}

.service-item__pricing {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 1rem;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
}

.price-tag--essential {
  background: var(--gray-100);
  color: var(--gray-700);
}

.price-tag--advanced {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-sky) 100%);
  color: var(--white);
}

.price-tag__label {
  font-weight: 400;
  font-size: 0.75rem;
  opacity: 0.8;
}

.service-item__desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Nested sub-service */
.service-item__sub {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.service-item__sub .service-item__name {
  font-size: 0.95rem;
}

.quote-cta {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

@media (max-width: 768px) {
  .service-list {
    grid-template-columns: 1fr;
  }
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 0 4rem;
}

.about-content {
  max-width: 100%;
}

.about-photo {
  display: flex;
  justify-content: center;
}

.about-photo__img {
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-photo {
    order: -1;
  }
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-mission {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0;
  margin-top: 1.5rem;
}

.about-mission p {
  font-weight: 600;
  color: var(--black);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ===== GET STARTED PAGE ===== */
.get-started-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 0 0 4rem;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 2.5rem;
}

.form-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.form-card__desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--gray-700);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.show {
  display: block;
}

.form-success__icon {
  width: 56px;
  height: 56px;
  background: #e6f9e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.form-success h3 {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .get-started-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ PAGE ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-question__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-item--open .faq-question__icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item--open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.faq-answer p + p {
  margin-top: 0.75rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gradient-footer);
  color: var(--white);
  padding: 1.25rem 0;
  margin-top: auto;
}

main {
  flex: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__logo svg,
.footer__logo-img {
  height: auto;
  width: 75px;
  object-fit: contain;
}

.footer__logo svg path {
  fill: var(--white);
}

.footer__text {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__link {
  font-size: 0.85rem;
  color: var(--gray-300);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--white);
}

.footer__social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer__social-link {
  color: var(--gray-300);
  display: flex;
  align-items: center;
  transition: color var(--transition);
}

.footer__social-link:hover {
  color: var(--white);
}

/* ===== UTILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Spacer after nav */
.nav-spacer {
  height: var(--nav-height);
}

/* Business card sub-pricing */
.service-item__sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.sub-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding: 0.4rem 0.6rem;
  background: var(--gray-100);
}

.sub-price__label {
  color: var(--gray-700);
}

.sub-price__amount {
  font-weight: 700;
  color: var(--black);
}

/* Page transition */
.page-fade {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE — TABLET (768px) ===== */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .hero__ama-banner {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    margin-top: 1.25rem;
    max-width: none;
  }

  .hero__ama-banner:hover {
    background: none;
    border-color: transparent;
    box-shadow: none;
  }

  .hero__ama-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
  }

  .hero__ama-learn {
    font-size: 0.85rem;
    text-decoration: underline;
  }

  .hero__ama-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.55rem;
  }

  .form-card {
    padding: 1.75rem;
  }

  .about-grid {
    padding: 0 0 2rem;
  }

  .get-started-grid {
    padding: 0 0 2rem;
  }

  .faq-list {
    padding: 1rem 0 2rem;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer__links {
    justify-content: center;
  }

  .hero__deco {
    width: 500px;
    max-width: 80%;
  }

  .ama-content {
    padding: 0 1rem;
  }

  .nav {
    height: 60px;
  }

  .nav__logo svg,
  .nav__logo-img {
    width: 70px;
  }

  .nav__links {
    top: 60px;
  }

  .hero {
    padding-top: calc(60px + 1.5rem);
  }
}

/* ===== RESPONSIVE — SMALL PHONES (480px) ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

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

  .hero {
    padding-top: calc(60px + 1.25rem);
  }

  .hero__container {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .hero__title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .hero__eyebrow {
    margin-bottom: 0.75rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .hero__ama-banner {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
  }

  .hero__deco {
    display: none;
  }

  .btn--large {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  .form-card {
    padding: 1.25rem;
  }

  .form-card__desc {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .service-item__header {
    flex-direction: column;
  }

  .service-item__sub-grid {
    grid-template-columns: 1fr;
  }

  .price-tag {
    font-size: 0.78rem;
    padding: 0.15rem 0.5rem;
  }

  .ama-checkbox-label {
    padding: 0.6rem 0.75rem;
    gap: 0.5rem;
  }

  .ama-checkbox-text {
    font-size: 0.85rem;
  }

  .ama-checkbox-badge {
    font-size: 0.85rem;
  }

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

  .about-content p {
    font-size: 1rem;
  }

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

/* ============================================================
   HERO STAGGER ENTRANCE
   ============================================================ */
.hero__container > * {
  animation: heroChildIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero__container > *:nth-child(1) { animation-delay: 0.10s; }
.hero__container > *:nth-child(2) { animation-delay: 0.22s; }
.hero__container > *:nth-child(3) { animation-delay: 0.34s; }
.hero__container > *:nth-child(4) { animation-delay: 0.46s; }

@keyframes heroChildIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal="left"]  { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="scale"] { transform: scale(0.94) translateY(12px); }

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ============================================================
   NAV SHADOW ON SCROLL
   ============================================================ */
.nav {
  transition: box-shadow 0.3s ease;
}
.nav--scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.09);
}

/* ============================================================
   BUTTON RIPPLE
   ============================================================ */
@keyframes ripple {
  to { transform: scale(3); opacity: 0; }
}
