/* Apple-inspired minimal design (clean, bright, lots of whitespace)
   Note: This is an original stylesheet inspired by common Apple-like layout principles:
   big typography, white background, soft gray sections, pill CTAs, sticky blurred header. */

:root{
  --bg:#ffffff;
  --text:#1d1d1f;
  --muted:#6e6e73;
  --line:rgba(0,0,0,.10);
  --panel:#ffffff;
  --panel2:#f5f5f7;
  --accent:#0066cc;
  --accent2:#0071e3;
  --shadow: 0 18px 50px rgba(0,0,0,.10);
  --radius: 22px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display","SF Pro Text", Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1060px, calc(100% - 44px)); margin:0 auto; }

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav{
  height: 64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{ display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:-.2px; }
.brand__dot{ width:12px; height:12px; border-radius:999px; background: #111; }
.brand__text{ font-size:14px; }

.nav__links{ display:flex; align-items:center; gap:18px; }
.nav__links a{ color: var(--muted); font-weight:600; font-size:13px; }
.nav__links a:hover{ color: var(--text); }

.nav__toggle{
  display:none;
  background:transparent;
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 10px;
  cursor:pointer;
}
.nav__toggle span{
  display:block;
  width:20px; height:2px;
  background: var(--text);
  margin:5px 0;
  border-radius:2px;
  opacity:.9;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 650;
  letter-spacing: -.1px;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, opacity .12s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); }
.btn--sm{ padding: 9px 12px; border-radius: 999px; font-size:12px; font-weight:650; }
.btn--block{ width:100%; }
.btn--primary{ background: var(--accent2); color: #fff; }
.btn--secondary{ background: transparent; border-color: var(--line); color: var(--accent2); }
.btn--ghost{ background: transparent; border-color: var(--line); color: var(--text); }
.btn:active{ transform: translateY(0px); opacity:.95; }

/* Hero */
.hero{ padding: 44px 0 28px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items:center;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0,0,0,.03);
  color: var(--muted);
  font-weight:600;
  font-size:12px;
}
h1{
  margin:14px 0 10px;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: -1.2px;
}
.grad{
  background: linear-gradient(90deg, #111, #444);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 62ch;
}
.hero__cta{ display:flex; gap:12px; flex-wrap:wrap; margin: 14px 0 10px; }
.hero__micro{ color: var(--muted); font-weight:600; font-size:12px; }

.trust{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.trust__item{
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 18px;
  padding: 14px 14px;
}
.trust__kpi{ display:block; font-weight:700; font-size: 16px; }
.trust__txt{ display:block; color: var(--muted); font-weight:600; font-size: 12px; margin-top: 4px; }

/* Preview card */
.hero__card{
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.mock{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid var(--line);
  background: var(--panel2);
}
.mock__bar{
  display:flex; align-items:center; gap:8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.02);
}
.mock__bar span{ width:10px; height:10px; border-radius:999px; background: rgba(0,0,0,.14); }
.mock__url{ margin-left:auto; color: rgba(0,0,0,.55); font-weight:600; font-size:12px; }
.mock__body{ padding: 16px 14px 18px; }
.mock__h{ height: 18px; width: 75%; border-radius: 10px; background: rgba(0,0,0,.12); margin-bottom: 12px; }
.mock__p{ height: 10px; width: 90%; border-radius: 10px; background: rgba(0,0,0,.10); margin: 10px 0; }
.mock__p.short{ width: 68%; }
.mock__btns{ display:flex; gap:10px; margin: 14px 0 18px; }
.mock__btn{ height: 34px; width: 120px; border-radius: 999px; background: rgba(0,113,227,.25); }
.mock__btn.ghost{ background: rgba(0,0,0,.08); width: 92px; }
.mock__grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; margin-top: 10px; }
.mock__tile{ height: 58px; border-radius: 18px; background: rgba(0,0,0,.06); border: 1px solid rgba(0,0,0,.06); }
.mock__line{ height: 10px; width: 92%; border-radius: 10px; background: rgba(0,0,0,.08); margin-top: 10px; }
.hero__cardFooter{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 14px; }
.chip{
  font-weight:650;
  font-size:12px;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(0,0,0,.02);
  padding: 8px 12px;
  border-radius: 999px;
}

/* Sections */
.section{ padding: 70px 0; }
.section--tight{ padding: 42px 0; }
.section--alt{
  background: var(--panel2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sectionHead{ margin-bottom: 26px; }
.sectionHead h2{ margin:0 0 10px; font-size: 30px; letter-spacing: -.6px; }
.sectionHead p{ margin:0; color: var(--muted); font-weight:600; }

.grid3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* Cards */
.infoCard, .card, .step, .priceCard, .form, .faq__item{
  border:1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
}
.infoCard{ padding: 18px; }
.infoCard h3{ margin:0 0 8px; font-size: 16px; letter-spacing:-.2px; }
.infoCard p{ margin:0; color: var(--muted); font-weight:600; line-height:1.6; }

.card{ padding: 22px; }
.icon{
  width: 44px; height:44px; border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(0,113,227,.10);
  border: 1px solid rgba(0,113,227,.18);
  margin-bottom: 12px;
  font-size: 20px;
}
.card h3{ margin: 0 0 8px; letter-spacing:-.2px; }
.card p{ margin: 0 0 14px; color: var(--muted); font-weight:600; line-height:1.6; }

.list{ margin:0; padding-left: 18px; color: var(--muted); font-weight:600; line-height:1.7; }
.list li{ margin: 6px 0; }

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.priceCard{ padding: 18px; position:relative; overflow:hidden; }
.priceCard__top{ padding: 10px 8px 12px; }
.priceCard h3{ margin:0; letter-spacing:-.2px; }
.muted{ color: var(--muted); }
.small{ font-size: 12px; }
.price{ font-size: 40px; font-weight:800; margin: 10px 0 0; letter-spacing: -1px; }
.priceNote{ color: var(--muted); font-weight:600; margin: 6px 0 14px; }

.priceCard--featured{
  border-color: rgba(0,113,227,.35);
  box-shadow: 0 24px 70px rgba(0,113,227,.14);
  transform: translateY(-6px);
}
.badge{
  position:absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,113,227,.10);
  border:1px solid rgba(0,113,227,.20);
  color: var(--text);
  font-weight:700;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
}

.note{
  margin-top: 16px;
  border:1px dashed rgba(0,0,0,.18);
  background: rgba(255,255,255,.7);
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--muted);
  font-weight:600;
}

/* Steps */
.steps{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step{ padding: 18px; }
.step__n{
  width: 34px; height:34px; border-radius: 999px;
  display:grid; place-items:center;
  font-weight: 700;
  background: rgba(0,113,227,.12);
  border: 1px solid rgba(0,113,227,.18);
  margin-bottom: 10px;
}
.step h3{ margin: 0 0 8px; font-size: 16px; letter-spacing:-.2px; }
.step p{ margin:0; color: var(--muted); font-weight:600; line-height:1.6; }

/* FAQ */
.faq{ display:grid; gap: 12px; }
.faq__item{ padding: 14px 16px; }
.faq__item summary{ cursor:pointer; font-weight:700; }
.faq__item p{ margin: 10px 0 0; color: var(--muted); font-weight:600; line-height:1.6; }

/* Contact */
.contact{ display:grid; grid-template-columns: 1.05fr .95fr; gap: 16px; align-items:start; }
.contact__chips{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 14px; }
.chipLink{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.02);
  color: var(--text);
  font-weight: 650;
  font-size: 13px;
}

/* Form */
.form{ padding: 16px; background: #fff; }
label{ display:block; font-weight:650; font-size:13px; color: var(--text); margin-bottom: 10px; }
input, select, textarea{
  width:100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(0,113,227,.55);
  box-shadow: 0 0 0 4px rgba(0,113,227,.14);
}

/* Footer */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 28px 0 18px;
  background: #fff;
}
.footer__grid{ display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.footer__brand{ font-weight: 700; }
.footer__links{ display:flex; gap:16px; flex-wrap:wrap; }
.footer__links a{ color: var(--muted); font-weight:600; }
.footer__links a:hover{ color: var(--text); }
.footer__legal{ padding-top: 12px; }

/* WhatsApp floating button */
.wa-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #25D366;
  color:#06110b;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(0,0,0,.20);
}
.wa-float__dot{ width:10px; height:10px; border-radius:999px; background:#06110b; opacity:.85; }

/* Language toggle */
.langToggle{ display:flex; align-items:center; gap:8px; margin-left: 10px; }
.langToggle__btn{
  background: rgba(0,0,0,.02);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: .3px;
}
.langToggle__btn:hover{ color: var(--text); }
.langToggle__btn.is-active{
  background: rgba(0,113,227,.10);
  border-color: rgba(0,113,227,.25);
  color: var(--text);
}

/* Responsive */
@media (max-width: 920px){
  .hero__grid{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .priceCard--featured{ transform:none; }
}
@media (max-width: 820px){
  .nav__toggle{ display:inline-block; }
  .nav__links{
    position:absolute;
    left:0; right:0;
    top:64px;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid var(--line);
    padding: 14px 22px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap: 12px;
  }
  .nav__links.is-open{ display:flex; }
}


/* --- AI Booking Assistant (Apple-inspired) --- */
.aiCard{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.aiKicker{
  font-weight:700;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .2px;
  margin-bottom: 10px;
}
.aiTitle{ margin: 0 0 10px; font-size: 20px; letter-spacing: -.2px; }
.aiDesc{ margin: 0 0 16px; color: var(--muted); font-weight: 600; line-height: 1.6; }
.aiActions{ display:flex; gap: 12px; flex-wrap:wrap; }
.aiNote{ margin-top: 12px; }

.aiPreview{
  border: 1px solid var(--line);
  background: var(--panel2);
  border-radius: 18px;
  padding: 14px;
  min-height: 160px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 10px;
}
.aiBubble{
  max-width: 90%;
  padding: 10px 12px;
  border-radius: 18px;
  font-weight: 650;
  font-size: 13px;
  line-height: 1.35;
}
.aiBubble--bot{
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
}
.aiBubble--user{
  margin-left:auto;
  background: rgba(0,113,227,.12);
  border: 1px solid rgba(0,113,227,.18);
  color: var(--text);
}

/* Drawer */
.aiDrawer{
  position: fixed;
  inset: 0;
  display:none;
  z-index: 80;
}
.aiDrawer.is-open{ display:block; }
.aiDrawer__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(2px);
}
.aiDrawer__panel{
  position:absolute;
  right: 16px;
  bottom: 16px;
  width: min(420px, calc(100% - 32px));
  height: min(640px, calc(100% - 32px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0,0,0,.22);
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
.aiDrawer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(18px);
}
.aiDrawer__brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 800;
  letter-spacing: -.2px;
}
.aiDot{ width:10px; height:10px; border-radius:999px; background:#111; }
.aiClose{
  border: 1px solid var(--line);
  background: rgba(0,0,0,.02);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-weight: 900;
}
.aiChat{
  padding: 14px 14px;
  overflow:auto;
  flex: 1;
  background: var(--panel2);
}
.aiMsg{
  display:flex;
  margin: 10px 0;
}
.aiMsg__bubble{
  max-width: 92%;
  padding: 10px 12px;
  border-radius: 18px;
  font-weight: 650;
  font-size: 13px;
  line-height: 1.35;
  border: 1px solid var(--line);
  background:#fff;
}
.aiMsg--user{ justify-content:flex-end; }
.aiMsg--user .aiMsg__bubble{
  background: rgba(0,113,227,.12);
  border-color: rgba(0,113,227,.18);
}
.aiComposer{
  display:flex;
  gap:10px;
  padding: 12px 12px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.aiInput{
  flex:1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 14px;
  font-weight: 650;
  outline:none;
}
.aiInput:focus{
  border-color: rgba(0,113,227,.55);
  box-shadow: 0 0 0 4px rgba(0,113,227,.14);
}
.aiSend{ padding: 10px 14px; }
.aiDrawer__bottom{
  padding: 10px 14px 12px;
  border-top: 1px solid var(--line);
}

/* Responsive for assistant card */
@media (max-width: 920px){
  .aiCard{ grid-template-columns: 1fr; }
}

/* WhatsApp icon styling */
.wa-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}
.btn .wa-icon {
  margin-right: 6px;
}

/* Round WhatsApp floating button */
.wa-float-round {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 999;
}
.wa-float-round:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
}
.wa-float-round svg {
  width: 28px;
  height: 28px;
}


/* --- Reveal animations (Apple-like subtle) --- */
.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* --- Dark section styling --- */
.section--dark{
  background: radial-gradient(1200px 500px at 20% 0%, rgba(0,113,227,.25), transparent 55%),
              radial-gradient(900px 420px at 90% 40%, rgba(37,211,102,.18), transparent 55%),
              #0b1220;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.section--dark .sectionHead p,
.section--dark .muted{ color: rgba(255,255,255,.75); }
.darkGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:start;
}
.darkKicker{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .3px;
}
.darkTitle{
  margin: 14px 0 10px;
  font-size: 34px;
  letter-spacing: -0.8px;
  line-height: 1.1;
}
.darkLead{
  margin: 0 0 16px;
  color: rgba(255,255,255,.78);
  font-weight: 600;
  line-height: 1.6;
}
.darkActions{ display:flex; gap: 12px; flex-wrap:wrap; }
.section--dark .btn--primary{ background: #ffffff; color:#0b1220; }
.section--dark .btn--secondary{ border-color: rgba(255,255,255,.28); color: rgba(255,255,255,.92); }
.section--dark .btn--secondary:hover{ border-color: rgba(255,255,255,.40); }

.darkCards{
  display:grid;
  gap: 12px;
}
.darkCard{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.darkIcon{
  width: 40px; height: 40px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 18px;
}
.darkCardT{ font-weight: 800; letter-spacing:-.2px; }
.darkCardP{ color: rgba(255,255,255,.78); font-weight: 600; margin-top: 4px; }

/* Hero mock "screenshot" */
.mock__shot{
  height: 140px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), transparent 35%),
    linear-gradient(90deg, rgba(0,113,227,.22), rgba(37,211,102,.14)),
    repeating-linear-gradient(180deg, rgba(255,255,255,.55) 0 10px, rgba(255,255,255,.0) 10px 22px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
  margin-bottom: 14px;
}

/* Responsive */
@media (max-width: 920px){
  .darkGrid{ grid-template-columns: 1fr; }
}

/* APEX Logo */
.apex-logo {
  display:flex;
  align-items:center;
}
.apex-logo svg {
  height: 32px;
  width: auto;
}
.site-header .apex-logo svg {
  color: #111;
}
.section--dark .apex-logo svg {
  color: #fff;
}


/* APEX brand mark (replaces the old dot) */
.brand__mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 20px;
  height: 20px;
}
.brand__mark svg{
  width: 20px;
  height: 20px;
  display:block;
}
/* If any dot still exists, hide it */
.brand__dot{ display:none !important; }

/* Email floating button */
/* Email floating button */
.email-float-round{
  position: fixed;
  right: 20px;
  bottom: 95px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1a73e8;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 998;
}
.email-float-round:hover{
  transform: scale(1.08);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
}
.email-float-round svg{
  width: 28px;
  height: 28px;
}
.email-float-round:hover{
  transform: scale(1.08);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
}
.email-float-round svg{
  width: 26px;
  height: 26px;
}
