/* ==========================================================================
   WebCraft Studio — Design Tokens
   ========================================================================== */
:root{
  --color-bg: #ffffff;
  --color-bg-alt: #f6faf8;
  --color-text: #12211b;
  --color-text-muted: #526158;
  --color-border: #e4ece7;

  --color-primary: #0b6e4f;
  --color-primary-dark: #094f39;
  --color-primary-light: #e6f4ee;
  --color-accent: #c9a227;
  --color-whatsapp: #25d366;

  --font-head: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 8px rgba(18, 33, 27, 0.06);
  --shadow-md: 0 12px 32px rgba(18, 33, 27, 0.10);
  --shadow-lg: 0 24px 60px rgba(18, 33, 27, 0.14);

  --container-w: 1180px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; overflow-x: hidden; }
body{
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; }
button{ font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4{ font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--color-text); }

.skip-link{
  position:absolute; left:-999px; top:0; background:var(--color-primary); color:#fff;
  padding:10px 16px; border-radius: 0 0 8px 0; z-index: 999;
}
.skip-link:focus{ left:0; }

.container{
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-sm{ padding: 10px 18px; font-size: 14px; }
.btn-lg{ padding: 17px 34px; font-size: 16.5px; }
.btn-block{ width: 100%; }

.btn-primary{
  background: var(--color-whatsapp); color: #fff;
}
.btn-primary:hover{ background: #1fbd5a; }

.btn-outline{
  background: transparent; color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn-outline:hover{ background: var(--color-primary-light); }

.btn-dark{ background: var(--color-text); color: #fff; }
.btn-dark:hover{ background: #24382f; }

.btn-light{ background: #fff; color: var(--color-primary-dark); }
.btn-light:hover{ background: #eefaf4; }

.btn-outline-light{
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover{ background: rgba(255,255,255,0.12); border-color: #fff; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: sticky; top: 0; z-index: 500;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner{
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.logo{ display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 19px; flex-shrink: 0; }
.logo-mark{
  width: 38px; height: 38px; border-radius: 11px;
  object-fit: cover; flex-shrink: 0;
}
.logo-text em{ font-style: normal; color: var(--color-primary); }

.main-nav{ display: flex; align-items: center; gap: 32px; }
.main-nav a{ font-size: 15px; font-weight: 500; color: var(--color-text-muted); transition: color .15s ease; position: relative; }
.main-nav a:hover{ color: var(--color-primary); }

.header-actions{ flex-shrink: 0; display: flex; align-items: center; gap: 10px; }

.icon-btn{
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--color-border); color: var(--color-primary);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  flex-shrink: 0;
}
.icon-btn:hover{ transform: translateY(-2px); border-color: var(--color-primary); background: var(--color-primary-light); }

.nav-toggle{
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px;
}
.nav-toggle span{ display:block; width: 100%; height: 2px; background: var(--color-text); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  min-height: calc(100vh - 127px);
  display: flex;
  align-items: center;
  padding: 32px 0;
  background:
    radial-gradient(700px 380px at 88% -10%, rgba(11,110,79,0.08), transparent),
    radial-gradient(500px 300px at -5% 90%, rgba(201,162,39,0.10), transparent),
    var(--color-bg);
  overflow: hidden;
}
.hero .container{ width: 100%; }
.hero-inner{
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
}
.eyebrow{
  font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--color-primary); margin-bottom: 10px;
}
.eyebrow.center{ text-align: center; }
.hero h1{
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.text-accent{ color: var(--color-primary); }
.hero-sub{
  font-size: 19px; color: var(--color-text-muted); max-width: 540px; margin-bottom: 20px;
}
.hero-actions{ display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }

.hero-stats{ display: flex; gap: 12px; flex-wrap: wrap; }
.stat-tile{
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  padding: 14px 18px; box-shadow: var(--shadow-sm); min-width: 124px;
}
.stat-num{ display: block; font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--color-primary-dark); }
.stat-label{ display: block; font-size: 11.5px; color: var(--color-text-muted); margin-top: 2px; }

/* Hero visual: browser mockup */
.hero-visual{ position: relative; display: flex; align-items: center; justify-content: center; }
.browser-card{
  width: 100%; max-width: 420px; background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 1px solid var(--color-border); overflow: hidden;
  transform: rotate(-1.5deg);
  animation: floatY 6s ease-in-out infinite;
}
.browser-bar{ display: flex; align-items: center; gap: 8px; padding: 14px 16px; border-bottom: 1px solid var(--color-border); }
.dot{ width: 9px; height: 9px; border-radius: 50%; }
.dot-red{ background: #ef5a52; } .dot-yellow{ background: #f5bd4f; } .dot-green{ background: #61c454; }
.browser-url{
  margin-left: 10px; background: var(--color-bg-alt); border-radius: 999px; padding: 5px 14px;
  font-size: 11.5px; color: var(--color-text-muted); flex: 1;
}
.hero-photo{ width: 100%; height: auto; display: block; aspect-ratio: 1 / 1; object-fit: cover; }

.hero-trust-mobile{ display: none; }

.float-badge{
  position: absolute; display: flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--color-border); box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm); padding: 9px 14px; font-size: 12.5px; font-weight: 600;
  color: var(--color-text); animation: floatY 5s ease-in-out infinite;
}
.float-badge svg{ color: var(--color-primary); flex-shrink: 0; }
.badge-domain{ top: 6%; left: -4%; animation-delay: .3s; }
.badge-ssl{ bottom: 20%; right: -6%; animation-delay: .9s; }
.badge-live{ bottom: -4%; left: 14%; animation-delay: 1.4s; }

@keyframes floatY{
  0%, 100%{ transform: translateY(0) rotate(-1.5deg); }
  50%{ transform: translateY(-10px) rotate(-1.5deg); }
}
.float-badge{ animation-name: floatBadge; }
@keyframes floatBadge{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}

/* ==========================================================================
   Strip bar
   ========================================================================== */
.strip-bar{ background: var(--color-text); padding: 18px 0; }
.strip-inner{
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 10px; color: rgba(255,255,255,0.75); font-size: 13.5px; font-weight: 500; letter-spacing: 0.03em;
}
.dot-sep{ color: var(--color-accent); }

/* ==========================================================================
   Section basics
   ========================================================================== */
.section{ padding: 72px 0; }
.section-alt{ background: var(--color-bg-alt); }
.section-title{
  font-size: clamp(26px, 3.2vw, 38px); letter-spacing: -0.01em; max-width: 720px; margin-bottom: 18px;
}
.section-title.center{ margin-left: auto; margin-right: auto; }
.section-sub{ font-size: 15.5px; color: var(--color-text-muted); opacity: 0.9; max-width: 620px; margin-bottom: 20px; }
.center{ text-align: center; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid{
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.service-card{
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 32px 26px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-icon{
  width: 56px; height: 56px; border-radius: 14px; background: var(--color-primary-light); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.service-card h3{ font-size: 19px; margin-bottom: 8px; }
.service-card p{ font-size: 13.5px; color: var(--color-text-muted); opacity: 0.9; }

/* ==========================================================================
   About
   ========================================================================== */
.about-inner{ display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
.about-visual{ display: flex; align-items: center; justify-content: center; }
.about-photo{
  width: 100%; height: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  object-fit: cover; aspect-ratio: 800 / 513;
}
.about-points{ margin-top: 30px; display: flex; flex-direction: column; gap: 26px; }
.about-point{ display: flex; gap: 18px; }
.point-num{
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px;
  background: var(--color-primary-light); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
}
.about-point h3{ font-size: 17px; margin-bottom: 6px; }
.about-point p{ font-size: 14.5px; color: var(--color-text-muted); }

/* ==========================================================================
   Process
   ========================================================================== */
.process-grid{
  margin-top: 56px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  position: relative;
}
.process-step{ text-align: center; padding: 0 8px; position: relative; }
.process-num{
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary-light); border: 2px solid var(--color-primary); color: var(--color-primary);
  position: relative; z-index: 2;
}
.process-step p{ font-size: 14px; font-weight: 600; color: var(--color-text); }
.process-track{
  position: absolute; top: 28px; left: 10%; right: 10%; height: 3px;
  background: var(--color-border); border-radius: 999px; overflow: hidden; z-index: 0;
}
.process-track-fill{
  position: absolute; top: 0; left: -30%; width: 30%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  border-radius: 999px;
  animation: trackPulse 2.2s ease-in-out infinite;
}
@keyframes trackPulse{
  0%{ left: -30%; }
  100%{ left: 100%; }
}
@media (prefers-reduced-motion: reduce){
  .process-track-fill{ animation: none; left: 0; width: 100%; background: var(--color-primary); }
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-grid{
  margin-top: 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch;
}
.pricing-grid-3{
  grid-template-columns: repeat(3, 1fr); max-width: 980px; margin-left: auto; margin-right: auto;
}
.price-card{
  background: #fff; border: 1.5px solid var(--color-border); border-radius: var(--radius-md);
  padding: 26px 22px; display: flex; flex-direction: column; position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card h3{ font-size: 19px; margin-bottom: 3px; }
.price-desc{ font-size: 12.5px; color: var(--color-text-muted); margin-bottom: 12px; min-height: 0; }
.price-value{ font-family: var(--font-head); font-size: 36px; font-weight: 800; margin-bottom: 2px; }
.price-value .currency{ font-size: 20px; font-weight: 700; vertical-align: 5px; margin-right: 2px; }
.price-value-custom{ font-size: 26px; color: var(--color-primary); }
.price-pages{ font-size: 13px; font-weight: 700; color: var(--color-primary); margin-bottom: 14px; }
.price-features{ display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; flex: 1; }
.price-features li{ font-size: 13px; color: var(--color-text-muted); padding-left: 20px; position: relative; line-height: 1.35; }
.price-features li::before{
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--color-primary); font-weight: 700;
}
.price-features li:first-child{ font-weight: 700; color: var(--color-text); padding-left: 0; }
.price-features li:first-child::before{ content: none; }

.price-featured{
  border-color: var(--color-primary); box-shadow: var(--shadow-md); transform: scale(1.03);
}
.price-featured:hover{ transform: scale(1.03) translateY(-6px); }
.price-badge{
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--color-accent); color: #fff; font-size: 11.5px; font-weight: 700;
  padding: 6px 16px; border-radius: 999px; letter-spacing: 0.03em; box-shadow: var(--shadow-sm);
}
.price-custom{ background: var(--color-text); border-color: var(--color-text); }
.price-custom h3, .price-custom .price-value-custom, .price-custom .price-pages{ color: #fff; }
.price-custom .price-desc, .price-custom .price-features li{ color: rgba(255,255,255,0.7); }
.price-custom .price-desc{ font-size: 14px; line-height: 1.5; margin-bottom: 24px; }
.price-custom .price-features li::before{ color: var(--color-accent); }
.price-custom .price-features li:first-child{ color: #fff; }
.price-custom .btn{ margin-top: auto; }

/* ==========================================================================
   Portfolio
   ========================================================================== */
.work-photos{ margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.work-photos figure{ position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.work-photos img{ width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.work-photos figcaption{
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px;
  background: linear-gradient(0deg, rgba(9,20,15,0.82), transparent);
  color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 14px;
}
.work-cta{
  margin-top: 32px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.work-cta p{ font-family: var(--font-head); font-weight: 500; font-size: 17px; color: var(--color-text-muted); line-height: 1.6; }
.work-cta p strong{ color: var(--color-text); font-weight: 700; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-container{ max-width: 780px; }
.faq-list{ margin-top: 44px; display: flex; flex-direction: column; gap: 14px; }
.faq-item{
  border: 1.5px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden;
  background: #fff; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.faq-item:hover{ border-color: var(--color-primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.faq-item.open{ border-color: var(--color-primary); box-shadow: var(--shadow-md); }
.faq-question{
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; font-family: var(--font-head); font-weight: 600; font-size: 16px;
  text-align: left; color: var(--color-text); transition: color .2s ease;
}
.faq-item.open .faq-question{ color: var(--color-primary-dark); }
.faq-icon{
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--color-primary-light);
  color: var(--color-primary); display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700; transition: transform .25s ease, background .25s ease, color .25s ease;
}
.faq-item.open .faq-icon{ transform: rotate(135deg); background: var(--color-primary); color: #fff; }
.faq-answer{ max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p{ padding: 0 24px 22px; font-size: 15px; line-height: 1.6; color: var(--color-text-muted); }

/* ==========================================================================
   Contact Form
   ========================================================================== */
.contact-inner{ display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; }
.contact-details{ display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.contact-detail{
  display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600;
  font-size: 16px; color: var(--color-text); transition: color .15s ease;
}
.contact-detail svg{ color: var(--color-primary); flex-shrink: 0; }
.contact-detail:hover{ color: var(--color-primary); }

.contact-form{
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 34px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 18px;
}
.form-row{ display: flex; flex-direction: column; gap: 7px; }
.form-row label{ font-size: 13.5px; font-weight: 600; color: var(--color-text); }
.form-row input, .form-row textarea{
  font-family: var(--font-body); font-size: 14.5px; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border); background: var(--color-bg-alt); color: var(--color-text);
  transition: border-color .15s ease, background .15s ease;
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus{
  outline: none; border-color: var(--color-primary); background: #fff;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner{
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  padding: 88px 0;
}
.cta-inner{ text-align: center; max-width: 620px; margin: 0 auto; }
.cta-inner h2{ color: #fff; font-size: clamp(28px, 3.8vw, 42px); margin-bottom: 14px; }
.cta-inner p{ color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 32px; }
.cta-actions{ display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: #0d1a15; color: rgba(255,255,255,0.7); padding: 72px 0 0; }
.footer-inner{
  display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: 40px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo{ color: #fff; margin-bottom: 14px; }
.footer-brand .logo-text em{ color: #7fd8ae; }
.footer-brand p{ font-size: 13px; margin-bottom: 20px; max-width: 280px; color: rgba(255,255,255,0.55); }
.footer-col h5{ font-family: var(--font-head); color: #fff; font-size: 13.5px; margin-bottom: 18px; letter-spacing: 0.03em; }
.footer-col a, .footer-col p{ display: block; font-size: 13px; margin-bottom: 12px; color: rgba(255,255,255,0.55); transition: color .15s ease; }
.footer-col a:hover{ color: #7fd8ae; }
.footer-col .footer-contact-line{ display: flex; align-items: center; flex-wrap: nowrap; gap: 8px; margin-bottom: 10px; }
.footer-contact-line svg{ color: var(--color-primary); flex-shrink: 0; }
.footer-contact-line a{ display: inline; margin-bottom: 0; }
.footer-bottom{ padding: 22px 0; }
.footer-bottom-inner{ display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.45); }

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.wa-float{
  position: fixed; right: 24px; bottom: 24px; z-index: 600;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--color-whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
  animation: pulse 2.4s ease-in-out infinite;
}
.wa-float:hover .wa-float-tooltip{ opacity: 1; transform: translateX(0); }
.wa-float-tooltip{
  position: absolute; right: 72px; background: #0d1a15; color: #fff; font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px; white-space: nowrap; opacity: 0; transform: translateX(8px);
  transition: opacity .2s ease, transform .2s ease; pointer-events: none;
}
@keyframes pulse{
  0%, 100%{ box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%{ box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px){
  .pricing-grid{ grid-template-columns: repeat(2, 1fr); }
  .pricing-grid-3{ grid-template-columns: repeat(3, 1fr); max-width: 100%; }
  .price-featured{ transform: none; }
  .price-featured:hover{ transform: translateY(-6px); }
  .process-grid{ grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .process-track{ display: none; }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
  .contact-inner{ grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px){
  .hero{ min-height: 0; }
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; margin-bottom: 20px; }
  .about-inner{ grid-template-columns: 1fr; }
  .about-visual{ order: -1; }
  .hero-stats{ justify-content: flex-start; }
}

@media (max-width: 720px){
  .main-nav{
    position: absolute; top: 100%; left: 0; right: 0; height: calc(100vh - 68px);
    background: #fff; flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 20px 24px; transform: translateX(100%); transition: transform .28s ease;
    overflow-y: auto; z-index: 501;
  }
  .main-nav.open{ transform: translateX(0); }
  .main-nav a{ width: 100%; padding: 14px 4px; border-bottom: 1px solid var(--color-border); font-size: 16px; }
  .nav-toggle{ display: flex; }
  .header-actions .btn span, .header-actions .btn{ font-size: 13.5px; padding: 10px 16px; }

  .section{ padding: 56px 0; }
  .services-grid{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .process-grid{ grid-template-columns: 1fr 1fr; }
  .footer-inner{ grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner{ flex-direction: column; text-align: center; }
  .contact-form{ padding: 24px; }
  .hero-stats{ gap: 10px; }
  .stat-tile{ min-width: 0; flex: 1 1 100px; padding: 12px 14px; }

  .badge-domain, .badge-ssl, .badge-live{ display: none; }
  .browser-card{ transform: none; }

  .hero-trust-mobile{
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px; margin-top: 16px;
  }
  .hero-trust-mobile span{
    display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--color-text-muted);
  }
  .hero-trust-mobile svg{ color: var(--color-primary); flex-shrink: 0; }
}

@media (max-width: 480px){
  .container{ padding: 0 16px; }

  .header-inner{ gap: 8px; }
  .logo{ font-size: 15px; gap: 7px; }
  .logo-mark{ width: 32px; height: 32px; border-radius: 9px; }
  .header-actions{ gap: 8px; }
  .header-actions .btn{ width: 40px; height: 40px; padding: 0; border-radius: 50%; flex-shrink: 0; }
  .header-actions .btn-label{ display: none; }
  .icon-btn{ width: 36px; height: 36px; }
  .nav-toggle{ width: 36px; }

  .hero{ padding: 28px 0 36px; }
  .hero-actions{ gap: 12px; }

  .work-cta .btn, .price-card .btn{ width: 100%; }
}

@media (max-width: 420px){
  .process-grid{ grid-template-columns: 1fr; }
  .hero-actions .btn{ width: 100%; }
}
