/* ============================================================
   STUDIO BOCETO — Global Stylesheet
   ============================================================ */

/* --- Google Fonts loaded via <link> in HTML --- */

/* ======================== CSS CUSTOM PROPERTIES ======================== */
:root {
  /* Colors */
  --navy:        #0A1628;
  --navy-light:  #111E33;
  --navy-mid:    #1A2A45;
  --slate:       #2A3A55;
  --steel:       #8B95A8;
  --silver:      #B8C1D0;
  --off-white:   #F0F2F5;
  --white:       #FFFFFF;
  --teal:        #00E5CC;
  --teal-dim:    #00C4AE;
  --teal-glow:   rgba(0, 229, 204, 0.15);
  --teal-subtle: rgba(0, 229, 204, 0.08);
  --amber:       #F5A623;
  --red-soft:    #FF6B6B;

  /* Typography */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width:  1200px;
  --nav-height: 72px;

  /* Transitions */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.12);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.15);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.2);
  --shadow-glow: 0 0 30px rgba(0, 229, 204, 0.2);

  /* Border radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-full: 50%;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--silver);
  background: var(--navy);
  overflow-x: hidden;
}

/* Page load fade-in */
main {
  animation: pageIn 0.6s var(--ease-out) both;
}

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

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--white); }

::selection {
  background: var(--teal);
  color: var(--navy);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--teal);
  color: var(--navy);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 10000;
  transition: top 0.3s;
}
.skip-link:focus {
  top: var(--space-sm);
}

/* ======================== TYPOGRAPHY ======================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 600; }

p { margin-bottom: var(--space-sm); }

.text-teal { color: var(--teal); }
.text-white { color: var(--white); }
.text-silver { color: var(--silver); }

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

.section {
  padding: var(--space-3xl) 0;
}

.section--dark {
  background: var(--navy);
}

.section--darker {
  background: var(--navy-light);
}

.section--gradient {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

/* Diagonal separator */
.section--slant {
  position: relative;
}
.section--slant::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 120px;
  background: inherit;
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

/* ======================== NAVIGATION ======================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
  overflow: visible;
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.nav__brand svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.nav__links a {
  color: var(--silver);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s var(--ease-out);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  background: var(--teal);
  color: var(--navy) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease !important;
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--navy) !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10000;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.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);
}

/* Mobile menu */
.nav__mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9999;
}

.nav__mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.nav__mobile-links a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav__mobile-links a:hover,
.nav__mobile-links a.active {
  color: var(--teal);
}

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn--primary {
  background: var(--teal);
  color: var(--navy);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: var(--navy);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--slate);
}
.btn--secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--teal);
  padding: 0;
  font-weight: 600;
}
.btn--ghost:hover {
  color: var(--white);
}
.btn--ghost .arrow {
  transition: transform 0.3s var(--ease-out);
}
.btn--ghost:hover .arrow {
  transform: translateX(4px);
}

/* ======================== HERO ======================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Gradient mesh background */
.hero__bg::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(0, 229, 204, 0.08) 0%, transparent 70%);
  animation: meshFloat 12s ease-in-out infinite alternate;
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(0, 229, 204, 0.05) 0%, transparent 70%);
  animation: meshFloat 15s ease-in-out infinite alternate-reverse;
}

@keyframes meshFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -20px) scale(1.05); }
}

/* Grain overlay */
.hero__bg .grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}

/* Grid lines (decorative) */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-md);
}

.hero__eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: var(--radius-full);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  margin-bottom: var(--space-md);
  max-width: 700px;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 540px;
  margin-bottom: var(--space-lg);
  color: var(--steel);
  line-height: 1.8;
}

.hero__buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(0, 229, 204, 0.06) 0%, transparent 70%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-sm);
}

.page-hero h1 {
  margin-bottom: var(--space-sm);
}

.page-hero__subtitle {
  font-size: 1.15rem;
  color: var(--steel);
  max-width: 600px;
}

/* ======================== CARDS ======================== */
.card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-color 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 229, 204, 0.15);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--teal-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--teal);
  font-size: 1.3rem;
}

.card h3 {
  margin-bottom: var(--space-xs);
}

.card p {
  color: var(--steel);
  font-size: 0.95rem;
}

/* Card grid */
.card-grid {
  display: grid;
  gap: var(--space-md);
}

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

/* ======================== PRICING CARDS ======================== */
.pricing-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--teal);
  position: relative;
  box-shadow: 0 0 40px rgba(0, 229, 204, 0.08);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
}

.pricing-card__tier {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xs);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.pricing-card__price span {
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--steel);
  font-weight: 400;
}

.pricing-card__features {
  list-style: none;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.pricing-card__features li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--silver);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-card__features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card__best-for {
  font-size: 0.82rem;
  color: var(--steel);
  font-style: italic;
  margin-bottom: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ======================== STEPS / TIMELINE ======================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-dim), transparent);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--navy-mid);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--teal);
}

.step h4 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.step p {
  font-size: 0.88rem;
  color: var(--steel);
}

/* ======================== TESTIMONIAL CARDS ======================== */
.testimonial-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.testimonial-card__stars {
  color: var(--amber);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-card__author {
  font-size: 0.88rem;
}

.testimonial-card__author strong {
  color: var(--white);
  font-weight: 600;
}

/* ======================== PORTFOLIO CARDS ======================== */
.portfolio-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.portfolio-card__image {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.portfolio-card__image .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--steel);
  letter-spacing: 0.05em;
}

.portfolio-card__body {
  padding: var(--space-md);
}

.portfolio-card__body h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.portfolio-card__body p {
  font-size: 0.88rem;
  color: var(--steel);
  margin-bottom: var(--space-sm);
}

.portfolio-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  opacity: 0.5;
  cursor: default;
}

/* ======================== FAQ ACCORDION ======================== */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-item__question:hover {
  color: var(--teal);
}

.faq-item__icon {
  font-size: 1.2rem;
  color: var(--teal);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
  margin-left: var(--space-sm);
}

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

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 300px;
  padding-bottom: var(--space-md);
}

.faq-item__answer p {
  color: var(--steel);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ======================== FOUNDER CARDS ======================== */
.founder-card {
  text-align: center;
}

.founder-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  background: var(--navy-mid);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--teal);
}

.founder-card__avatar-img {
  width: 160px;
  height: 160px;
  border-radius: var(--radius-full);
  border: 3px solid var(--teal);
  object-fit: cover;
  object-position: center center;
  margin: 0 auto var(--space-md);
  box-shadow: 0 0 30px rgba(0, 229, 204, 0.1);
  background: var(--navy-mid);
}

.founder-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 4px;
}

.founder-card__role {
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

.founder-card__bio {
  color: var(--steel);
  font-size: 0.92rem;
  max-width: 400px;
  margin: 0 auto;
}

/* ======================== VALUES ======================== */
.value-item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.value-item h4 {
  color: var(--white);
  margin-bottom: 6px;
}

.value-item h4 span {
  color: var(--teal);
}

.value-item p {
  color: var(--steel);
  font-size: 0.92rem;
}

/* ======================== FORMS ======================== */
.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.form-group label .optional {
  color: var(--steel);
  font-weight: 400;
  font-size: 0.8rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B95A8' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--navy-mid);
  color: var(--white);
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl);
}

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

.form-success h3 {
  color: var(--teal);
  margin-bottom: var(--space-sm);
}

/* ======================== CONTACT INFO ======================== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  background: var(--teal-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.contact-info__text h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-info__text p {
  color: var(--steel);
  font-size: 0.9rem;
  margin: 0;
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 220px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
  font-size: 0.9rem;
  margin-top: var(--space-md);
}

/* ======================== CTA BANNER ======================== */
.cta-banner {
  text-align: center;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 204, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  margin-bottom: var(--space-sm);
  position: relative;
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--steel);
  margin-bottom: var(--space-lg);
  position: relative;
}

/* ======================== ADD-ON BAR ======================== */
.addon-bar {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.addon-bar h4 {
  color: var(--white);
}

.addon-bar p {
  color: var(--steel);
  font-size: 0.9rem;
  margin: 0;
}

/* ======================== NOTE BANNER ======================== */
.note-banner {
  background: var(--teal-subtle);
  border: 1px solid rgba(0, 229, 204, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  margin-top: var(--space-lg);
}

.note-banner p {
  color: var(--silver);
  font-size: 0.92rem;
  margin: 0;
}

/* ======================== PLACEHOLDER BANNER ======================== */
.placeholder-notice {
  background: var(--teal-subtle);
  border: 1px solid rgba(0, 229, 204, 0.15);
  border-radius: var(--radius-sm);
  padding: var(--space-xs) var(--space-md);
  display: inline-block;
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

/* ======================== SOCIAL ICONS ======================== */
.social-icons {
  display: flex;
  gap: var(--space-sm);
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* ======================== FOOTER ======================== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand p {
  color: var(--steel);
  font-size: 0.9rem;
  margin-top: var(--space-sm);
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: var(--steel);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--teal);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.82rem;
  color: var(--steel);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s var(--ease-out);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
}

/* ======================== SCROLL REVEAL ======================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ======================== TWO-COLUMN LAYOUT ======================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

/* ======================== SECTION HEADERS ======================== */
.section-header {
  margin-bottom: var(--space-xl);
}

.section-header--center {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: var(--space-xs);
}

.section-header p {
  color: var(--steel);
  font-size: 1.05rem;
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero { min-height: 90vh; }
  .hero h1 { font-size: 2.2rem; }

  .card-grid--2,
  .card-grid--3,
  .card-grid--4 { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr; gap: var(--space-lg); }
  .two-col { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }

  .pricing-card { padding: var(--space-md); }

  .section { padding: var(--space-xl) 0; }

  .addon-bar {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; justify-content: center; }
}
