/**
 * Caminho.DEV — style-v3.css
 * BASE: CSS copied verbatim from https://caminho.dev/testing15.html
 * ADDITIONS: PHP-specific components appended at the bottom.
 */

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

/* ============================================================
   CSS VARIABLES  — verbatim from testing15.html
============================================================ */
:root {
  --bg-top: #faf8fc;
  --bg-bottom: #f4f1f8;
  --text-dark: #33447c;
  --text-main: #4c5b90;
  --text-soft: #858eae;
  --btn-blue-a: #75dcff;
  --btn-blue-b: #67a8f8;
  --btn-blue-hover-a: #90e5ff;
  --btn-blue-hover-b: #579bf5;
  --btn-purple-a: #c9a1ff;
  --btn-purple-b: #789fff;
  --btn-purple-hover-a: #dab9ff;
  --btn-purple-hover-b: #668fff;
  --card-shadow: 0 24px 54px rgba(97, 109, 162, 0.10);
  --featured-shadow: 0 34px 70px rgba(93, 107, 165, 0.17);
  --feature-card-top: rgba(255, 255, 255, 0.92);
  --feature-card-mid: rgba(255, 255, 255, 0.84);
  --feature-card-bottom: rgba(255, 255, 255, 0.74);
  --feature-card-border: rgba(255, 255, 255, 0.88);
  --feature-title: #2f3560;
  --feature-text: #a5abc0;
  --icon-top: #d9ebff;
  --icon-bottom: #cfe4ff;
  --icon-stroke: #79acef;
  --shadow-inner: inset 0 1px 0 rgba(255,255,255,0.95);
  --heading-dark: #2f3967;
  --heading-accent: #8f9bf1;
  --body-text: #697292;
  --name: #2f3b68;
  --subtext: #aab0c5;
  --quote: #d9d1e3;
  --star: #f3c55d;
  --testimonial-card-bg: rgba(255, 255, 255, 0.78);
  --testimonial-card-border: rgba(231, 233, 244, 0.95);
  --divider: rgba(223, 226, 239, 0.95);
  --testimonial-shadow: 0 18px 38px rgba(118, 126, 167, 0.10);
  --dot: #d5d9e8;
  --dot-active: #8895ef;
  --nav-bg: rgba(255, 255, 255, 0.66);
  --nav-border: rgba(224, 229, 244, 0.82);
  --footer-bg: rgba(255, 255, 255, 0.58);
  --footer-border: rgba(226, 231, 244, 0.88);
}

/* ============================================================
   BASE  — verbatim from testing15.html
============================================================ */
html, body {
  width: 100%;
  min-height: 100%;
  font-family: "Poppins", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(920px 280px at 50% -2%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.48) 38%, rgba(255,255,255,0) 72%),
    radial-gradient(760px 220px at -8% 100%, rgba(230, 217, 245, 0.56) 0%, rgba(230, 217, 245, 0.14) 42%, transparent 70%),
    radial-gradient(760px 220px at 108% 100%, rgba(217, 231, 255, 0.66) 0%, rgba(217, 231, 255, 0.14) 42%, transparent 70%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body::before, body::after {
  content: "";
  position: fixed;
  bottom: -40px;
  width: 700px;
  height: 210px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
  filter: blur(1px);
}

body::before {
  left: -180px;
  background: radial-gradient(circle at center, rgba(228, 215, 245, 0.28), rgba(228, 215, 245, 0.08) 58%, transparent 76%);
}

body::after {
  right: -180px;
  background: radial-gradient(circle at center, rgba(214, 229, 255, 0.35), rgba(214, 229, 255, 0.09) 58%, transparent 76%);
}

.page-aura { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }

.page-aura::before, .page-aura::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.65;
}

.page-aura::before {
  top: -120px;
  right: -140px;
  width: 760px;
  height: 260px;
  background: radial-gradient(ellipse at center, rgba(214, 226, 255, 0.48) 0%, rgba(214, 226, 255, 0.18) 42%, rgba(214, 226, 255, 0.04) 62%, transparent 78%);
  transform: rotate(-10deg);
}

.page-aura::after {
  top: -90px;
  left: -220px;
  width: 900px;
  height: 240px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.35) 44%, rgba(255,255,255,0.05) 68%, transparent 82%);
  transform: rotate(4deg);
}

.wrap { position: relative; z-index: 1; max-width: 1440px; margin: 0 auto; padding: 0 24px 92px; }

/* ============================================================
   NAVBAR  — verbatim from testing15.html
============================================================ */
.site-header { position: sticky; top: 16px; z-index: 50; padding-top: 18px; }

.navbar {
  width: min(1180px, 100%);
  margin: 0 auto;
  height: 74px;
  padding: 0 20px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.78) 0%, var(--nav-bg) 100%);
  border: 1px solid var(--nav-border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92), 0 14px 34px rgba(106, 117, 166, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }

.brand-mark {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d7ebff 0%, #bfdcff 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 8px 18px rgba(116, 164, 235, 0.14);
  flex: 0 0 38px;
}

.brand-mark span { font-size: 17px; font-weight: 700; color: #4f6ab0; letter-spacing: -0.04em; }

.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 16px; font-weight: 700; color: #304077; letter-spacing: -0.03em; }
.brand-text small  { font-size: 11px; color: #8d96b4; font-weight: 500; letter-spacing: 0.02em; }

.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { text-decoration: none; color: #586796; font-size: 15px; font-weight: 500; letter-spacing: -0.01em; transition: color 0.2s ease; }
.nav-links a:hover { color: #4b6eb7; }

.nav-cta {
  height: 44px; padding: 0 20px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600; color: #fff;
  background: linear-gradient(90deg, var(--btn-blue-a) 0%, var(--btn-blue-b) 100%);
  box-shadow: 0 10px 20px rgba(96, 152, 243, 0.20);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 24px rgba(96, 152, 243, 0.26); }

/* ============================================================
   HERO  — verbatim from testing15.html
============================================================ */
.hero { max-width: 980px; margin: 0 auto; text-align: center; padding-top: 92px; }

.hero h1 { font-size: 58px; line-height: 0.96; font-weight: 700; letter-spacing: -0.060em; color: #304077; }

.hero .accent,
.hero .gradient-text {
  background: linear-gradient(90deg, #6d79ef 0%, #6096f4 48%, #7dd0fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero p { max-width: 780px; margin: 28px auto 0; font-size: 17px; line-height: 1.68; font-weight: 400; color: var(--text-soft); }

.hero-actions { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 30px; }

.hero-btn {
  min-width: 166px; height: 44px; padding: 0 26px;
  border-radius: 15px;
  border: 1px solid rgba(186, 198, 231, 0.85);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,249,255,0.88) 100%);
  box-shadow: 0 8px 20px rgba(107, 122, 175, 0.08);
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: #46619d; font-size: 18px; font-weight: 500; letter-spacing: -0.02em;
  transition: all 0.22s ease;
}
.hero-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  border-color: rgba(113, 166, 244, 0.52);
  background: linear-gradient(90deg, #90e3ff 0%, #6eaef8 100%);
  box-shadow: 0 12px 26px rgba(96, 152, 243, 0.22);
}

/* ============================================================
   PRICING  — verbatim from testing15.html
============================================================ */
.pricing { margin-top: 102px; position: relative; }

.pricing::before {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: -58px;
  width: 980px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(210, 216, 241, 0.34) 0%, rgba(210, 216, 241, 0.14) 42%, transparent 74%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.pricing-cards {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.02fr 1fr;
  gap: 0;
  align-items: start;
  position: relative;
  z-index: 1;
}

.plan {
  position: relative;
  min-height: 392px;
  border: 1px solid rgba(233, 237, 248, 0.96);
  background: linear-gradient(180deg, rgba(255,255,255,0.76) 0%, rgba(251,251,255,0.60) 100%);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.plan.left, .plan.right { margin-top: 28px; z-index: 1; overflow: hidden; }
.plan.left  { border-radius: 18px 0 0 18px; }
.plan.right { border-radius: 0 18px 18px 0; }

/* *** FEATURED PLAN — background must be preserved exactly *** */
.plan.featured {
  min-height: 478px;
  margin-top: -10px;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -14px;
  border-radius: 20px;
  z-index: 15;
  overflow: visible;
  border: 1px solid rgba(255,255,255,0.84);
  box-shadow: var(--featured-shadow), inset 0 1px 0 rgba(255,255,255,0.66);
  background:
    radial-gradient(circle at 16% 24%, rgba(255,255,255,0.72) 0 1.5px, transparent 2.7px),
    radial-gradient(circle at 84% 22%, rgba(255,255,255,0.67) 0 1.4px, transparent 2.6px),
    radial-gradient(circle at 77% 58%, rgba(255,255,255,0.44) 0 1.2px, transparent 2.4px),
    linear-gradient(135deg, rgba(255,255,255,0.86) 0%, rgba(245,239,255,0.92) 18%, rgba(225,232,255,0.97) 60%, rgba(247,244,255,0.91) 100%);
}

.plan.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(140% 105% at 80% 16%, rgba(137, 171, 255, 0.18) 0%, rgba(137, 171, 255, 0.06) 35%, transparent 58%),
    linear-gradient(149deg, rgba(255,255,255,0) 34%, rgba(255,255,255,0.28) 50%, rgba(255,255,255,0) 66%);
}

.plan.featured::after {
  content: "";
  position: absolute;
  right: -66px; bottom: 52px;
  width: 565px; height: 198px;
  border-radius: 50%;
  transform: rotate(-17deg);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.46) 0%, rgba(255,255,255,0.10) 100%);
  box-shadow: -52px 32px 0 0 rgba(255,255,255,0.18), -104px 62px 0 0 rgba(255,255,255,0.08);
  opacity: 0.94;
}

.badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  min-width: 146px; height: 22px; padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.80);
  background: linear-gradient(90deg, #f2e9ff 0%, #dddfff 46%, #95ddff 100%);
  box-shadow: 0 8px 18px rgba(109, 124, 193, 0.13);
  color: #5e6c99; font-size: 8px; font-weight: 600; letter-spacing: 0.30em;
  display: flex; align-items: center; justify-content: center;
  white-space: nowrap; z-index: 40; pointer-events: none;
}

.inner { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; padding: 40px 28px 0; }
.featured .inner { padding-left: 28px; padding-right: 28px; }

.name { text-align: center; color: #435287; font-size: 35px; line-height: 1.08; font-weight: 600; letter-spacing: -0.040em; }
.featured .name { font-size: 39px; margin-top: 8px; }

.price { margin-top: 13px; display: flex; justify-content: center; align-items: baseline; gap: 3px; flex-wrap: wrap; color: #46568b; }
.currency { font-size: 21px; font-weight: 500; transform: translateY(-2px); }
.amount { font-size: 61px; line-height: 1; font-weight: 600; letter-spacing: -0.054em; }
.featured .amount { font-size: 62px; }
.suffix { font-size: 15px; font-weight: 400; color: #7780a2; margin-left: 2px; }
.featured .price { margin-top: 12px; }

.rule {
  width: calc(100% + 60px); height: 1px;
  margin: 27px 0 18px -30px;
  background: linear-gradient(90deg, rgba(194, 201, 223, 0.08), rgba(194, 201, 223, 0.34), rgba(194, 201, 223, 0.08));
}
.featured .rule { margin-top: 24px; }

.features { list-style: none; display: flex; flex-direction: column; gap: 10px; padding-bottom: 86px; }
.featured .features { padding-bottom: 104px; }

.features li {
  position: relative;
  display: flex; align-items: center; gap: 9px;
  color: #58648f; font-size: 15px; font-weight: 400; line-height: 1.34;
  padding-bottom: 8px;
}
.features li::before { content: "✓"; flex: 0 0 auto; font-size: 13px; font-weight: 700; color: #8fbaff; transform: translateY(-1px); }
.featured .features li::before { color: #b38ef8; }
.features li::after {
  content: ""; position: absolute; left: 22px; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, rgba(191, 199, 224, 0.20) 0%, rgba(191, 199, 224, 0.10) 70%, rgba(191, 199, 224, 0.00) 100%);
}

.bottom {
  position: absolute; left: 0; right: 0; bottom: 0; height: 64px;
  border-top: 1px solid rgba(194, 201, 223, 0.15);
  background: linear-gradient(180deg, rgba(245,246,252,0.24) 0%, rgba(239,241,249,0.62) 100%);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}

.cta {
  min-width: 142px; height: 35px;
  border: none; border-radius: 10px;
  font-family: inherit; font-size: 16px; font-weight: 600; color: #fff;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg, var(--btn-blue-a) 0%, var(--btn-blue-b) 100%);
  box-shadow: 0 8px 18px rgba(95, 162, 249, 0.18);
  transition: all 0.22s ease;
}
.cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(90deg, var(--btn-blue-hover-a) 0%, var(--btn-blue-hover-b) 100%);
  box-shadow: 0 12px 24px rgba(82, 151, 243, 0.27);
  filter: saturate(1.04);
}
.featured .cta { background: linear-gradient(90deg, var(--btn-purple-a) 0%, var(--btn-purple-b) 100%); box-shadow: 0 8px 18px rgba(136, 134, 246, 0.18); }
.featured .cta:hover { background: linear-gradient(90deg, var(--btn-purple-hover-a) 0%, var(--btn-purple-hover-b) 100%); box-shadow: 0 12px 24px rgba(123, 132, 247, 0.28); }

.footnote { text-align: center; margin-top: 52px; color: #6f799a; font-size: 18px; font-weight: 500; letter-spacing: 0.01em; }

/* ============================================================
   FEATURE CARDS  — verbatim from testing15.html
============================================================ */
.features-section { width: 100%; max-width: 1040px; margin: 112px auto 0; position: relative; }

.features-section::before {
  content: ""; position: absolute; left: 24px; right: 24px; top: 22px; height: 150px;
  border-radius: 30px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.84) 0%, rgba(255,255,255,0.25) 58%, rgba(255,255,255,0) 82%);
  filter: blur(22px); pointer-events: none; z-index: 0;
}

.features-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; align-items: stretch; }

.feature-card {
  position: relative; min-height: 162px; padding: 24px 28px 22px;
  text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  background: linear-gradient(180deg, var(--feature-card-top) 0%, var(--feature-card-mid) 46%, var(--feature-card-bottom) 100%);
  border: 1px solid var(--feature-card-border);
  box-shadow: var(--shadow-inner), 0 24px 54px rgba(129, 119, 160, 0.09), 0 8px 18px rgba(129, 119, 160, 0.04);
  backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  overflow: hidden;
}
.feature-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.09) 40%, rgba(255,255,255,0.02) 100%);
  pointer-events: none;
}
.feature-card:nth-child(1) { border-radius: 18px 0 0 18px; }
.feature-card:nth-child(2) { margin-left: -1px; margin-right: -1px; z-index: 2; }
.feature-card:nth-child(3) { border-radius: 0 18px 18px 0; }
.feature-card:nth-child(1), .feature-card:nth-child(3) { z-index: 1; }

.icon-box {
  width: 32px; height: 32px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, var(--icon-top) 0%, var(--icon-bottom) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.96), 0 6px 14px rgba(113, 162, 230, 0.08);
  margin-bottom: 16px; position: relative; z-index: 2; flex-shrink: 0;
}
.icon-box svg { width: 14px; height: 14px; stroke: var(--icon-stroke); stroke-width: 1.75; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.feature-card h3 { margin: 0 0 12px; color: var(--feature-title); font-size: 16px; line-height: 1.18; font-weight: 600; letter-spacing: -0.03em; position: relative; z-index: 2; }
.feature-card p  { margin: 0; max-width: 238px; color: var(--feature-text); font-size: 11px; line-height: 1.78; font-weight: 400; letter-spacing: -0.01em; position: relative; z-index: 2; }

/* ============================================================
   TESTIMONIALS  — verbatim from testing15.html
============================================================ */
.testimonials { padding: 96px 0 24px; overflow: hidden; position: relative; }

.testimonials::before {
  content: ""; position: absolute; left: 50%; top: 28px; transform: translateX(-50%);
  width: 900px; height: 160px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.64) 0%, rgba(255,255,255,0.18) 42%, transparent 76%);
  filter: blur(16px); pointer-events: none;
}

.container { width: min(1140px, 100%); margin: 0 auto; position: relative; z-index: 1; }

.section-title { margin: 0 0 24px; text-align: center; font-size: clamp(2.15rem, 4vw, 3.3rem); line-height: 0.98; font-weight: 600; letter-spacing: -0.062em; color: var(--heading-dark); }
.section-title span { color: var(--heading-accent); }

.testimonial-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; align-items: stretch; }

.testimonial-card {
  position: relative; min-height: 188px; padding: 20px 24px 16px;
  border-radius: 22px;
  background: var(--testimonial-card-bg);
  border: 1px solid var(--testimonial-card-border);
  box-shadow: var(--testimonial-shadow);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  overflow: hidden; isolation: isolate;
  display: flex; flex-direction: column; justify-content: space-between;
}
.testimonial-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.06) 100%);
  pointer-events: none; z-index: 0;
}
.testimonial-card::after {
  content: ""; position: absolute; right: -14%; bottom: -28%; width: 92%; height: 42%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(198, 202, 236, 0.22) 0%, rgba(198, 202, 236, 0.11) 36%, rgba(198, 202, 236, 0.045) 62%, rgba(198, 202, 236, 0.012) 78%, transparent 100%);
  filter: blur(4px); pointer-events: none; z-index: 0;
}

.card-top, .card-footer { position: relative; z-index: 1; }
.quote-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.quote-mark { width: 44px; height: 26px; flex: 0 0 44px; opacity: 0.94; transform: translateY(-1px); }
.quote-mark svg { width: 44px; height: 26px; display: block; }

.stars { display: inline-flex; align-items: center; gap: 2px; font-size: 1.12rem; line-height: 1; font-weight: 700; color: var(--star); transform: translateY(-1px); }

.testimonial-text { margin: 0; max-width: 98%; font-size: 0.95rem; line-height: 1.5; font-weight: 400; letter-spacing: -0.012em; color: var(--body-text); }

.card-footer { display: flex; align-items: center; gap: 10px; margin-top: 16px; padding-top: 10px; border-top: 1px solid var(--divider); }

.avatar { position: relative; width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; overflow: hidden; }
.avatar-teal { background: #63bed6; }
.avatar-blue { background: #7c92f2; }
.avatar::before { content: ""; position: absolute; top: 5px; left: 10px; width: 8px; height: 8px; border-radius: 50%; background: #eef9fc; }
.avatar::after  { content: ""; position: absolute; left: 7px; bottom: 4px; width: 14px; height: 8px; border-radius: 8px 8px 10px 10px; background: #eef9fc; }
.avatar-blue::before, .avatar-blue::after { background: #eef2ff; }

.author h3 { margin: 0; font-size: 0.92rem; line-height: 1.08; font-weight: 600; letter-spacing: -0.025em; color: var(--name); }
.author p  { margin: 2px 0 0; font-size: 0.78rem; line-height: 1.05; letter-spacing: 0.01em; color: var(--subtext); }

.slider-dots { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 14px; }
.dot { width: 8px; height: 8px; border-radius: 999px; background: var(--dot); border: none; cursor: pointer; padding: 0; transition: all 0.25s ease; }
.dot.active { width: 24px; background: var(--dot-active); }

/* ============================================================
   FOOTER  — verbatim from testing15.html
============================================================ */
.site-footer { margin-top: 88px; padding-bottom: 34px; position: relative; }

.footer-shell {
  width: min(1180px, 100%); margin: 0 auto; padding: 34px 32px 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.72) 0%, var(--footer-bg) 100%);
  border: 1px solid var(--footer-border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92), 0 20px 42px rgba(106, 117, 166, 0.08);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  overflow: hidden; position: relative;
}
.footer-shell::before {
  content: ""; position: absolute; right: -8%; top: -30%; width: 340px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(205, 222, 255, 0.28) 0%, rgba(205, 222, 255, 0.09) 42%, transparent 78%);
  pointer-events: none;
}

.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr; gap: 28px; padding-bottom: 20px; border-bottom: 1px solid rgba(221, 226, 240, 0.82); }

.footer-brand { max-width: 320px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: #8a93b0; }

.footer-title { font-size: 14px; font-weight: 700; letter-spacing: -0.02em; color: #304077; margin-bottom: 14px; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links span { text-decoration: none; color: #7f89a8; font-size: 14px; line-height: 1.5; transition: color 0.2s ease; }
.footer-links a:hover { color: #4b6eb7; }

.footer-bottom { position: relative; z-index: 1; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 13px; color: #9aa2bb; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: #6180c5;
  background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(241,246,255,0.86) 100%);
  border: 1px solid rgba(218, 226, 244, 0.9);
  box-shadow: 0 8px 16px rgba(113, 140, 205, 0.08);
  font-size: 14px; font-weight: 700;
  transition: transform 0.2s ease, color 0.2s ease;
}
.footer-social:hover { transform: translateY(-1px); color: #4b6eb7; }

/* ============================================================
   RESPONSIVE  — verbatim from testing15.html
============================================================ */
@media (max-width: 1150px) {
  .hero h1 { font-size: 50px; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 620px; gap: 22px; }
  .plan.left, .plan.right, .plan.featured { margin-top: 0; margin-left: 0; margin-right: 0; margin-bottom: 0; border-radius: 18px; min-height: auto; }
  .badge { top: 14px; }
  .featured .features { padding-bottom: 86px; }
  .footnote { margin-top: 34px; }
  .features-section { max-width: 920px; margin-top: 82px; }
  .feature-card { min-height: 150px; padding: 21px 24px 18px; }
  .feature-card h3 { font-size: 15px; }
  .feature-card p  { font-size: 10.5px; max-width: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .navbar { flex-wrap: wrap; height: auto; padding: 16px 18px; justify-content: space-between; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 900px) {
  .testimonial-cards { grid-template-columns: 1fr; gap: 14px; }
  .testimonial-card  { min-height: unset; }
  .testimonials-track .testimonial-card { min-width: 100%; }
}

@media (max-width: 860px) {
  .features-section { max-width: 100%; margin-top: 60px; }
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card, .feature-card:nth-child(1), .feature-card:nth-child(2), .feature-card:nth-child(3) { border-radius: 18px; margin: 0; min-height: 146px; }
}

@media (max-width: 768px) {
  .wrap { padding: 0 16px 34px; }
  .site-header { top: 10px; }
  .hero { padding-top: 78px; }
  .hero h1 { font-size: 40px; }
  .hero p  { font-size: 16px; }
  .hero-btn { min-width: 148px; font-size: 17px; }
  .pricing { margin-top: 68px; }
  .name { font-size: 30px; }
  .featured .name { font-size: 35px; }
  .amount, .featured .amount { font-size: 52px; }
  .features-section { margin-top: 52px; }
  .feature-card { padding: 20px 22px 18px; }
  .feature-card h3 { font-size: 17px; }
  .feature-card p  { font-size: 12px; line-height: 1.66; }
  .testimonials { padding-top: 72px; }
  .footer-shell { padding: 26px 20px 18px; border-radius: 22px; }
  .footer-grid  { grid-template-columns: 1fr; gap: 24px; }
  .contact-section { padding: 60px 0 0; }
  .contact-card { padding: 28px 20px; border-radius: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .form-group input, .form-group textarea, .form-group select { font-size: 16px; /* prevent iOS zoom */ }
  .form-footer { flex-direction: column; align-items: stretch; gap: 14px; }
  .form-actions { flex-direction: column; gap: 10px; }
  .form-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  .section-title { margin-bottom: 16px; font-size: 1.95rem; }
  .clients-label { font-size: 22px; }
  .client-badge { font-size: 16px; padding: 8px 20px; }
  .testimonial-card { padding: 16px 16px 12px; border-radius: 18px; }
  .quote-row { gap: 8px; margin-bottom: 7px; }
  .quote-mark { width: 36px; height: 21px; flex-basis: 36px; }
  .quote-mark svg { width: 36px; height: 21px; }
  .stars { font-size: 0.96rem; }
  .testimonial-text { font-size: 0.91rem; line-height: 1.45; }
  .card-footer { margin-top: 12px; padding-top: 8px; }
  .author h3 { font-size: 0.86rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .modal-content { padding: 24px 20px; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 34px; }
  .hero-btn { width: 100%; max-width: 240px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 14px; }
  .inner, .featured .inner { padding-left: 22px; padding-right: 22px; }
  .rule { width: calc(100% + 44px); margin-left: -22px; }
  .features li { font-size: 14px; }
  .feature-card { min-height: 144px; }
  .icon-box { width: 34px; height: 34px; margin-bottom: 16px; }
  .icon-box svg { width: 15px; height: 15px; }
  .feature-card h3 { font-size: 16px; margin-bottom: 10px; }
  .feature-card p  { font-size: 11.5px; }
  /* Contact form – very small phones */
  .contact-card { padding: 22px 16px; }
  .contact-form { gap: 12px; }
  .form-group label { font-size: 12px; }
  .form-group input, .form-group textarea, .form-group select { padding: 11px 14px; border-radius: 10px; }
  .form-group textarea { min-height: 100px; }
  .form-note { font-size: 11px; }
  .btn { height: 46px; font-size: 14px; border-radius: 11px; }
}

/* ============================================================
   PHP ADDITIONS — not in testing15.html
============================================================ */

/* Logo image (uploaded via admin) */
.logo-image { height: 36px; width: auto; display: block; }

/* Nav right cluster */
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Hero primary button */
.hero-btn.primary {
  color: #fff;
  border-color: rgba(113,166,244,0.52);
  background: linear-gradient(90deg, var(--btn-blue-a) 0%, var(--btn-blue-b) 100%);
  box-shadow: 0 10px 24px rgba(96,152,243,0.22);
}
.hero-btn.primary:hover {
  background: linear-gradient(90deg, var(--btn-blue-hover-a) 0%, var(--btn-blue-hover-b) 100%);
  box-shadow: 0 14px 30px rgba(96,152,243,0.30);
}

/* Pricing monthly/yearly toggle */
.pricing-toggle-wrap { display: flex; justify-content: center; align-items: center; gap: 6px; margin-bottom: 38px; }
.pricing-toggle-btn {
  height: 38px; padding: 0 20px;
  border-radius: 12px;
  border: 1px solid rgba(191,200,228,0.7);
  background: rgba(255,255,255,0.7);
  color: #7580a0; font-size: 14px; font-weight: 500; font-family: inherit;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s ease;
}
.pricing-toggle-btn.active { background: rgba(255,255,255,0.97); color: #304077; font-weight: 600; border-color: rgba(113,166,244,0.45); box-shadow: 0 4px 14px rgba(98,114,228,0.10); }
.pricing-save-pill { font-size: 11px; font-weight: 700; color: #6b8fef; background: rgba(113,166,244,0.12); padding: 2px 8px; border-radius: 999px; }

/* Language selector */
.lang-selector { position: relative; }
.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  height: 38px; padding: 0 12px;
  border-radius: 12px; border: 1px solid var(--nav-border);
  background: rgba(255,255,255,0.72);
  color: #586796; font-size: 13px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: border-color 0.2s, background 0.2s; white-space: nowrap;
}
.lang-toggle:hover { border-color: rgba(113,166,244,0.5); background: rgba(255,255,255,0.92); }
.lang-arrow { transition: transform 0.2s ease; opacity: 0.5; }
.lang-selector.active .lang-arrow { transform: rotate(180deg); }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 150px; border-radius: 14px;
  background: rgba(255,255,255,0.96); border: 1px solid var(--nav-border);
  box-shadow: 0 16px 40px rgba(106,117,166,0.14);
  backdrop-filter: blur(16px); overflow: hidden; z-index: 200; flex-direction: column;
}
.lang-selector.active .lang-dropdown { display: flex; }
.lang-option { display: flex; align-items: center; gap: 10px; padding: 10px 14px; text-decoration: none; color: #586796; font-size: 14px; font-weight: 500; transition: background 0.15s; }
.lang-option:hover  { background: rgba(113,166,244,0.07); color: #4b6eb7; }
.lang-option.active { background: rgba(113,166,244,0.10); color: #4b6eb7; font-weight: 600; }
/* flag-icons sizing in lang selector */
.lang-toggle .fi,
.lang-option .fi { width: 20px; height: 15px; border-radius: 2px; flex-shrink: 0; }
.lang-code { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; }
.lang-name  { font-size: 14px; }

/* Mobile hamburger + slide-out menu */
.nav-burger { display: none; width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--nav-border); background: rgba(255,255,255,0.72); align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; }
.nav-burger-bar { position: relative; width: 18px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: background 0.2s; }
.nav-burger-bar::before, .nav-burger-bar::after { content: ""; position: absolute; width: 18px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.2s ease; }
.nav-burger-bar::before { top: -5px; }
.nav-burger-bar::after  { bottom: -5px; }
.nav-burger.open .nav-burger-bar          { background: transparent; }
.nav-burger.open .nav-burger-bar::before  { top: 0; transform: rotate(45deg); }
.nav-burger.open .nav-burger-bar::after   { bottom: 0; transform: rotate(-45deg); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(48,57,103,0.35); opacity: 0; visibility: hidden; z-index: 998; transition: all 0.3s ease; }
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu { position: fixed; top: 0; right: -290px; width: 270px; height: 100vh; z-index: 999; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); padding: 80px 28px 40px; transition: right 0.3s ease; display: flex; flex-direction: column; gap: 24px; box-shadow: -6px 0 30px rgba(48,57,103,0.10); }
.mobile-menu.open { right: 0; }
.mobile-nav-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link { display: block; padding: 12px 16px; border-radius: 12px; text-decoration: none; color: #586796; font-size: 16px; font-weight: 500; transition: background 0.2s, color 0.2s; }
.mobile-nav-link:hover { background: rgba(113,166,244,0.08); color: #4b6eb7; }
.mobile-cta-btn { display: flex; align-items: center; justify-content: center; height: 48px; border-radius: 14px; background: linear-gradient(90deg, var(--btn-blue-a) 0%, var(--btn-blue-b) 100%); color: #fff; font-size: 15px; font-weight: 600; text-decoration: none; box-shadow: 0 8px 20px rgba(96,152,243,0.20); }

/* Portfolio section */
.portfolio-section { padding: 88px 0 0; }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.project-card { border-radius: 20px; overflow: hidden; background: rgba(255,255,255,0.80); border: 1px solid rgba(226,231,244,0.90); box-shadow: 0 14px 36px rgba(106,117,166,0.08); backdrop-filter: blur(12px); transition: transform 0.22s ease, box-shadow 0.22s ease; }
.project-card:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(106,117,166,0.14); }
.project-image { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(135deg, #e8eeff 0%, #f0e8ff 100%); }
.project-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.project-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: #9aa4c4; padding: 24px; text-align: center; }
.project-info { padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.project-title { font-size: 15px; font-weight: 600; color: #304077; margin: 0 0 4px; }
.project-meta  { font-size: 13px; color: var(--subtext); margin: 0; }
.project-link  { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #6b8fef; text-decoration: none; white-space: nowrap; transition: color 0.2s; }
.project-link:hover { color: #4b6eb7; }
.project-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.empty-state { text-align: center; padding: 48px; color: var(--subtext); font-size: 15px; }

/* Section label */
.section-label { display: block; text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: #8f9bf1; text-transform: uppercase; margin-bottom: 12px; }

/* Testimonials slider wrapper */
.testimonials-slider { overflow: hidden; position: relative; }
.testimonials-track { display: flex; gap: 16px; transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94); }
.testimonials-track .testimonial-card { min-width: calc(50% - 8px); }

/* Avatar initial (PHP uses a letter instead of CSS shapes) */
.avatar-initial { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #b8c8f8 0%, #9ab0f0 100%); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; }

/* ============================================================
   PORTAL USER NAV DROPDOWN
============================================================ */
.nav-portal-user { position: relative; }
.nav-portal-toggle {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 6px;
  background: rgba(255,255,255,0.72);
  border: 1.5px solid rgba(98,114,228,0.22);
  border-radius: 40px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  color: var(--text-dark);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav-portal-toggle:hover { border-color: rgba(98,114,228,0.50); background: rgba(255,255,255,0.90); box-shadow: 0 4px 14px rgba(98,114,228,0.12); }
.nav-portal-avatar { width: 28px; height: 28px; background: linear-gradient(135deg, #6272e4, #789fff); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.nav-portal-label { display: flex; flex-direction: column; line-height: 1.2; }
.nav-portal-greeting { font-size: 10px; color: var(--subtext); font-weight: 500; }
.nav-portal-name { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.nav-portal-arrow { transition: transform 0.2s ease; color: var(--subtext); flex-shrink: 0; }
.nav-portal-user.active .nav-portal-arrow { transform: rotate(180deg); }
.nav-portal-dropdown {
  display: none;
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 200px;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(218,226,244,0.90);
  border-radius: 16px; padding: 6px;
  box-shadow: 0 16px 40px rgba(95,107,165,0.16);
  z-index: 9999;
  flex-direction: column;
}
.nav-portal-user.active .nav-portal-dropdown { display: flex; }
.nav-portal-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 10px; font-size: 13px; color: var(--text-main); text-decoration: none; transition: background 0.15s ease; }
.nav-portal-item:hover { background: rgba(240,243,255,0.90); color: var(--text-dark); }
.nav-portal-item svg { opacity: 0.6; flex-shrink: 0; }
.nav-portal-item:hover svg { opacity: 1; }
.nav-portal-divider { height: 1px; background: rgba(218,226,244,0.80); margin: 4px 8px; }
.nav-portal-signout { color: #dc2626 !important; }
.nav-portal-signout svg { color: #dc2626; opacity: 0.7 !important; }
.nav-portal-signout:hover { background: rgba(239,68,68,0.08) !important; }

/* ── Businesses that trust us ─────────────────────────────────── */
.clients-wrap {
  margin-top: 64px;
  text-align: center;
}
.clients-label {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--heading-dark);
  margin-bottom: 32px;
  line-height: 1.2;
}
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

/* Badge base */
.client-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 26px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.client-badge:hover {
  transform: translateY(-2px);
}

/* 8 colour slots */
.trust-c-0 {
  background-image: linear-gradient(135deg, #c084fc, #818cf8);
  background-color: rgba(192,132,252,0.08);
  border-color: rgba(192,132,252,0.22);
  -webkit-background-clip: text;
  box-shadow: 0 4px 18px rgba(192,132,252,0.12);
}
.trust-c-0:hover { box-shadow: 0 8px 28px rgba(192,132,252,0.22); }

.trust-c-1 {
  background-image: linear-gradient(135deg, #60a5fa, #38bdf8);
  background-color: rgba(96,165,250,0.08);
  border-color: rgba(96,165,250,0.22);
  -webkit-background-clip: text;
  box-shadow: 0 4px 18px rgba(96,165,250,0.12);
}
.trust-c-1:hover { box-shadow: 0 8px 28px rgba(96,165,250,0.22); }

.trust-c-2 {
  background-image: linear-gradient(135deg, #34d399, #059669);
  background-color: rgba(52,211,153,0.08);
  border-color: rgba(52,211,153,0.22);
  -webkit-background-clip: text;
  box-shadow: 0 4px 18px rgba(52,211,153,0.12);
}
.trust-c-2:hover { box-shadow: 0 8px 28px rgba(52,211,153,0.22); }

.trust-c-3 {
  background-image: linear-gradient(135deg, #fb923c, #f43f5e);
  background-color: rgba(251,146,60,0.08);
  border-color: rgba(251,146,60,0.22);
  -webkit-background-clip: text;
  box-shadow: 0 4px 18px rgba(251,146,60,0.12);
}
.trust-c-3:hover { box-shadow: 0 8px 28px rgba(251,146,60,0.22); }

.trust-c-4 {
  background-image: linear-gradient(135deg, #f472b6, #c084fc);
  background-color: rgba(244,114,182,0.08);
  border-color: rgba(244,114,182,0.22);
  -webkit-background-clip: text;
  box-shadow: 0 4px 18px rgba(244,114,182,0.12);
}
.trust-c-4:hover { box-shadow: 0 8px 28px rgba(244,114,182,0.22); }

.trust-c-5 {
  background-image: linear-gradient(135deg, #22d3ee, #6366f1);
  background-color: rgba(34,211,238,0.08);
  border-color: rgba(34,211,238,0.22);
  -webkit-background-clip: text;
  box-shadow: 0 4px 18px rgba(34,211,238,0.12);
}
.trust-c-5:hover { box-shadow: 0 8px 28px rgba(34,211,238,0.22); }

.trust-c-6 {
  background-image: linear-gradient(135deg, #fbbf24, #f59e0b);
  background-color: rgba(251,191,36,0.08);
  border-color: rgba(251,191,36,0.22);
  -webkit-background-clip: text;
  box-shadow: 0 4px 18px rgba(251,191,36,0.12);
}
.trust-c-6:hover { box-shadow: 0 8px 28px rgba(251,191,36,0.22); }

.trust-c-7 {
  background-image: linear-gradient(135deg, #a78bfa, #ec4899);
  background-color: rgba(167,139,250,0.08);
  border-color: rgba(167,139,250,0.22);
  -webkit-background-clip: text;
  box-shadow: 0 4px 18px rgba(167,139,250,0.12);
}
.trust-c-7:hover { box-shadow: 0 8px 28px rgba(167,139,250,0.22); }

/* Contact section */
.contact-section { padding: 88px 0 0; }
.contact-card { max-width: 720px; margin: 0 auto; padding: 40px 40px 36px; border-radius: 28px; background: rgba(255,255,255,0.82); border: 1px solid rgba(226,231,244,0.90); box-shadow: 0 20px 52px rgba(106,117,166,0.09); backdrop-filter: blur(18px); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: #5a678a; letter-spacing: -0.01em; }
.form-group input, .form-group textarea, .form-group select { padding: 12px 16px; border-radius: 12px; border: 1px solid rgba(191,200,228,0.7); background: rgba(255,255,255,0.92); font-family: inherit; font-size: 14px; color: #304077; outline: none; transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: rgba(107,143,239,0.6); box-shadow: 0 0 0 3px rgba(107,143,239,0.10); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.form-note { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--subtext); }
.form-actions { display: flex; align-items: center; gap: 10px; }
.form-success { text-align: center; padding: 48px 24px; display: flex; flex-direction: column; align-items: center; gap: 16px; color: #6b8fef; }
.form-success p { font-size: 16px; font-weight: 500; color: #304077; }

/* General buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 22px; border-radius: 12px; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; border: none; text-decoration: none; transition: all 0.22s ease; }
.btn-primary { color: #fff; background: linear-gradient(90deg, var(--btn-blue-a) 0%, var(--btn-blue-b) 100%); box-shadow: 0 8px 20px rgba(96,152,243,0.20); }
.btn-primary:hover { transform: translateY(-1px); background: linear-gradient(90deg, var(--btn-blue-hover-a) 0%, var(--btn-blue-hover-b) 100%); box-shadow: 0 12px 26px rgba(96,152,243,0.28); }
.btn-secondary { color: #586796; background: rgba(255,255,255,0.80); border: 1px solid rgba(191,200,228,0.7); box-shadow: 0 4px 12px rgba(106,117,166,0.06); }
.btn-secondary:hover { color: #4b6eb7; border-color: rgba(113,166,244,0.5); background: rgba(255,255,255,0.97); }
.btn-block { width: 100%; justify-content: center; }

/* Booking modal */
.modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.modal.active { display: block; }
.modal-overlay { position: absolute; inset: 0; background: rgba(48,57,103,0.45); backdrop-filter: blur(4px); }
.modal-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(680px, calc(100vw - 32px)); max-height: calc(100vh - 64px); overflow-y: auto; border-radius: 24px; background: rgba(255,255,255,0.97); border: 1px solid rgba(226,231,244,0.90); box-shadow: 0 32px 80px rgba(48,57,103,0.22); padding: 36px; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 10px; border: 1px solid rgba(191,200,228,0.6); background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center; cursor: pointer; color: #7580a0; transition: all 0.2s; }
.modal-close:hover { color: #304077; background: #fff; }
.booking-title { font-size: 22px; font-weight: 700; color: #304077; letter-spacing: -0.04em; margin-bottom: 4px; }
.booking-subtitle { font-size: 14px; color: var(--subtext); margin-bottom: 24px; }
.calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.calendar-month { font-size: 15px; font-weight: 600; color: #304077; }
.calendar-nav { width: 32px; height: 32px; border-radius: 8px; border: 1px solid rgba(191,200,228,0.6); background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center; cursor: pointer; color: #7580a0; transition: all 0.2s; }
.calendar-nav:hover { color: #304077; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 13px; font-weight: 500; color: #586796; cursor: pointer; transition: all 0.15s; }
.calendar-day.header { font-size: 11px; font-weight: 700; color: var(--subtext); cursor: default; }
.calendar-day.other-month { color: #c8d0e4; cursor: default; }
.calendar-day.disabled { color: #c8d0e4; cursor: not-allowed; }
.calendar-day.selected { background: linear-gradient(135deg, #b0c8ff, #9fb8f5); color: #fff; font-weight: 600; }
.calendar-day:not(.header):not(.disabled):not(.other-month):not(.selected):hover { background: rgba(107,143,239,0.10); color: #4b6eb7; }
.time-slots { margin-top: 20px; }
.time-slots h4, .booking-details h4 { font-size: 14px; font-weight: 700; color: #5a678a; margin-bottom: 12px; letter-spacing: -0.01em; }
.slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.slot-btn, .time-slot { padding: 10px; border-radius: 10px; border: 1px solid rgba(191,200,228,0.6); background: rgba(255,255,255,0.85); font-family: inherit; font-size: 13px; font-weight: 500; color: #586796; cursor: pointer; text-align: center; transition: all 0.15s; }
.slot-btn:hover, .time-slot:hover { border-color: rgba(107,143,239,0.5); color: #4b6eb7; background: rgba(107,143,239,0.06); }
.time-slot.selected { background: linear-gradient(135deg, #b0c8ff, #9fb8f5); color: #fff; border-color: transparent; font-weight: 600; }
.booking-details { margin-top: 20px; }
.booking-summary { border-radius: 12px; background: rgba(240,244,255,0.7); padding: 14px 16px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.summary-row { display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.summary-label { color: var(--subtext); font-weight: 500; }
.summary-value { color: #304077; font-weight: 600; }

/* Cookie consent — styles live in includes/cookie-consent.php */

/* WhatsApp button */
.whatsapp-btn { position: fixed; bottom: 24px; right: 24px; width: 54px; height: 54px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; box-shadow: 0 8px 24px rgba(37,211,102,0.35); z-index: 800; transition: transform 0.22s ease, box-shadow 0.22s ease; }
.whatsapp-btn:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 12px 30px rgba(37,211,102,0.42); }
.whatsapp-btn svg { width: 28px; height: 28px; }

/* Language suggestion popup */
.lang-suggestion { position: fixed; bottom: 20px; right: 20px; background: linear-gradient(160deg, rgba(255,255,255,0.96) 0%, rgba(247,244,255,0.98) 100%); border: 1px solid rgba(200,208,240,0.70); border-radius: 16px; padding: 14px 36px 14px 14px; display: flex; align-items: flex-start; gap: 10px; max-width: 290px; box-shadow: 0 8px 32px rgba(97,109,162,0.15); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); z-index: 9997; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all 0.3s ease; font-family: 'Poppins', sans-serif; }
.lang-suggestion.show { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-suggestion-icon { flex-shrink: 0; width: 32px; height: 32px; background: linear-gradient(135deg, #c9a1ff 0%, #789fff 100%); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; }
.lang-suggestion-content { flex: 1; min-width: 0; }
.lang-suggestion-text { margin-bottom: 10px; }
.lang-suggestion-text p { font-size: 12px; color: #697292; line-height: 1.5; margin: 0; }
.lang-suggestion-actions { display: flex; gap: 6px; }
.lang-suggestion-dismiss, .lang-suggestion-switch { padding: 6px 11px; border-radius: 7px; font-size: 11px; font-weight: 600; cursor: pointer; border: none; text-decoration: none; transition: all 0.2s ease; font-family: 'Poppins', sans-serif; line-height: 1; display: inline-flex; align-items: center; }
.lang-suggestion-dismiss { background: transparent; color: #9098b5; border: 1px solid rgba(200,208,240,0.80); }
.lang-suggestion-dismiss:hover { background: rgba(143,155,241,0.08); color: #6272e4; border-color: #8f9bf1; }
.lang-suggestion-switch { background: linear-gradient(135deg, #c9a1ff 0%, #789fff 100%); color: #fff; }
.lang-suggestion-switch:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(121,105,210,0.25); }
.lang-suggestion-close { position: absolute; top: 8px; right: 8px; width: 20px; height: 20px; background: transparent; border: none; color: #b0b8d4; cursor: pointer; display: flex; align-items: center; justify-content: center; border-radius: 4px; transition: all 0.2s ease; padding: 0; }
.lang-suggestion-close:hover { background: rgba(143,155,241,0.10); color: #6272e4; }
@media (max-width: 480px) { .lang-suggestion { bottom: 12px; right: 12px; left: 12px; max-width: none; } }

/* Utilities */
.gradient-text { background: linear-gradient(90deg, #6d79ef 0%, #6096f4 48%, #7dd0fd 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: transparent; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* Scroll animation (main.js adds this class) */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in-up { animation: fadeInUp 0.55s ease forwards; }

/* Print + reduced motion */
@media print {
  .site-header, .mobile-menu, .mobile-overlay, .modal, .cookie-popup, .cookie-mini-btn, .whatsapp-btn { display: none !important; }
  body { background: #fff; color: #000; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
