/* ===================================
   STYLE.CSS — FINAL VERSION
=================================== */

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

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

:root {
  --bg1: #020617;
  --bg2: #07122e;
  --bg3: #0b1738;
  --white: #ffffff;
  --text: #c7d2fe;
  --cyan: #45e7ff;
  --blue: #2f6bff;
  --glass: rgba(255,255,255,0.05);
  --line: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  background: linear-gradient(135deg, var(--bg1), var(--bg2), var(--bg3));
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .35;
  z-index: -1;
}
body::before { top: 50px; left: -120px; background: var(--cyan); }
body::after  { right: -120px; bottom: 60px; background: var(--blue); }

canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

a { color: inherit; }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 7%;
  background: rgba(5,10,25,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: .5px;
  color: #fff;
  text-shadow: 0 0 18px rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  transition: .3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(69,231,255,.75);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0%; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transition: .3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1100;
  box-shadow: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger:hover { transform: none; box-shadow: none; }
.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); }

/* ── BUTTONS ── */
.btn,
.hire-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: none;
  outline: none;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 22px rgba(69,231,255,.35);
  transition: .3s ease;
  font-family: inherit;
}
.btn:hover,
.hire-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 32px rgba(69,231,255,.55);
}

.btn-ghost {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s ease;
  font-family: inherit;
  cursor: pointer;
  background: transparent;
  box-shadow: none;
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(69,231,255,.2);
}

/* ── SECTIONS ── */
section {
  padding: 90px 7%;
  position: relative;
}

.section-tag {
  display: block;
  text-align: center;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-title {
  text-align: center;
  font-size: 54px;
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 0 0 22px rgba(255,255,255,.12);
}

.section-sub {
  max-width: 760px;
  margin: 0 auto 45px;
  text-align: center;
  color: var(--text);
  font-size: 18px;
  line-height: 1.8;
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
}

.hero-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--glass);
  color: #dffcff;
  font-size: 14px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 72px;
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 18px;
}

.hero-title span {
  background: linear-gradient(90deg, var(--cyan), #ffffff, var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
}

.hero-card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 0 28px rgba(69,231,255,.14);
}

.hero-card img {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

.profile-box { padding: 40px; text-align: center; }
.profile-box h2 { font-size: 38px; margin-bottom: 15px; }
.profile-box p  { color: #cbd5e1; line-height: 1.7; margin-bottom: 25px; }

.mini-stats { display: grid; gap: 12px; }
.mini-stats div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── STATS ── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.stat {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  text-align: center;
  transition: .35s;
}
.stat:hover { transform: translateY(-8px); box-shadow: 0 0 26px rgba(69,231,255,.18); }
.stat h3 { font-size: 42px; color: var(--cyan); margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.stat p  { color: var(--text); font-size: 16px; }

/* ── PROOF BAR ── */
.proof-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 2rem auto;
  max-width: 900px;
}
.proof-item { text-align: center; }
.proof-item strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cyan);
}
.proof-item span { font-size: 13px; color: var(--text); }

/* ── GRID CARDS ── */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card,
.result-box {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  transition: .35s;
  display: flex;
  flex-direction: column;
}
.card:hover,
.result-box:hover { transform: translateY(-8px); box-shadow: 0 0 26px rgba(69,231,255,.18); }

.icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 24px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  margin-bottom: 14px;
  flex-shrink: 0;
}

.card h3 { font-size: 24px; margin-bottom: 10px; }
.card p  { color: var(--text); line-height: 1.7; flex: 1; }

.card-cta {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
  transition: opacity 0.2s;
}
.card-cta:hover { opacity: 0.7; }

.result-box h2 { font-size: 42px; color: var(--cyan); margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.result-box span { color: var(--text); line-height: 1.7; }

/* ── CONTACT FORM ── */
.contact-wrap { max-width: 780px; margin: auto; }
form { display: grid; gap: 16px; }

input, textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 16px;
  outline: none;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus {
  border-color: rgba(69,231,255,.45);
  box-shadow: 0 0 0 4px rgba(69,231,255,.08);
}
textarea { min-height: 150px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #9ca3af; }

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem;
  color: #4ade80;
  font-size: 1.1rem;
  font-weight: 600;
}
.form-success i { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 5rem 7%; max-width: 1200px; margin: 0 auto; }

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.t-card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: .35s;
}
.t-card:hover { transform: translateY(-6px); box-shadow: 0 0 26px rgba(69,231,255,.15); border-color: rgba(69,231,255,.2); }
.t-stars { color: #f5a623; font-size: 14px; letter-spacing: 2px; }
.t-text  { font-size: 14px; color: var(--text); line-height: 1.75; flex: 1; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(69,231,255,0.1);
  color: var(--cyan);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(69,231,255,0.2);
}
.t-author strong { display: block; font-size: 13px; color: #fff; }
.t-author span   { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── INSTAGRAM STATS ── */
.insta-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.insta-stat { text-align: center; }
.insta-stat strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--cyan);
}
.insta-stat span { font-size: 11px; color: var(--text); }

/* ── PORTFOLIO NOTE ── */
.portfolio-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 13px;
  color: var(--text);
}
.portfolio-note a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}
.portfolio-note a:hover { text-decoration: underline; }

/* ── CERTIFICATE GRID ── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin: 1.5rem auto;
  max-width: 900px;
}
.cert-grid img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  transition: .35s;
}
.cert-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(69,231,255,.15);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ── FOOTER SOCIAL ICONS ── */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}
.footer-socials a {
  color: var(--text);
  font-size: 18px;
  transition: color 0.3s;
  text-decoration: none;
}
.footer-socials a:hover { color: var(--cyan); }

/* ── CASE STUDY ── */
.case-bio h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); margin-bottom: 15px; line-height: 1.2; }
.case-bio p  { line-height: 1.9; color: var(--text); margin-bottom: 20px; font-size: clamp(15px, 2vw, 17px); }
.case-highlights { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.case-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(69,231,255,0.25);
  background: rgba(69,231,255,0.07);
  color: var(--cyan); font-size: 13px; font-weight: 600;
}

/* ── BOTTOM CTA ── */
.services-cta, .results-cta { text-align: center; padding: 3rem 7% 5rem; }
.services-cta h2, .results-cta h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 0.75rem; }
.services-cta p, .results-cta p   { color: var(--text); font-size: 17px; margin-bottom: 2rem; line-height: 1.7; }
.services-cta .hero-actions, .results-cta .hero-actions { justify-content: center; }

/* ── ABOUT BIO ── */
.about-bio h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 15px; line-height: 1.2; }
.about-bio p  { line-height: 1.9; color: var(--text); margin-bottom: 20px; font-size: clamp(15px, 2vw, 17px); }

/* ── MOBILE STICKY CTA ── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(2,6,23,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 0.9rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  z-index: 998;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.sticky-cta a {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  color: #020617;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-weight: 700; font-size: 13px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 0 16px rgba(69,231,255,.35);
}

/* ── FOOTER ── */
footer { margin-top: 20px; padding: 35px 7%; text-align: center; color: var(--text); border-top: 1px solid var(--line); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #061022; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--cyan), var(--blue)); border-radius: 20px; }

/* ════════════════════════
   TABLET — max 992px
════════════════════════ */
@media (max-width: 992px) {
  .hero-wrap  { grid-template-columns: 1fr; }
  .hero       { min-height: auto; }
  .hero-title { font-size: 56px; }
  .grid       { grid-template-columns: repeat(2, 1fr); }
  .stats      { grid-template-columns: repeat(3, 1fr); }
  .t-grid     { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════
   MOBILE — max 768px
════════════════════════ */
@media (max-width: 768px) {
  .hamburger { display: flex; z-index: 1200; }
  .nav-links { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: min(82vw, 340px);
    height: 100vh;
    background: rgba(2, 6, 23, 0.96);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-left: 1px solid rgba(255,255,255,0.08);
    padding: 70px 24px 40px;
    gap: 14px;
    z-index: 1100;
    overflow-y: auto;
    animation: slideMenu .28s ease forwards;
    box-shadow: -10px 0 40px rgba(0,0,0,0.35), 0 0 30px rgba(69,231,255,0.08);
  }

  @keyframes slideMenu {
    from { opacity: 0; transform: translateX(100%); }
    to   { opacity: 1; transform: translateX(0); }
  }

  .nav-links.open a {
    display: flex; align-items: center; width: 100%;
    min-height: 54px; padding: 0 18px; border-radius: 16px;
    font-size: 16px; font-weight: 700; text-decoration: none;
    color: #ffffff !important;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all .25s ease;
    opacity: 1 !important; visibility: visible !important;
    letter-spacing: .3px;
  }
  .nav-links.open a:hover,
  .nav-links.open a.active {
    color: var(--cyan) !important;
    background: rgba(69,231,255,0.08);
    border-color: rgba(69,231,255,0.18);
    transform: translateX(4px);
    box-shadow: 0 0 18px rgba(69,231,255,.12);
  }
  .nav-links.open a::after { display: none; }

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

  .hire-btn { display: none; }

  .sticky-cta {
    display: flex;
    padding: 0.9rem 1.2rem calc(0.9rem + env(safe-area-inset-bottom));
  }
  footer { padding-bottom: 5.5rem; }
  .navbar { padding: 18px 20px; -webkit-backdrop-filter: blur(14px); }
  .logo { font-size: 28px; }
  section { padding: 75px 20px; }

  .hero-wrap { grid-template-columns: 1fr; text-align: center; gap: 26px; }
  .badge { margin: 0 auto 18px; }
  .hero-title { font-size: clamp(2rem, 9vw, 3rem); line-height: 1.15; }
  .hero-text { font-size: 16px; line-height: 1.9; }

  .hero-actions { flex-direction: column; gap: 12px; align-items: center; }
  .hero-actions .btn,
  .hero-actions .btn-ghost {
    width: 100%; max-width: 330px;
    justify-content: center; min-height: 48px;
  }

  .hero-card { display: block !important; }
  .profile-box { padding: 24px; margin-top: 18px; }
  .profile-box h2 { font-size: 28px; }
  .profile-box p { font-size: 15px; margin-bottom: 18px; }
  .mini-stats div { padding: 12px; font-size: 14px; }

  .section-title { font-size: clamp(2rem, 6vw, 3rem); }
  .section-sub { font-size: 16px; }

  .stats, .grid, .t-grid { grid-template-columns: 1fr; gap: 18px; }
  .stat, .card, .result-box, .t-card {
    padding: 22px; will-change: transform; transform: translateZ(0);
  }
  .stat h3, .result-box h2 { font-size: 36px; }

  input, textarea { font-size: 15px; }
  .testimonials { padding: 3rem 20px; }

  .about-bio, .case-bio { text-align: center; }
  .about-bio .badge, .case-bio .badge { margin: 0 auto 16px; display: inline-block; }
  .case-highlights { justify-content: center; }

  .proof-bar { gap: 1.2rem; padding: 1.5rem; }
  .proof-item strong { font-size: 1.4rem; }

  .whatsapp-float { bottom: 75px; right: 16px; width: 50px; height: 50px; font-size: 1.4rem; }
  .cert-grid { grid-template-columns: 1fr; }
  .insta-stats { gap: 12px; }

  body::before, body::after { filter: blur(70px); opacity: .22; }
  img { max-width: 100%; height: auto; }
  .btn:active, .btn-ghost:active { transform: scale(.98); }
}

/* ════════════════════════
   SMALL MOBILE — max 480px
════════════════════════ */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .section-title { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }
  .stat h3, .result-box h2 { font-size: 28px; }
  .proof-bar { gap: 1rem; padding: 1.2rem; }
  .proof-item strong { font-size: 1.2rem; }
  .profile-box h2 { font-size: 22px; }
  .whatsapp-float { width: 46px; height: 46px; font-size: 1.3rem; bottom: 70px; right: 12px; }
}

/* ════════════════════════
   PRINT STYLES
════════════════════════ */
@media print {
  body::before, body::after, canvas, .sticky-cta, .whatsapp-float, .hamburger, .navbar {
    display: none !important;
  }
  body { background: white !important; color: black !important; }
  section { padding: 20px !important; }
  .card, .stat, .t-card, .result-box {
    border: 1px solid #ccc !important;
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
  a { color: #2f6bff !important; }
}
