@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════
   CONTACT INFO
   ══════════════════════════════════════ */
.contact-info {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.contact-info a {
  font-size: 15px;
  color: #06b0a4;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.contact-info span {
  font-size: 15px;
  color: #555;
}

/* ══════════════════════════════════════
   GLOBAL FOOTER
   ══════════════════════════════════════ */
.global-footer {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #999;
  width: 100%;
}

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
.fade-in-1 { animation-delay: 0.2s; }
.fade-in-2 { animation-delay: 0.6s; }
.fade-in-3 { animation-delay: 1.0s; }

.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.9s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-fade-delay-1 { transition-delay: 0.15s; }
.scroll-fade-delay-2 { transition-delay: 0.3s; }
.scroll-fade-delay-3 { transition-delay: 0.45s; }

/* ══════════════════════════════════════
   NAV
   ══════════════════════════════════════ */
.nav-wrapper {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
  width: 100%;
}
.nav {
  position: relative;
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-name {
  font-size: 20px;
  font-weight: 300;
  color: #1a1a1a;
  text-decoration: none;
}
.nav-name span {
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.nav-links a:hover {
  color: #1a9e8f;
}
.nav-links a.active {
  color: #1a1a1a;
  font-weight: 500;
}
/* ── Hamburger menu ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav { padding: 20px 28px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 28px;
    gap: 16px;
    border-top: 1px solid #e8e8e8;
  }
  .nav-links.open {
    display: flex;
  }
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  background: #0a0a0a;
  color: #fff;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.hero .label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a9e8f;
  margin-bottom: 24px;
}
.hero .label a {
  color: #1a9e8f;
  text-decoration: none;
}
.hero .label a:hover {
  text-decoration: underline;
}
.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 43px;
  font-weight: 400;
  line-height: 53px;
  margin-bottom: 28px;
  color: #fff;
}
.hero .subtitle {
  font-size: 20px;
  line-height: 36px;
  color: #b0b0b0;
  max-width: 620px;
  margin-bottom: 40px;
}

/* ── Meta bar ── */
.meta-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  padding-top: 28px;
  border-top: 1px solid #333;
}
.meta-bar dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a9e8f;
  margin-bottom: 4px;
}
.meta-bar dd {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.5;
}

/* ── iPhone mockup ── */
.iphone-frame {
  position: relative;
  width: 300px;
  margin: 0 auto;
  border-radius: 40px;
  border: 6px solid #333;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  aspect-ratio: 9 / 19.5;
}
.iphone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; padding: 40px 28px; }
  .iphone-frame { width: 240px; margin-top: 20px; }
}

/* ══════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════ */
section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px;
}

/* ── Section label / eyebrow ── */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a9e8f;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #1a9e8f;
}

/* ── Section headings ── */
section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* ── Section body text ── */
section p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 600px;
  margin-bottom: 16px;
}

/* ══════════════════════════════════════
   LAYOUT: TWO-COLUMN
   ══════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
  border-left: none;
}
.two-col > :last-child {
  border-left: 1px solid #e0e0e0;
  padding-left: 60px;
}
.two-col.equal {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.two-col.equal > :last-child {
  border-left: none;
  padding-left: 0;
}

@media (max-width: 768px) {
  .two-col, .two-col.equal { display: flex !important; flex-direction: column; grid-template-columns: 1fr; }
  .two-col > div, .two-col.equal > div { width: 100%; }
  .two-col > :last-child { border-left: none; padding-left: 0; }
  .two-col.img-first { flex-direction: column-reverse; }
  .two-col.img-first > div { width: 100%; }
  section { padding: 40px 28px; }
  section p { max-width: 100%; }
  .meta-bar { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  section h2 { font-size: 24px; }
  .hero h1 { font-size: 30px; line-height: 38px; }
  .hero .subtitle { font-size: 16px; line-height: 28px; }
  .phone-scroll { width: 100%; height: 400px; }
  .stat .number { font-size: 32px; }
  .results-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .contact-info { flex-direction: column; gap: 0; }
  .contact-info .dot { display: none; }
  .global-footer { flex-direction: column; gap: 0; line-height: 1.4; }
  .global-footer .dot { display: none; }
}

/* ══════════════════════════════════════
   STATS
   ══════════════════════════════════════ */
.stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 0;
}
.stat { min-width: 140px; }
.stat .number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: #1a9e8f;
  line-height: 1;
  margin-bottom: 6px;
}
.stat .desc {
  font-size: 13px;
  color: #888;
  line-height: 1.4;
}

/* ══════════════════════════════════════
   TRADEOFF CALLOUT
   ══════════════════════════════════════ */
.tradeoff {
  border-left: 3px solid #1a9e8f;
  padding: 20px 24px;
  margin-top: 64px;
  background: #f8f8f8;
  border-radius: 0 8px 8px 0;
}
.tradeoff .tradeoff-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a9e8f;
  margin-bottom: 8px;
}
.tradeoff p { color: #555; max-width: 100%; margin-bottom: 0; }

/* ══════════════════════════════════════
   RESULTS GRID
   ══════════════════════════════════════ */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid #e0e0e0;
  padding-top: 32px;
}
.results-col {
  padding: 0 32px;
  border-left: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.results-col:first-child {
  border-left: none;
  padding-left: 0;
}
.results-note {
  font-size: 13px;
  color: #999;
  font-style: italic;
}

@media (max-width: 768px) {
  .results-grid { grid-template-columns: 1fr; gap: 32px; }
  .results-col { border-left: none; padding: 0; border-top: 1px solid #e0e0e0; padding-top: 24px; }
  .results-col:first-child { border-top: none; padding-top: 0; }
}

/* ══════════════════════════════════════
   CONTENT EYEBROW (inline, no line)
   ══════════════════════════════════════ */
.content-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a9e8f;
  margin-bottom: 12px;
}

/* ══════════════════════════════════════
   INLINE RESULTS CARD
   ══════════════════════════════════════ */
.results-inline {
  border-left: 1px solid #1a9e8f;
  padding: 0 24px;
  margin-top: 32px;
}
.results-inline .results-inline-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 16px;
}
.results-inline .result-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
}
.results-inline .result-row .number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #1a1a1a;
  min-width: 50px;
}
.results-inline .result-row .desc {
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}
.results-inline .results-note {
  font-size: 12px;
  color: #999;
  font-style: italic;
  margin-top: 8px;
}

/* ══════════════════════════════════════
   QUOTE
   ══════════════════════════════════════ */
.quote {
  margin-top: 32px;
}
.quote blockquote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: #1a9e8f;
  line-height: 1.3;
  margin-bottom: 8px;
}
.quote cite {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-style: normal;
  color: #1a9e8f;
}

/* ══════════════════════════════════════
   DIVIDERS
   ══════════════════════════════════════ */
.divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
.divider hr {
  border: none;
  border-top: 1px solid #e8e8e8;
}

.section-divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
.section-divider hr {
  border: none;
  border-top: 1px solid #e8e8e8;
}

@media (max-width: 768px) {
  .divider { padding: 0 28px; }
  .section-divider { padding: 0 28px; }
}

/* ══════════════════════════════════════
   REFLECTION
   ══════════════════════════════════════ */
.reflection p {
  max-width: 640px;
}

/* ══════════════════════════════════════
   STRATEGIC PILLARS
   ══════════════════════════════════════ */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.pillar h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.pillar-ux h3 { border-bottom: 3px solid #1a9e8f; }
.pillar-pricing h3 { border-bottom: 3px solid #f59e0b; }
.pillar-custom h3 { border-bottom: 3px solid #7c4dff; }
.pillar p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  max-width: 100%;
}

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

/* ══════════════════════════════════════
   TIMELINE (IMAGE)
   ══════════════════════════════════════ */
.timeline {
  margin-top: 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.timeline img {
  display: block;
  width: 100%;
  min-width: 900px;
  height: auto;
}

/* ══════════════════════════════════════
   IMAGE SHOWCASE
   ══════════════════════════════════════ */
.img-showcase { margin: 24px 0; border-radius: 8px; overflow: hidden; }
.img-showcase img { width: 100%; height: auto; display: block; border-radius: 8px; }
.img-caption { font-size: 12px; color: #999; text-align: center; margin-top: 8px; letter-spacing: 1px; text-transform: uppercase; }

/* ══════════════════════════════════════
   BEFORE / AFTER CARD
   ══════════════════════════════════════ */
.ba-card {
  background: #0a0a0a;
  border-radius: 16px;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
  justify-items: center;
}
.ba-card:has(.ba-col:only-child) {
  grid-template-columns: 1fr;
}
.ba-card .ba-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ba-card .ba-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a9e8f;
  margin-bottom: 16px;
}
.ba-card img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  border-radius: 8px;
}
.ba-card[style*="height: 100%"] {
  align-content: center;
}

@media (max-width: 768px) {
  .ba-card { grid-template-columns: 1fr; padding: 24px 16px !important; }
  .ba-card img { max-width: 100%; }
}

/* ══════════════════════════════════════
   SCROLLABLE PHONE FRAME
   ══════════════════════════════════════ */
.phone-scroll {
  width: 242px;
  height: 508px;
  border-radius: 28px;
  border: 5px solid #333;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.phone-scroll::-webkit-scrollbar {
  display: none;
}
.phone-scroll img {
  width: 100%;
  display: block;
}

/* ══════════════════════════════════════
   PHONE SHOWCASE PANEL
   ══════════════════════════════════════ */
.phone-showcase {
  max-width: 1200px;
  margin: -32px auto 0;
  padding: 0 60px 60px;
}
.phone-showcase-inner {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 48px 40px 40px;
}
.phone-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.phone-showcase-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
.phone-showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.phone-showcase-item img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  border-radius: 12px;
}
.phone-showcase-item .phone-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a9e8f;
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .phone-showcase { padding: 0 28px 40px; }
  .phone-showcase-inner { padding: 32px 20px 28px; }
  .phone-showcase-grid,
  .phone-showcase-grid-5 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .phone-showcase-item img { max-width: 200px; }
}
