/* ============================================================
   MAKO DIGITAL — styles.css
   ============================================================ */

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

:root {
  --navy:   #0a0f1e;
  --navy2:  #0d1530;
  --navy3:  #111827;
  --blue:   #3b82f6;
  --blue2:  #60a5fa;
  --blue3:  #1a2540;
  --slate:  #94a3b8;
  --white:  #ffffff;
  --gold:   #fbbf24;
  --font:   'Poppins', sans-serif;
  --radius: 1.5rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(59,130,246,.3); }

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

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

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Utility ---- */
.gradient-text {
  background: linear-gradient(90deg, var(--blue), var(--blue2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--blue2);
  margin-bottom: 1rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 9999px;
  padding: .85rem 2rem;
  cursor: pointer;
  transition: all .2s ease;
  border: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 20px rgba(59,130,246,.4);
}
.btn-primary:hover {
  background: var(--blue2);
  box-shadow: 0 0 30px rgba(59,130,246,.6);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.2);
  box-shadow: none;
}
.btn-outline:hover { background: rgba(255,255,255,.08); }

.btn-lg { font-size: 1.125rem; padding: 1rem 2.25rem; }
.btn-sm { font-size: .875rem; padding: .6rem 1.25rem; }
.btn-block { width: 100%; justify-content: center; border-radius: var(--radius); }

.icon-arrow { width: 1.1em; height: 1.1em; flex-shrink: 0; transition: transform .2s; }
.btn:hover .icon-arrow { transform: translateX(3px); }

/* ---- Sections ---- */
.section { padding: 6rem 0; }
.section-dark { background: var(--navy); }
.section-mid  { background: var(--navy2); }
.border-y {
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  margin-bottom: .75rem;
  line-height: 1.15;
}
.section-header p {
  font-size: 1.2rem;
  color: var(--slate);
  max-width: 42rem;
  margin: 0 auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background .3s, padding .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(10,15,30,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom-color: rgba(255,255,255,.05);
}

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

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.02em;
  cursor: pointer;
}
.dot { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: #cbd5e1;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 1rem 1.5rem;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: .65rem 0;
  font-size: .95rem;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-cta { color: var(--blue) !important; font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(100px);
  pointer-events: none;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: var(--blue);
  top: 15%; right: 15%;
  opacity: .18;
  animation: pulse 4s ease-in-out infinite;
}
.hero-blob-2 {
  width: 320px; height: 320px;
  background: var(--blue2);
  bottom: 20%; left: 15%;
  opacity: .1;
}

@keyframes pulse {
  0%, 100% { opacity: .18; }
  50%       { opacity: .28; }
}

.shark-fin {
  position: absolute;
  background: rgba(59,130,246,.1);
  backdrop-filter: blur(4px);
  clip-path: polygon(70% 0%, 0% 100%, 100% 100%);
}
.shark-fin-1 { width: 120px; height: 180px; bottom: 2.5rem; right: 10%; }
.shark-fin-2 { width:  80px; height: 120px; bottom: 0;       right:  5%; background: rgba(59,130,246,.18); }

.hero-content { position: relative; z-index: 2; max-width: 56rem; }

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}

.tagline {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--slate);
  max-width: 40rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy2);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: .4rem;
}
.stat-label { color: var(--slate); font-weight: 500; font-size: .95rem; }

/* ============================================================
   INDUSTRY STATS
   ============================================================ */
.industry-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
.istat-card {
  background: var(--navy3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color .25s;
}
.istat-card:hover { border-color: rgba(59,130,246,.35); }
.istat-number {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(180deg, var(--blue), var(--blue2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .75rem;
}
.istat-title { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
.istat-card p { color: var(--slate); font-size: .9rem; line-height: 1.6; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.about-copy {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: #cbd5e1;
  font-weight: 300;
  line-height: 1.8;
}

/* ============================================================
   MEET THE FOUNDER
   ============================================================ */
.founder-section { position: relative; overflow: hidden; }
.founder-glow {
  position: absolute;
  top: 50%; right: 0;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: var(--blue);
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(150px);
  opacity: .1;
  pointer-events: none;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.founder-photo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 28rem;
}
.founder-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 4px solid rgba(59,130,246,.4);
  box-shadow: 0 0 60px rgba(59,130,246,.2);
}
.founder-badge {
  position: absolute;
  bottom: -1rem; right: -1rem;
  background: var(--blue);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: .5rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}

.founder-copy h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.75rem;
}
.founder-bio { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.founder-bio p { color: var(--slate); font-size: 1.05rem; line-height: 1.75; }
.founder-guarantee { color: var(--white) !important; font-weight: 600 !important; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 1.75rem;
  left: 18%; right: 18%;
  height: 1px;
  border-top: 2px dashed rgba(255,255,255,.08);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-number {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  outline: 8px solid var(--navy2);
  position: relative;
  z-index: 2;
}
.step-icon {
  width: 4rem; height: 4rem;
  background: var(--navy3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.step-icon svg { width: 2rem; height: 2rem; stroke: var(--blue2); }
.process-step h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: .75rem; }
.process-step p { color: var(--slate); line-height: 1.7; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}
.service-card {
  background: var(--navy3);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px -10px rgba(59,130,246,.25);
}
.service-icon {
  width: 3.5rem; height: 3.5rem;
  background: rgba(59,130,246,.1);
  border-radius: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background .25s;
}
.service-card:hover .service-icon { background: rgba(59,130,246,.2); }
.service-icon svg { width: 1.75rem; height: 1.75rem; stroke: var(--blue2); }
.service-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; }
.service-card p { color: var(--slate); line-height: 1.75; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--navy3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.stars {
  display: flex;
  gap: .25rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.stars svg { width: 1.1rem; height: 1.1rem; }
.testimonial-card blockquote {
  color: #cbd5e1;
  font-style: italic;
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}
.testimonial-author strong { display: block; color: var(--white); font-weight: 700; }
.testimonial-author span { color: var(--blue); font-size: .9rem; font-weight: 500; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(90deg, #1e3a5f, #0a1628);
  border-top: 1px solid rgba(59,130,246,.3);
  border-bottom: 1px solid rgba(59,130,246,.3);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: var(--blue);
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(150px);
  opacity: .2;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-inner h2 { font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.cta-inner p { font-size: 1.2rem; color: #bfdbfe; max-width: 36rem; margin: 0 auto 2.5rem; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: border-color .25s;
}
.why-card:hover { border-color: rgba(59,130,246,.3); }
.why-icon { width: 2.5rem; height: 2.5rem; stroke: var(--blue2); margin-bottom: 1.5rem; }
.why-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; }
.why-card p { color: var(--slate); font-size: .95rem; line-height: 1.65; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-wrapper { max-width: 72rem; margin: 0 auto; display: flex; flex-direction: column; gap: 2.5rem; }

.pricing-group-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--blue2);
  margin-bottom: 1rem;
  padding-left: .25rem;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pricing-card {
  background: var(--navy3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: .25rem; }
.billing-note { color: var(--slate); font-size: .85rem; margin-bottom: 1rem; }

.pricing-card-featured {
  background: linear-gradient(180deg, var(--blue3), var(--navy2));
  border: 2px solid var(--blue);
  box-shadow: 0 0 30px rgba(59,130,246,.2);
}
.pricing-card-pro-flex { border-color: rgba(59,130,246,.3); }

.plan-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--blue);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 9999px;
}
.plan-badge-subtle {
  background: rgba(59,130,246,.2);
  color: var(--blue2);
  border: 1px solid rgba(59,130,246,.3);
}

.plan-price { margin-bottom: 1.5rem; }
.plan-price .price { font-size: 3rem; font-weight: 700; }
.plan-price .per { color: var(--slate); font-size: .95rem; margin-left: .3rem; }

.features-upgrade-note {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue2);
  margin-bottom: .75rem;
}

.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}
.features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: #cbd5e1;
}
.features li svg { width: 1rem; height: 1rem; stroke: var(--blue); flex-shrink: 0; }
.feature-highlight { color: var(--white) !important; font-weight: 600; }
.feature-highlight svg { stroke: var(--blue2) !important; }

.enterprise-card {
  background: var(--navy2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.enterprise-card h3 { font-size: 1.75rem; font-weight: 700; }
.enterprise-card p { color: var(--slate); font-size: 1.05rem; max-width: 36rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { position: relative; overflow: hidden; }
.contact-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; max-width: 48rem;
  height: 400px;
  background: var(--blue);
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(150px);
  opacity: .1;
  pointer-events: none;
}
.contact-inner { max-width: 40rem; margin: 0 auto; position: relative; z-index: 2; }

.contact-form {
  background: var(--navy3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 500; color: #cbd5e1; margin-bottom: .5rem; }
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .75rem;
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  padding: .75rem 1rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #4b5563; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}

.form-success {
  display: none;
  text-align: center;
  color: var(--blue2);
  font-weight: 600;
  margin-top: 1rem;
  font-size: .95rem;
}
.form-success.visible { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #050810;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 3rem 0;
}
.footer-inner { text-align: center; }
.footer-logo { font-size: 1.35rem; font-weight: 700; margin-bottom: 1rem; }
.footer-copy { color: var(--slate); font-size: .875rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content h1 { font-size: 2.5rem; }

  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }

  .industry-stats-grid { grid-template-columns: 1fr; max-width: 30rem; }

  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo-wrap { max-width: 22rem; margin: 0 auto; }

  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }

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

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

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

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

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2rem; }
  .contact-form { padding: 1.5rem; }
}
