/* =========================================================
   AXYMOV MAIN STYLES
   Purpose: one lightweight CSS file for all pages.
   Notes for future edits:
   - Brand colors live in :root.
   - Mobile rules live near the bottom under RESPONSIVE.
   - Keep images light. Avoid huge background photos.
   ========================================================= */

:root {
  --bg: #07111f;
  --bg2: #0d1a2b;
  --bg3: #111d30;
  --card: rgba(255, 255, 255, .055);
  --card-strong: rgba(255, 255, 255, .085);
  --line: rgba(255, 255, 255, .13);
  --text: #eef4ff;
  --muted: rgba(238, 244, 255, .76);
  --accent: #22c55e;
  --accent2: #38bdf8;
  --warning: #facc15;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 44px rgba(0, 0, 0, .30);
  --max: 1180px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(800px 420px at 10% 0%, rgba(56, 189, 248, .12), transparent 60%),
    radial-gradient(700px 380px at 90% 0%, rgba(34, 197, 94, .10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: .92; }
img, svg, video { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container { width: min(100% - 40px, var(--max)); margin: 0 auto; }

/* Top green notice bar. Keep it short for mobile. */
.banner {
  padding: 10px 0;
  background: rgba(34, 197, 94, .13);
  border-bottom: 1px solid rgba(34, 197, 94, .25);
}
.banner p { margin: 0; text-align: center; font-weight: 800; color: #dfffe9; font-size: 14px; }

/* Header / navigation. Sticky header is useful for mobile quotes. */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 17, 31, .90);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 950; min-width: 0; }
.brand__logo { width: 48px; height: 48px; border-radius: 15px; object-fit: contain; background: #fff; padding: 4px; flex: 0 0 auto; }
.brand span { display: block; line-height: 1.05; letter-spacing: .02em; }
.brand small { display: block; margin-top: 4px; color: var(--muted); font-weight: 650; font-size: 12px; letter-spacing: 0; }
.nav { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; justify-content: flex-end; }
.nav a { padding: 9px 12px; border-radius: 999px; color: var(--muted); font-weight: 850; font-size: 14px; }
.nav a:hover, .nav a.is-active { background: rgba(255, 255, 255, .08); color: var(--text); }
.nav .cta-mini { background: var(--accent); color: #072110; }
.nav-toggle { display: none; background: rgba(255,255,255,.04); color: var(--text); border: 1px solid var(--line); padding: 10px 14px; border-radius: 12px; font-size: 20px; }

/* Hero and page sections. */
.hero { padding: clamp(42px, 7vw, 72px) 0 38px; }
.hero__grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 28px; align-items: start; }
.badge { display: inline-block; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.045); color: var(--muted); font-size: 13px; font-weight: 850; }
h1 { font-size: clamp(40px, 5vw, 58px); line-height: 1.04; margin: 16px 0 14px; letter-spacing: -.04em; }
h2 { font-size: clamp(30px, 3.5vw, 42px); line-height: 1.15; letter-spacing: -.025em; }
h3 { line-height: 1.2; }
.lead { font-size: 18px; color: var(--muted); max-width: 66ch; }
.muted { color: var(--muted); }
.lang-note { font-size: 13px; color: var(--muted); }
.section { padding: clamp(48px, 6vw, 76px) 0; }
.compact-section { padding-top: 48px; }
.section--alt { background: rgba(255,255,255,.03); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head { text-align: center; max-width: 850px; margin: 0 auto 34px; }
.section__head h2 { margin: 0 0 8px; }

/* Reusable grids. */
.grid { display: grid; gap: 18px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Cards and service blocks. */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.feature-card { background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.045)); }
.card h3, .card h4 { margin-top: 0; }
.kpi { font-size: 34px; font-weight: 950; color: var(--accent2); }
.checklist, .bullets { padding-left: 18px; color: var(--muted); }
.checklist li, .bullets li { margin: 7px 0; }
.promo { font-size: 17px; font-weight: 950; color: var(--accent); }
.notice { border-left: 4px solid var(--accent2); padding: 14px 16px; border-radius: 0 14px 14px 0; background: rgba(56,189,248,.08); color: var(--muted); }

/* Trust blocks under hero. */
.trustbar { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 24px; }
.trust { padding: 14px 16px; border-radius: 18px; background: rgba(255,255,255,.045); border: 1px solid var(--line); font-weight: 850; }

/* Buttons and CTA rows. Minimum height helps mobile tapping. */
.hero__cta, .btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 18px; border-radius: 16px; border: 1px solid transparent; font-weight: 950; cursor: pointer; text-align: center; }
.btn--primary { background: var(--accent); color: #06210f; box-shadow: 0 14px 35px rgba(34,197,94,.17); }
.btn--ghost { background: rgba(255,255,255,.05); border-color: var(--line); }
.btn--soft { background: rgba(56,189,248,.13); border-color: rgba(56,189,248,.30); }

/* Gallery placeholders until real job photos are added. */
.media-ph { min-height: 210px; border-radius: 18px; background: linear-gradient(135deg, rgba(56,189,248,.08), rgba(34,197,94,.08)); border: 1px dashed rgba(255,255,255,.18); display: grid; place-items: center; text-align: center; padding: 14px; font-weight: 900; color: var(--muted); }

/* Forms. */
.form input, .form select, .form textarea { width: 100%; padding: 14px; min-height: 48px; border-radius: 14px; border: 1px solid var(--line); background: rgba(255,255,255,.05); color: var(--text); }
.form select option { color: #111; }
.form label { display: block; margin: 12px 0 6px; font-weight: 850; }
.form textarea { min-height: 150px; resize: vertical; }
.form small { color: var(--muted); display: block; margin-top: 6px; }

/* FAQ accordion. */
.accordion { display: grid; gap: 14px; }
.accordion details { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 16px 18px; }
.accordion summary { cursor: pointer; font-weight: 900; }

/* Footer and floating action buttons. */
.footer { padding: 34px 0 calc(34px + var(--safe-bottom)); border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 18px; }
.footer p, .footer li, .footer a, .legal p, .legal li { color: var(--muted); }
.fab-wrap { position: fixed; right: 14px; bottom: calc(14px + var(--safe-bottom)); display: grid; gap: 10px; z-index: 120; }
.fab { padding: 12px 16px; border-radius: 999px; font-weight: 950; box-shadow: var(--shadow); }
.fab--wa { background: #25D366; color: #06210f; }
.fab--call { background: #fff; color: #111; }
.fab--sms { background: var(--accent2); color: #061624; }

/* =========================================================
   RESPONSIVE / MOBILE VERSION
   Main target: iPhone and users with slower internet.
   ========================================================= */
@media (max-width: 980px) {
  .hero__grid, .grid--4, .grid--3, .grid--2, .footer__grid, .trustbar { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 16px 20px 20px;
    background: rgba(7,17,31,.985);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: grid; grid-template-columns: 1fr; }
  .nav a { border-radius: 14px; background: rgba(255,255,255,.045); padding: 13px 14px; }
  .hero { padding-top: 44px; }
  .brand small { font-size: 11px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .banner p { font-size: 12px; line-height: 1.35; }
  .topbar__inner { min-height: 66px; }
  .brand { gap: 9px; }
  .brand__logo { width: 42px; height: 42px; border-radius: 13px; }
  .brand span { font-size: 15px; }
  .brand small { max-width: 190px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav { top: 100%; padding-left: 14px; padding-right: 14px; }
  h1 { font-size: 34px; line-height: 1.08; }
  h2 { font-size: 28px; }
  .lead { font-size: 16px; }
  .card { padding: 18px; border-radius: 18px; }
  .section { padding: 44px 0; }
  .section__head { text-align: left; margin-bottom: 22px; }
  .hero__cta, .btn-row { flex-direction: column; }
  .btn, .hero__cta .btn, .btn-row .btn, .btn-row button { width: 100%; }
  .trust { padding: 12px 14px; }
  .fab-wrap { left: 14px; right: 14px; grid-template-columns: repeat(3, 1fr); }
  .fab { text-align: center; padding: 12px 10px; font-size: 13px; }
  .footer { padding-bottom: calc(88px + var(--safe-bottom)); }
}

@media (max-width: 390px) {
  h1 { font-size: 30px; }
  .brand small { max-width: 150px; }
  .card { padding: 16px; }
}


/* =========================================================
   REVIEWS
   Home has a small preview. reviews.html has the full library.
   Keep review cards text-based until real photos/screenshots are ready.
   ========================================================= */
.review-mini-grid { align-items: stretch; }
.review-card {
  background: linear-gradient(180deg, rgba(255,255,255,.072), rgba(255,255,255,.045));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.review-card--mini { padding: 18px; min-height: 220px; }
.review-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.stars { color: var(--warning); letter-spacing: 1px; font-size: 18px; white-space: nowrap; }
.verified { color: var(--muted); font-size: 12px; font-weight: 800; }
.review-card p { margin: 0 0 16px; color: var(--text); }
.review-card__meta { display: grid; gap: 2px; color: var(--muted); font-size: 13px; }
.review-card__meta strong { color: var(--text); font-size: 14px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.center-row { justify-content: center; }
.reviews-hero { padding-bottom: 28px; }
.reviews-stats { margin-top: 28px; }

@media (max-width: 980px) {
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 18px; border-radius: 18px; }
  .review-card__top { align-items: flex-start; flex-direction: column; }
  .verified { font-size: 11px; }
}


/* Language selector / Google Translate */
.language-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}
.language-tools select,
.goog-te-combo {
  max-width: 145px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #111827;
  padding: 4px 8px;
  font-size: 12px;
}
.goog-logo-link, .goog-te-gadget span { display: none !important; }
.goog-te-gadget { font-size: 0 !important; }
body { top: 0 !important; }
.gallery-card { min-height: 185px; }
.gallery-notice { margin-top: 22px; }

@media (max-width: 980px) {
  .topbar__inner { flex-wrap: wrap; }
  .language-tools { order: 3; width: 100%; justify-content: space-between; border-radius: 14px; }
  .language-tools select, .goog-te-combo { max-width: 210px; }
}


/* Mobile polish added before launch: prevents the menu from covering the language row and keeps sticky CTAs safe on small screens. */
@media (max-width: 980px) {
  .topbar { position: sticky; }
  .topbar__inner { position: relative; padding: 8px 0; }
  .nav { max-height: calc(100vh - 110px); overflow-y: auto; }
}

@media (max-width: 640px) {
  .language-tools { padding: 7px 9px; gap: 6px; font-size: 11px; }
  .language-tools select, .goog-te-combo { max-width: 185px; font-size: 11px; }
  .hero { padding-top: 30px; }
  .fab-wrap { gap: 8px; }
}

@media (max-width: 360px) {
  .brand small { display: none; }
  .language-tools { align-items: flex-start; flex-direction: column; }
  .language-tools select, .goog-te-combo { max-width: 100%; width: 100%; }
  .fab { font-size: 12px; padding-left: 6px; padding-right: 6px; }
}
