/* ============================================================
   BIGOOL DIGITAL — Shared Blog Stylesheet
   Reuse this file for every blog page.
   Fonts loaded in each HTML file via Google Fonts.
   ============================================================ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --ink:       #111111;
  --bg:        #F7F5F0;
  --white:     #FFFFFF;
  --accent:    #D42B2B;
  --accent-dk: #A81E1E;
  --gold:      #B8924A;
  --muted:     #6B6560;
  --border:    #E0DAD2;
  --card:      #FFFFFF;
  --light:     #F0EBE3;

  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'Courier New', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 10px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.13);
}

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

/* ── TOPBAR ── */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.topbar a { color: #FF8A70; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: #fff; }

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(247,245,240,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 62px;
  display: flex; align-items: center;
  padding: 0 40px;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 900; font-style: italic;
  color: var(--ink); text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo em { color: var(--accent); font-style: normal; }
.nav-links { display: flex; gap: 26px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 14px; font-weight: 500;
  color: var(--muted); transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: #25D366; color: #fff;
  padding: 9px 20px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: background .2s;
}
.nav-cta:hover { background: #1da851; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 40px;
  font-size: 12.5px;
  color: var(--muted);
  display: flex; gap: 7px; align-items: center;
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── HERO ── */
.hero {
  background: var(--ink);
  padding: 80px 40px 72px;
  position: relative; overflow: hidden;
}
.hero-geo {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 80% 20%, rgba(212,43,43,0.22) 0%, transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(184,146,74,0.12) 0%, transparent 40%);
}
/* diagonal stripe texture */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.018) 40px,
    rgba(255,255,255,0.018) 41px
  );
  pointer-events: none;
}
.hero-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(212,43,43,0.18);
  border: 1px solid rgba(212,43,43,0.35);
  color: #FF9B9B;
  padding: 5px 15px; border-radius: 40px;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 26px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 66px);
  line-height: 1.08; font-weight: 900; font-style: italic;
  color: #fff; margin-bottom: 22px; letter-spacing: -1px;
}
.hero h1 .red { color: var(--accent); font-style: normal; }
.hero h1 .gold { color: var(--gold); }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.65);
  max-width: 580px; margin-bottom: 36px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 14px 30px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.82);
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }
.hero-stats {
  display: flex; gap: 44px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.stat-n {
  font-family: var(--font-head);
  font-size: 42px; font-weight: 900; color: #fff; line-height: 1;
}
.stat-n em { color: var(--accent); font-style: normal; }
.stat-l { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 4px; letter-spacing: 0.04em; }

/* ── INTRO IMAGE ── */
.intro-image {
  width: 100%;
  margin-bottom: 36px;
}
.intro-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}
.intro-image img:hover {
  transform: scale(1.01);
}

/* ── SECTIONS ── */
.section { padding: 76px 0; }
.section-white { background: var(--white); }
.section-light { background: var(--light); }
.container { max-width: 920px; margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

.sec-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
  padding: 4px 12px;
  background: rgba(212,43,43,0.07);
  border-radius: 40px;
  border: 1px solid rgba(212,43,43,0.18);
}

h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 900; font-style: italic;
  line-height: 1.12; letter-spacing: -0.5px;
  margin-bottom: 14px;
}
h3 { font-size: 18px; font-weight: 700; margin-bottom: 9px; line-height: 1.35; }
p { color: #3A3530; margin-bottom: 15px; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 18px; line-height: 1.85;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 36px;
}

/* ── TOC ── */
.toc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 30px;
  margin: 32px 0 44px;
}
.toc-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.toc ol { padding-left: 18px; }
.toc li { padding: 4px 0; }
.toc a {
  text-decoration: none; color: var(--ink);
  font-size: 14.5px; font-weight: 500;
  transition: color .2s;
}
.toc a:hover { color: var(--accent); }

/* ── CARDS GRID ── */
.cards-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px; margin-top: 38px;
}
.cards-4-row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px; margin-top: 38px;
}
@media (max-width: 1024px) {
  .cards-4-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 640px) {
  .cards-4-row {
    grid-template-columns: 1fr !important;
  }
}
.cards-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px; margin-top: 38px;
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px; margin-top: 38px;
}
.cards-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px; margin-top: 38px;
}
@media (max-width: 640px) {
  .cards-2x2 { grid-template-columns: 1fr; }
}

/* ── SERVICE CARD ── */
.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  position: relative; overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(212,43,43,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.svc-card h3 { font-size: 16px; }
.svc-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── WHY CARD ── */
.why-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.why-card:hover { background: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.why-icon { font-size: 30px; margin-bottom: 12px; }
.why-card h3 { font-size: 15.5px; }
.why-card p { font-size: 13.5px; color: var(--muted); }

/* ── BIZ CARD (dark) ── */
.biz-card {
  background: var(--ink);
  border-radius: var(--radius-md);
  padding: 34px 28px; color: #fff;
  position: relative; overflow: hidden;
}
.biz-card::after {
  content: ''; position: absolute;
  bottom: -30px; right: -30px;
  width: 110px; height: 110px; border-radius: 50%;
  background: rgba(212,43,43,0.12);
}
.biz-tag {
  display: inline-block;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(212,43,43,0.2); border: 1px solid rgba(212,43,43,0.4);
  color: #FF9B9B; padding: 3px 10px; border-radius: 20px;
  margin-bottom: 14px;
}
.biz-card h3 { color: #fff; font-size: 17px; }
.biz-card p { color: rgba(255,255,255,0.58); font-size: 13.5px; }

/* ── PRICING ── */
.pricing-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 42px;
}
@media (max-width: 860px) {
  .pricing-3col { grid-template-columns: 1fr; }
}

/* Custom enterprise full-width card */
.p-card-custom {
  display: flex; align-items: flex-start; gap: 32px; flex-wrap: wrap;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 34px;
  margin-top: 22px;
}
.p-custom-left { min-width: 180px; }
.p-custom-features {
  flex: 1; display: flex; flex-wrap: wrap; gap: 10px 28px;
  align-content: center;
}
.p-custom-features span {
  font-size: 13.5px; color: var(--muted);
}

/* Comparison Table */
.compare-wrap {
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.compare-title {
  background: var(--light);
  padding: 14px 24px;
  font-weight: 700; font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.compare-scroll { overflow-x: auto; }
.compare-table {
  width: 100%; border-collapse: collapse;
  font-size: 13.5px;
  min-width: 560px;
}
.compare-table thead tr { background: var(--ink); color: #fff; }
.compare-table th {
  padding: 13px 18px; text-align: center;
  font-weight: 700; font-size: 13px; letter-spacing: 0.04em;
}
.compare-table th:first-child { text-align: left; }
.compare-table .th-featured { background: var(--accent); }
.compare-table td {
  padding: 10px 18px; text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}
.compare-table td:first-child { text-align: left; color: var(--ink); font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tbody tr:nth-child(even) td { background: var(--bg); }
.compare-table .td-featured { background: rgba(212,43,43,0.04); font-weight: 600; color: var(--ink); }
.compare-table tbody tr:nth-child(even) .td-featured { background: rgba(212,43,43,0.07); }
.compare-table .no { color: #bbb; }
.compare-table .price-row td { background: var(--ink) !important; color: #fff !important; font-size: 15px; padding: 14px 18px; }
.compare-table .price-row .td-featured { background: var(--accent) !important; }

.p-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  text-align: center;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.p-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.p-card.featured {
  background: var(--ink);
  border-color: var(--ink);
}
.p-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.09em;
  padding: 3px 14px; border-radius: 20px;
  white-space: nowrap;
}
.p-name {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.p-card.featured .p-name { color: rgba(255,255,255,0.5); }
.p-price {
  font-family: var(--font-head);
  font-size: 50px; font-weight: 900; line-height: 1; color: var(--ink);
  margin-bottom: 4px;
}
.p-card.featured .p-price { color: #fff; }
.p-cycle { font-size: 12.5px; color: var(--muted); margin-bottom: 24px; }
.p-card.featured .p-cycle { color: rgba(255,255,255,0.4); }
.p-features { list-style: none; text-align: left; margin-bottom: 26px; }
.p-features li {
  font-size: 13.5px; padding: 7px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted); display: flex; gap: 8px;
}
.p-card.featured .p-features li { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.65); }
.p-features li::before { content: '✓'; color: #27AE60; font-weight: 800; flex-shrink: 0; }
.p-card.featured .p-features li::before { color: #7BF0A8; }
.p-btn {
  display: block; text-align: center;
  padding: 13px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 13.5px; text-decoration: none;
  transition: .2s;
}
.p-btn-light { background: var(--bg); color: var(--ink); border: 1.5px solid var(--border); }
.p-btn-light:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.p-btn-red { background: var(--accent); color: #fff; }
.p-btn-red:hover { background: var(--accent-dk); }
.p-btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.25); }
.p-btn-ghost:hover { background: rgba(255,255,255,0.2); }
.pricing-note {
  text-align: center; margin-top: 22px;
  font-size: 13px; color: var(--muted);
}
.pricing-note span { color: var(--ink); font-weight: 600; }

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0; margin-top: 44px;
}
.p-step {
  padding: 30px 26px;
  border: 1px solid var(--border);
  background: var(--white);
  position: relative;
}
.p-step:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.p-step:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.step-no {
  font-family: var(--font-head);
  font-size: 60px; font-weight: 900; font-style: italic;
  line-height: 1; color: rgba(212,43,43,0.08);
  margin-bottom: 10px;
}
.step-emoji { font-size: 28px; margin-bottom: 12px; }
.p-step h3 { font-size: 15.5px; margin-bottom: 7px; }
.p-step p { font-size: 13.5px; color: var(--muted); }

/* ── PORTFOLIO ── */
.port-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 22px; margin-top: 38px;
}
.port-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.port-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.port-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--light);
}
.port-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.port-item:hover .port-img img { transform: scale(1.05); }
.port-info {
  padding: 16px 20px 18px;
  border-top: 1px solid var(--border);
}
.port-tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--accent);
  background: rgba(212,43,43,0.07);
  padding: 2px 9px; border-radius: 20px;
  display: inline-block; margin-bottom: 6px;
}
.port-info h3 { font-size: 15px; margin: 0; }

/* ── TESTIMONIALS — AUTO SCROLL MARQUEE ── */
.testi-track-wrap {
  overflow: hidden;
  margin-top: 36px;
  padding: 4px 0 20px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.testi-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: scrollLeft 44s linear infinite;
}
.testi-track:hover { animation-play-state: paused; }
@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 26px 28px;
  width: 320px; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; }
.testi-text {
  font-size: 14.5px; color: #3A3530;
  font-style: italic; line-height: 1.75;
  margin-bottom: 18px;
}
.testi-author { display: flex; align-items: center; gap: 11px; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: #fff; font-weight: 800;
  flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: 13.5px; }
.t-role { font-size: 12px; color: var(--muted); }

/* ── FAQ ── */
.faq { margin-top: 38px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 18px 24px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--ink); text-align: left; gap: 12px;
  transition: background .2s;
}
.faq-q:hover { background: var(--bg); }
.faq-chevron { font-size: 22px; color: var(--accent); line-height: 1; flex-shrink: 0; transition: transform .3s; }
.faq-q.open .faq-chevron { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 24px; font-size: 14.5px; color: var(--muted); line-height: 1.8;
  transition: max-height .35s ease, padding .3s;
}
.faq-a.open { max-height: 500px; padding: 0 24px 20px; }

/* ── CONTACT / CTA ── */
.cta-section {
  background: var(--ink);
  padding: 88px 28px; text-align: center;
}
.cta-section h2 { color: #fff; font-style: italic; }
.cta-section p { color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto 36px; font-size: 16.5px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.wa-btn {
  background: #25D366; color: #fff;
  padding: 15px 32px; border-radius: var(--radius-sm);
  font-weight: 800; font-size: 14.5px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .2s, transform .2s;
}
.wa-btn:hover { background: #1da853; transform: translateY(-2px); }
.contact-strip {
  display: flex; gap: 40px; flex-wrap: wrap;
  justify-content: center;
  margin-top: 48px; padding-top: 38px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cs-item { text-align: center; }
.cs-label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 5px;
}
.cs-val { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.85); }
.cs-val a { color: #FF8A70; text-decoration: none; }

/* ── FLOATING BUTTONS ── */
.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 99999;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1da851;
}

.scroll-buttons {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 99998;
}

.scroll-btn {
  background: #D42B2B;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  border: 2px solid white;
}

.scroll-btn:hover {
  background: #A81E1E;
  transform: scale(1.1);
}

/* ── RESPONSIVE FOR FLOATING BUTTONS ── */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 20px;
    left: 15px;
    bottom: 20px;
  }
  .scroll-buttons {
    right: 15px;
    bottom: 20px;
  }
  .scroll-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* ── FOOTER ── */
.site-footer {
  background: #080808; color: rgba(255,255,255,0.35);
  padding: 22px 28px; text-align: center;
  font-size: 12.5px; line-height: 1.9;
}
.site-footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
.site-footer a:hover { color: #FF8A70; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 44px 0; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 58px 22px 52px; }
  .hero-stats { gap: 24px; }
  .section { padding: 56px 0; }
  .breadcrumb { padding: 10px 20px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .p-step:first-child { border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
  .p-step:last-child { border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
}
@media (max-width: 500px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ── PORTFOLIO — HORIZONTAL AUTO-SCROLL MARQUEE ── */
.port-track-wrap {
  overflow: hidden;
  margin-top: 38px;
  padding: 4px 0 20px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.port-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: portScrollLeft 55s linear infinite;
}
.port-track:hover { animation-play-state: paused; }
@keyframes portScrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Override grid-based port-item for marquee */
.port-track .port-item {
  width: 300px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
  cursor: default;
}
.port-track .port-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.port-track .port-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--light);
}
.port-track .port-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.port-track .port-item:hover .port-img img { transform: scale(1.05); }
.port-track .port-info {
  padding: 14px 18px 16px;
  border-top: 1px solid var(--border);
}
.port-track .port-info h3 { font-size: 14px; margin: 0; }

/* ═══════════════════════════════════════════════════
   MOBILE HAMBURGER MENU
   Hamburger shows on mobile, hidden on desktop.
   Drawer slides in from the right.
════════════════════════════════════════════════════ */

/* Hide hamburger on desktop */
.hamburger { display: none; }
/* Hide nav-cta on mobile if desired — keep desktop-only class */
@media (min-width: 769px) {
  .desktop-only { display: inline-flex; }
}

/* ── Hamburger button ── */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: 8px;
  transition: background .2s;
  flex-shrink: 0;
}
.hamburger:hover { background: rgba(0,0,0,0.06); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}
/* Animate to X when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--white);
  z-index: 9999;
  box-shadow: -4px 0 40px rgba(0,0,0,0.15);
  transition: right .32s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 0 32px;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-logo {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 900; font-style: italic;
  color: var(--ink);
}
.mobile-logo em { color: var(--accent); font-style: normal; }
.mobile-close {
  background: none; border: none; cursor: pointer;
  font-size: 20px; color: var(--muted);
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.mobile-close:hover { background: var(--light); color: var(--ink); }

.mobile-nav-list {
  list-style: none;
  padding: 12px 0;
  flex: 1;
}
.mobile-nav-list li { border-bottom: 1px solid var(--light); }
.mobile-nav-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 24px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.mobile-nav-list a:hover {
  background: var(--bg);
  color: var(--accent);
}
.mn-icon { font-size: 18px; width: 24px; text-align: center; }

.mobile-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 22px 0;
  background: #25D366;
  color: #fff;
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s;
}
.mobile-wa-btn:hover { background: #1da853; }

/* ── Overlay behind drawer ── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Show/hide at breakpoint ── */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links  { display: none; }
  .desktop-only { display: none !important; }
  .site-nav { padding: 0 16px; }
}
@media (min-width: 769px) {
  .hamburger { display: none; }
  .mobile-menu, .mobile-overlay { display: none !important; }
}

/* intro-image defined above */

/* ── Portfolio marquee (added here for completeness) ── */
.port-track-wrap {
  overflow: hidden;
  margin-top: 38px;
  padding: 4px 0 20px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.port-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: portScrollLeft 55s linear infinite;
}
.port-track:hover { animation-play-state: paused; }
@keyframes portScrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.port-track .port-item {
  width: 300px; flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.port-track .port-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.port-track .port-img { aspect-ratio: 16/10; overflow: hidden; background: var(--light); }
.port-track .port-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s; }
.port-track .port-item:hover .port-img img { transform: scale(1.05); }
.port-track .port-info { padding: 14px 18px 16px; border-top: 1px solid var(--border); }
.port-track .port-info h3 { font-size: 14px; margin: 0; }
