/* ==========================================================================
   AiPhotoVideos — light, clean studio design
   Brand: orange #f3a01f · blue #369abc on white
   ========================================================================== */

:root {
  --orange: #f3a01f;
  --orange-deep: #d98a0e;
  --blue: #369abc;
  --blue-deep: #23718c;
  --blue-tint: #eaf5f9;
  --orange-tint: #fef4e3;
  --ink: #122a3a;
  --ink-soft: #4c6172;
  --ink-faint: #7d8fa0;
  --bg: #ffffff;
  --bg-soft: #f5f9fb;
  --line: #e2ebf1;
  --shadow-sm: 0 1px 3px rgba(18, 42, 58, 0.06), 0 4px 14px rgba(18, 42, 58, 0.05);
  --shadow-md: 0 4px 10px rgba(18, 42, 58, 0.06), 0 16px 40px rgba(18, 42, 58, 0.09);
  --radius: 18px;
  --radius-sm: 12px;
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: rgba(243, 160, 31, 0.3); }

/* ---------- layout ---------- */

.wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

section { padding: 88px 0; }

section.tinted { background: var(--bg-soft); }

/* ---------- type ---------- */

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; }

h1 { font-size: clamp(2.3rem, 5.6vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.4rem); margin-bottom: 14px; }
h3 { font-size: 1.2rem; margin-bottom: 8px; font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-tint);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

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

.lede { font-size: 1.16rem; color: var(--ink-soft); max-width: 600px; }

.section-head { max-width: 660px; margin-bottom: 44px; }
.section-head p { color: var(--ink-soft); font-size: 1.03rem; }

.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.96rem;
  font-family: var(--font);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 18px rgba(243, 160, 31, 0.35);
}

.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(243, 160, 31, 0.4);
}

.btn-outline {
  background: #fff;
  color: var(--blue-deep);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- nav ---------- */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.brand img { height: 34px; width: auto; display: block; }

@media (max-width: 480px) {
  .brand img { height: 26px; }
}

.nav-links { display: flex; gap: 2px; margin-left: auto; }

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-tint);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover { background: #d6ecf3; color: var(--blue-deep); }

.nav-social {
  display: flex;
  gap: 2px;
  align-items: center;
  padding: 0 10px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.nav-social a {
  display: inline-flex;
  padding: 8px;
  border-radius: 50%;
  color: var(--ink-faint);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-social a:hover { color: var(--blue); background: var(--blue-tint); }
.nav-social svg { width: 17px; height: 17px; }

.nav-cta { padding: 10px 20px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}

@media (max-width: 1020px) {
  .nav-links, .nav-social, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  .site-nav.open .nav-inner { flex-wrap: wrap; }

  .site-nav.open .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 3;
    margin: 6px 0;
  }

  .site-nav.open .nav-links a { padding: 12px 14px; }

  .site-nav.open .nav-social {
    display: flex;
    order: 4;
    border: none;
    padding: 4px 6px 10px;
  }

  .site-nav.open .nav-cta { display: inline-flex; order: 5; margin: 0 6px 14px; }
}

/* ---------- hero ---------- */

.hero {
  padding: 168px 0 84px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 420px at 88% 8%, rgba(54, 154, 188, 0.10), transparent 65%),
    radial-gradient(600px 400px at 4% 30%, rgba(243, 160, 31, 0.09), transparent 60%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero .lede { margin: 20px 0 30px; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-note {
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-note svg { width: 15px; height: 15px; color: var(--blue); flex: none; }

.hero-visual { display: flex; justify-content: center; }

.hero-video {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d1b24;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 920px) {
  .hero { padding: 140px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-video { max-width: 560px; }
}

/* ---------- subhero (AI video creation) ---------- */

.subhero { padding: 60px 0; }

.subhero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.subhero-title {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  margin-bottom: 12px;
}

.subhero-inner .lede {
  font-size: 1.02rem;
  margin: 0 auto;
}

/* ---------- trust strip ---------- */

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.trust-pill svg { width: 16px; height: 16px; color: var(--orange); flex: none; }

/* ---------- cards ---------- */

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(54, 154, 188, 0.35);
  box-shadow: var(--shadow-md);
}

.card p { color: var(--ink-soft); font-size: 0.96rem; }

.icon-badge {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-tint);
  color: var(--blue);
  margin-bottom: 18px;
}

.icon-badge.warm { background: var(--orange-tint); color: var(--orange-deep); }

.icon-badge svg { width: 24px; height: 24px; }

/* ---------- steps ---------- */

.step-card { position: relative; }

.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 18px;
  box-shadow: 0 6px 14px rgba(54, 154, 188, 0.35);
}

/* ---------- comparison ---------- */

.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.compare-col {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--blue);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compare-col.warm { border-top-color: var(--orange); }

.compare-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 14px;
  background: var(--blue-tint);
  color: var(--blue-deep);
}

.compare-col.warm .compare-tag { background: var(--orange-tint); color: var(--orange-deep); }

.compare-col ul { margin-top: 14px; }

.compare-col ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.compare-col ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--blue-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23369abc' stroke-width='3.2' stroke-linecap='round'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

.compare-col.warm ul li::before {
  background-color: var(--orange-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d98a0e' stroke-width='3.2' stroke-linecap='round'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E");
}

@media (max-width: 800px) {
  .compare-grid { grid-template-columns: 1fr; }
}

/* ---------- platform strip ---------- */

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 9px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-soft);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.chip:hover { border-color: var(--blue); color: var(--blue-deep); transform: translateY(-2px); }

/* ---------- miami banner ---------- */

.miami-band {
  background: linear-gradient(120deg, var(--blue-deep), var(--blue) 55%, #4fb3d4);
  border-radius: var(--radius);
  padding: 52px 48px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.miami-band::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(243, 160, 31, 0.25);
  filter: blur(10px);
}

.miami-band h2 { color: #fff; }
.miami-band p { color: rgba(255, 255, 255, 0.85); }

.miami-band .btn-primary { box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25); }

.miami-stats { display: grid; gap: 14px; position: relative; z-index: 1; }

.miami-stat {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.miami-stat svg { width: 18px; height: 18px; color: var(--orange); flex: none; }

@media (max-width: 820px) {
  .miami-band { grid-template-columns: 1fr; padding: 38px 28px; }
}

/* ---------- FAQ ---------- */

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  font-weight: 700;
  font-size: 1rem;
}

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

.faq-list summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--orange);
  transition: transform 0.25s ease;
  flex: none;
}

.faq-list details[open] summary::after { transform: rotate(45deg); }

.faq-list details p {
  padding: 0 24px 20px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ---------- CTA + booking ---------- */

.cta-band {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 64px 36px;
  box-shadow: var(--shadow-md);
}

.cta-band p { max-width: 540px; margin: 0 auto 28px; color: var(--ink-soft); }

.booking-shell {
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

/* ---------- footer ---------- */

footer {
  background: #10222f;
  color: #cfdce5;
  padding: 60px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7f95a4;
  margin-bottom: 14px;
}

.footer-grid a { display: block; color: #cfdce5; font-size: 0.94rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-grid a:hover { color: #fff; }

.footer-logo {
  display: inline-flex;
  background: #fff;
  padding: 10px 16px;
  border-radius: 12px;
}

.footer-logo img { height: 28px; width: auto; }
.footer-brand p { font-size: 0.94rem; max-width: 320px; margin-top: 12px; color: #9fb2bf; }

.footer-social { display: flex; gap: 10px; margin-top: 18px; }

.footer-social a {
  display: inline-flex;
  padding: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #cfdce5;
  transition: color 0.2s, background 0.2s, transform 0.2s;
}

.footer-social a:hover { color: #fff; background: var(--blue); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #7f95a4;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in { opacity: 1; transform: none; }

.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
