/* ============================================================
   Webbzi — Playful Redesign  ·  MOBILE FIRST
   Bold editorial · flat color blocks · big condensed type
   ============================================================ */

/* ---- Fonts ----
   Bebas Neue: display (free, Google Fonts).
   TT Neoris: body — COMMERCIAL (TypeType). When licensed, drop the
   webfont files in /fonts and uncomment the @font-face below; it will
   override the Figtree free fallback automatically. */
/*
@font-face {
  font-family: 'TT Neoris';
  src: url('../fonts/TTNeoris-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'TT Neoris';
  src: url('../fonts/TTNeoris-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
*/

:root {
  --cream:  #f4f1e8;
  --blue:   #1e7fc4;
  --yellow: #ffce1f;
  --pink:   #d6469b;
  --plum:   #34123a;
  --green:  #1e9e7b;
  --orange: #e8502c;
  --ink:    #1c1226;
  --white:  #ffffff;

  --display: 'Bebas Neue', 'Anton', sans-serif;
  --body: 'TT Neoris', 'Figtree', system-ui, -apple-system, sans-serif;

  --maxw: 1200px;
  --radius: 24px;
  --bw: 3px;            /* outline weight */
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }

.display {
  font-family: var(--display);
  font-weight: 400; line-height: 0.9;
  letter-spacing: 0.01em; text-transform: uppercase;
}

/* ============================================================
   Nav  (mobile: logo + burger)
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(244, 241, 232, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: var(--bw) solid var(--ink);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 7px; }
.nav-logo img:first-child { height: 26px; width: auto; }
.nav-logo img:last-child { height: 16px; width: auto; }

.nav-links { display: none; }
.nav-right-m .nav-cta { display: none; }

.burger {
  width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--yellow); border: var(--bw) solid var(--ink); border-radius: 12px;
  box-shadow: 3px 3px 0 var(--ink); cursor: pointer;
}
.burger svg { width: 22px; height: 22px; }
.burger line { stroke: var(--ink); stroke-width: 2.5; stroke-linecap: round; }

/* Mobile menu overlay */
.mmenu {
  position: fixed; inset: 64px 0 auto 0; z-index: 55;
  background: var(--blue);
  border-bottom: var(--bw) solid var(--ink);
  transform: translateY(-120%); transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  padding: 18px;
}
.mmenu.open { transform: translateY(0); }
.mmenu a {
  display: block; font-family: var(--display); text-transform: uppercase;
  font-size: 34px; color: var(--yellow); padding: 8px 0;
}
.mmenu .mcta {
  display: inline-block; margin-top: 10px; font-family: var(--body);
  font-size: 16px; font-weight: 700; text-transform: none;
  background: var(--pink); color: var(--white);
  border: var(--bw) solid var(--ink); border-radius: 999px; padding: 12px 24px;
  box-shadow: 4px 4px 0 var(--ink);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 16px;
  padding: 13px 24px; border-radius: 999px;
  border: var(--bw) solid var(--ink);
  background: var(--yellow); color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  cursor: pointer;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-pink { background: var(--pink); color: var(--white); }
.btn-white { background: var(--white); }
.btn-blue { background: var(--blue); color: var(--white); }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding: 22px 0 36px; }
.hero-block {
  position: relative; background: var(--blue);
  border: var(--bw) solid var(--ink); border-radius: var(--radius);
  overflow: hidden; display: grid; grid-template-columns: 1fr;
}
.hero-left { padding: 32px 24px; }
.hero-eyebrow {
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  font-size: 12px; color: var(--white); opacity: 0.85; margin-bottom: 16px;
}
.hero-title {
  font-family: var(--display); text-transform: uppercase; line-height: 0.86;
  font-size: clamp(58px, 17vw, 88px); color: var(--yellow);
}
.hero-title .pink { color: var(--pink); }
.hero-sub { color: var(--white); font-size: 17px; max-width: 32ch; margin: 22px 0 22px; font-weight: 500; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-right {
  position: relative; background: var(--pink);
  border-top: var(--bw) solid var(--ink);
  min-height: 240px; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.blob { position: absolute; border-radius: 50%; border: var(--bw) solid var(--ink); }
.blob.b1 { width: 130px; height: 130px; background: var(--yellow); top: -30px; right: -20px; }
.blob.b2 { width: 90px; height: 90px; background: var(--green); bottom: 20px; left: -20px; }
.hero-wave {
  width: 50%; max-width: 220px; position: relative; z-index: 2;
  filter: drop-shadow(5px 5px 0 var(--ink));
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero { padding: 22px 0 8px; }
.page-hero-block {
  border: var(--bw) solid var(--ink); border-radius: var(--radius);
  padding: 36px 24px; color: var(--white);
}
.page-hero-block.bg-blue { background: var(--blue); }
.page-hero-block.bg-pink { background: var(--pink); }
.page-hero-block.bg-green { background: var(--green); }
.page-hero .kicker { font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; color: var(--yellow); margin-bottom: 12px; }
.page-hero h1 { font-family: var(--display); text-transform: uppercase; font-size: clamp(52px, 15vw, 96px); line-height: 0.88; }
.page-hero p { margin-top: 14px; font-size: 17px; font-weight: 500; max-width: 40ch; }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 48px 0; }
.section-head { margin-bottom: 28px; }
.section-head .kicker { font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 13px; color: var(--orange); margin-bottom: 8px; }
.section-head h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(40px, 11vw, 76px); line-height: 0.9; }

/* Service cards */
.cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
.card {
  border: var(--bw) solid var(--ink); border-radius: var(--radius);
  padding: 26px 22px; min-height: 200px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--ink); }
.card .num { font-family: var(--display); font-size: 36px; opacity: 0.5; }
.card h3 { font-family: var(--display); text-transform: uppercase; font-size: 32px; line-height: 0.95; margin: 8px 0; }
.card p { font-size: 15px; font-weight: 500; }
.card.c-blue { background: var(--blue); color: var(--white); }
.card.c-yellow { background: var(--yellow); color: var(--ink); }
.card.c-pink { background: var(--pink); color: var(--white); }
.card.c-green { background: var(--green); color: var(--white); }
.card.c-orange { background: var(--orange); color: var(--white); }
.card.c-plum { background: var(--plum); color: var(--white); }

/* ============================================================
   Marquee
   ============================================================ */
.marquee { background: var(--ink); color: var(--cream); border-top: var(--bw) solid var(--ink); border-bottom: var(--bw) solid var(--ink); overflow: hidden; padding: 14px 0; }
.marquee-track { display: flex; gap: 36px; white-space: nowrap; font-family: var(--display); text-transform: uppercase; font-size: 26px; animation: scroll 22s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 36px; }
.marquee .dot { color: var(--yellow); }
@keyframes scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ============================================================
   Projects
   ============================================================ */
.proj-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.proj { border: var(--bw) solid var(--ink); border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: 5px 5px 0 var(--ink); transition: transform 0.15s ease, box-shadow 0.15s ease; }
.proj:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--ink); }
/* Wide frame (~2.3:1) + cover from the top: every screenshot fills the frame
   edge-to-edge (identical margins for all), full width shown so side text isn't
   cut, only the page bottom is trimmed. */
.proj-cover { aspect-ratio: 23/10; overflow: hidden; border-bottom: var(--bw) solid var(--ink); background: var(--cream); }
.proj-cover img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.4s ease; }
.proj:hover .proj-cover img { transform: scale(1.03); }
.proj-meta { padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.proj-meta h3 { font-family: var(--display); text-transform: uppercase; font-size: 26px; line-height: 1; }
.proj-meta span { font-weight: 700; font-size: 12px; background: var(--yellow); border: 2px solid var(--ink); border-radius: 999px; padding: 4px 10px; white-space: nowrap; }

/* ============================================================
   Plans / Pricing
   ============================================================ */
.plans { display: grid; grid-template-columns: 1fr; gap: 18px; }
.plan {
  border: var(--bw) solid var(--ink); border-radius: var(--radius);
  background: var(--white); padding: 28px 24px;
  box-shadow: 5px 5px 0 var(--ink);
  display: flex; flex-direction: column;
}
.plan.featured { background: var(--yellow); }
.plan h3 { font-family: var(--display); text-transform: uppercase; font-size: 34px; line-height: 1; }
.plan .price { font-family: var(--display); font-size: 48px; line-height: 1; margin-top: 8px; }
.plan .period { font-weight: 600; opacity: 0.7; font-size: 14px; margin-bottom: 16px; }
.plan ul { list-style: none; margin: 0 0 18px; padding: 0; }
.plan li { font-weight: 500; font-size: 15px; padding: 7px 0 7px 26px; position: relative; border-bottom: 1px dashed rgba(28,18,38,0.2); }
.plan li::before { content: '✦'; position: absolute; left: 0; color: var(--orange); }
.plan .pdesc { font-size: 14px; font-weight: 500; opacity: 0.85; margin-bottom: 18px; }
.plan .btn { margin-top: auto; align-self: flex-start; }
.plan-badge { display: inline-block; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; background: var(--pink); color: var(--white); border: 2px solid var(--ink); border-radius: 999px; padding: 3px 12px; margin-bottom: 10px; align-self: flex-start; }

/* ============================================================
   About
   ============================================================ */
.about { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.about-img {
  border: var(--bw) solid var(--ink);
  border-radius: 63% 37% 54% 46% / 47% 58% 42% 53%;
  overflow: hidden; aspect-ratio: 1/1; max-width: 360px; width: 100%; margin: 0 auto;
  box-shadow: 8px 8px 0 var(--ink);
  animation: about-blob 14s ease-in-out infinite;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
@keyframes about-blob {
  0%,100% { border-radius: 63% 37% 54% 46% / 47% 58% 42% 53%; }
  50%     { border-radius: 47% 53% 42% 58% / 56% 44% 56% 44%; }
}
.about-text h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(36px, 10vw, 64px); line-height: 0.9; margin-bottom: 16px; }
.about-text p { font-weight: 500; margin-bottom: 16px; }

/* Values */
.values { display: grid; grid-template-columns: 1fr; gap: 16px; }
.value { border: var(--bw) solid var(--ink); border-radius: var(--radius); padding: 24px; box-shadow: 5px 5px 0 var(--ink); }
.value h3 { font-family: var(--display); text-transform: uppercase; font-size: 28px; margin-bottom: 8px; }
.value p { font-weight: 500; font-size: 15px; }
.value.v-blue { background: var(--blue); color:#fff; } .value.v-pink { background: var(--pink); color:#fff; } .value.v-green { background: var(--green); color:#fff; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 720px; margin: 0 auto; }
.faq-item { border: var(--bw) solid var(--ink); border-radius: 16px; margin-bottom: 12px; background: var(--white); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 20px; font-weight: 700; font-size: 17px; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--display); font-size: 30px; line-height: 1; color: var(--orange); }
.faq-item[open] summary::after { content: '–'; }
.faq-item .faq-a { padding: 0 20px 18px; font-weight: 500; font-size: 15px; }

/* ============================================================
   CTA band
   ============================================================ */
.cta { margin: 36px auto; max-width: var(--maxw); }
.cta-inner { background: var(--yellow); border: var(--bw) solid var(--ink); border-radius: var(--radius); text-align: center; padding: 48px 20px; margin: 0 18px; }
.cta-inner h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(40px, 12vw, 84px); line-height: 0.9; margin-bottom: 20px; }

/* ============================================================
   Footer  (pink, no logo card)
   ============================================================ */
.footer { background: var(--pink); color: var(--white); padding: 44px 0 24px; border-top: var(--bw) solid var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.footer-grid h4 { font-size: 18px; }
.footer-grid a, .footer-tagline { font-size: 13px; word-break: break-word; }
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.footer-logo img:first-child { height: 30px; width: auto; }
.footer-logo img:last-child { height: 18px; width: auto; filter: brightness(0) invert(1); }
.footer-tagline { font-weight: 500; opacity: 0.95; max-width: 32ch; }
.footer h4 { font-family: var(--display); text-transform: uppercase; font-size: 22px; margin-bottom: 12px; color: var(--yellow); }
.footer a { display: block; margin-bottom: 8px; font-weight: 500; opacity: 0.95; }
.footer a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.3); padding-top: 16px; font-size: 13px; opacity: 0.85; }

/* ============================================================
   Floating WhatsApp + back to top
   ============================================================ */
.float-wa { position: fixed; right: 16px; bottom: 16px; z-index: 40; width: 56px; height: 56px; border-radius: 50%; background: #25d366; border: var(--bw) solid var(--ink); box-shadow: 4px 4px 0 var(--ink); display: flex; align-items: center; justify-content: center; transition: transform 0.15s ease; }
.float-wa:hover { transform: translate(-2px,-2px); }
.float-wa svg { width: 30px; height: 30px; fill: #fff; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   TABLET  ≥ 720px
   ============================================================ */
@media (min-width: 720px) {
  body { font-size: 18px; }
  .container { padding: 0 24px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(3, 1fr); }
  .hero-block { grid-template-columns: 1.2fr 0.8fr; }
  .hero-right { border-top: none; border-left: var(--bw) solid var(--ink); min-height: 0; }
  .hero-left { padding: 48px 40px; display: flex; flex-direction: column; justify-content: space-between; }
  .page-hero-block { padding: 56px 44px; }
  .cta-inner { padding: 64px 24px; }
  .footer-grid { gap: 40px; }
  .footer-grid h4 { font-size: 22px; }
  .footer-grid a, .footer-tagline { font-size: 15px; }
}

/* ============================================================
   DESKTOP  ≥ 1024px
   ============================================================ */
@media (min-width: 1024px) {
  .nav-links { display: flex; gap: 26px; font-weight: 600; }
  .nav-links a { position: relative; padding: 4px 0; }
  .nav-links a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.25s; }
  .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
  .nav-right-m .nav-cta { display: inline-flex; }
  .nav-right { display: flex; align-items: center; gap: 16px; }
  .burger { display: none; }
  .mmenu { display: none; }
  .nav-logo img:first-child { height: 30px; } .nav-logo img:last-child { height: 18px; }

  /* Desktop: keep the whole hero (incl. buttons) in the first screen */
  .hero { padding: 16px 0 24px; }
  .hero-title { font-size: clamp(62px, 6.2vw, 104px); }
  .hero-left { padding: 30px 40px; }
  .hero-eyebrow { margin-bottom: 12px; }
  .hero-sub { margin: 16px 0; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .proj-grid { grid-template-columns: repeat(3, 1fr); }
  .plans { grid-template-columns: repeat(4, 1fr); }
  .about { grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
  .about-img { max-width: 420px; }
  .section { padding: 72px 0; }
  .lang { font-weight: 700; font-size: 14px; border: 2px solid var(--ink); border-radius: 8px; padding: 4px 10px; }
}

/* Language switch (mobile shows it in nav-right too) */
.lang { font-weight: 700; font-size: 13px; border: 2px solid var(--ink); border-radius: 8px; padding: 4px 9px; }
.nav-right-m { display: flex; align-items: center; gap: 10px; }

@media (prefers-reduced-motion: reduce) {
  .hero-wave, .marquee-track, .about-img { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}
