/* =============================================
   TALUL MORAI DIGITAL - STYLE.CSS
   Bento Grid Design System
   ============================================= */

/* --- CSS Custom Properties --- */
:root {
  --clr-bg: #f5f3ef;
  --clr-bg-alt: #eeeae3;
  --clr-surface: #ffffff;
  --clr-surface-2: #f9f7f4;
  --clr-primary: #2d2a26;
  --clr-primary-light: #4a453e;
  --clr-accent: #c8773a;
  --clr-accent-light: #e8956a;
  --clr-accent-dark: #9e5a25;
  --clr-accent-pale: #f5e6d8;
  --clr-teal: #2a6b6e;
  --clr-teal-light: #3a8a8e;
  --clr-teal-pale: #d4ecec;
  --clr-text: #2d2a26;
  --clr-text-muted: #6b6560;
  --clr-text-light: #9b9590;
  --clr-border: #e0dbd3;
  --clr-border-strong: #c8c0b5;

  --shadow-sm: 0 1px 3px rgba(45,42,38,0.06), 0 1px 2px rgba(45,42,38,0.04);
  --shadow-md: 0 4px 12px rgba(45,42,38,0.08), 0 2px 6px rgba(45,42,38,0.05);
  --shadow-lg: 0 10px 30px rgba(45,42,38,0.12), 0 4px 12px rgba(45,42,38,0.07);
  --shadow-xl: 0 20px 50px rgba(45,42,38,0.15), 0 8px 20px rgba(45,42,38,0.08);
  --shadow-accent: 0 8px 24px rgba(200,119,58,0.20), 0 3px 8px rgba(200,119,58,0.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --gap: 14px;
  --sec-pad: clamp(60px, 8vw, 100px);

  --font: 'Commissioner', sans-serif;

  --hdr-h: 68px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: var(--font); cursor: pointer; }

/* --- Typography Scale --- */
h1 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }
p { font-size: 1rem; line-height: 1.7; color: var(--clr-text-muted); }

/* --- Header --- */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: none;
  transition: box-shadow 0.3s ease;
  height: var(--hdr-h);
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--hdr-h);
  padding: 0 clamp(16px, 4vw, 48px);
  max-width: 1400px;
  margin: 0 auto;
}

.hdr-logo { display: flex; align-items: center; }
.logo-img { height: 38px; width: auto; }

.hdr-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1100;
}
.hdr-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hdr-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hdr-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45,42,38,0.45);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
}
.drawer-overlay.visible { opacity: 1; pointer-events: all; }

.hdr-drawer {
  position: fixed;
  top: 0; left: 0;
  width: min(320px, 88vw);
  height: 100vh;
  background: var(--clr-surface);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}
.hdr-drawer.open { transform: translateX(0); }

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--clr-border);
}
.drawer-logo img { height: 34px; }
.drawer-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--clr-text-muted);
  padding: 8px;
  transition: color 0.2s;
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.drawer-close:hover { color: var(--clr-accent); }

.drawer-nav {
  padding: 24px 0;
  flex: 1;
}
.drawer-nav li a {
  display: block;
  padding: 14px 28px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--clr-text);
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  min-height: 44px;
}
.drawer-nav li a:hover,
.drawer-nav li a.active {
  color: var(--clr-accent);
  border-left-color: var(--clr-accent);
  background: var(--clr-accent-pale);
}

.drawer-cta {
  padding: 24px;
  border-top: 1px solid var(--clr-border);
}
.drawer-contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer-contact a {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  min-height: 44px;
}
.drawer-contact a:hover { color: var(--clr-accent); }
.drawer-contact i { color: var(--clr-accent); width: 16px; }

/* --- Sections --- */
.sec {
  padding: var(--sec-pad) clamp(16px, 4vw, 48px);
}
.sec-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.sec-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 70px);
}
.sec-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: var(--clr-accent-pale);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.sec-title {
  color: var(--clr-primary);
  margin-bottom: 16px;
}
.sec-sub {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  margin-top: 8px;
}

/* --- Bento Cell Base --- */
.bento-cell {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}
.bento-cell:hover {
  box-shadow: var(--shadow-md);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--clr-accent);
  color: #fff;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: 2px solid var(--clr-accent);
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 48px;
  white-space: nowrap;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--clr-accent-dark);
  border-color: var(--clr-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(200,119,58,0.28), 0 4px 10px rgba(200,119,58,0.15);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--clr-primary);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: 2px solid var(--clr-border-strong);
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 48px;
}
.btn-ghost:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  background: var(--clr-accent-pale);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--clr-accent);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: 2px solid var(--clr-accent);
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 48px;
}
.btn-outline:hover {
  background: var(--clr-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-accent);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.2s ease, color 0.2s ease;
}
.btn-link:hover { gap: 12px; color: var(--clr-accent-dark); }

.btn-full { width: 100%; }
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.mt-4 { margin-top: 16px; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-sec {
  padding-top: calc(var(--hdr-h) + clamp(24px, 4vw, 48px));
  background: var(--clr-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--gap);
  grid-template-areas:
    "main main stat-a"
    "img  form  stat-b";
}

.hero-main {
  grid-area: main;
  background: var(--clr-primary);
  color: #fff;
  padding: clamp(32px, 4vw, 52px);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.hero-main::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(200,119,58,0.12);
  pointer-events: none;
}
.hero-main::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 30%;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(200,119,58,0.07);
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent-light);
  background: rgba(200,119,58,0.15);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero-title {
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.accent-text { color: var(--clr-accent-light); }

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-main .btn-ghost {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
}
.hero-main .btn-ghost:hover {
  border-color: var(--clr-accent-light);
  color: var(--clr-accent-light);
  background: rgba(200,119,58,0.12);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  min-height: 120px;
}
.stat-a { grid-area: stat-a; background: var(--clr-accent); border-color: transparent; }
.stat-b { grid-area: stat-b; background: var(--clr-teal); border-color: transparent; }

.stat-ico {
  font-size: 1.6rem;
  color: rgba(255,255,255,0.7);
}
.stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.stat-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.hero-img-cell {
  grid-area: img;
  padding: 0;
  overflow: hidden;
  min-height: 260px;
  position: relative;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hero-img-cell:hover .hero-img { transform: scale(1.03); }
.img-overlay-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(45,42,38,0.82);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.hero-form-cell {
  grid-area: form;
  background: var(--clr-surface);
  padding: 28px;
}
.form-cell-head {
  margin-bottom: 20px;
}
.form-cell-head h3 {
  color: var(--clr-primary);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.form-cell-head p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

/* =============================================
   FORMS
   ============================================= */
.frm-row { margin-bottom: 12px; }
.frm-input {
  width: 100%;
  padding: 11px 16px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--clr-text);
  background: var(--clr-bg);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 44px;
}
.frm-input:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(200,119,58,0.12);
  background: var(--clr-surface);
}
.frm-textarea { resize: vertical; min-height: 90px; line-height: 1.5; }
.frm-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.frm-label-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.frm-label-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--clr-accent);
  cursor: pointer;
}
.frm-label-check a { color: var(--clr-accent); }
.frm-label-check a:hover { text-decoration: underline; }

/* Contact page form */
.frm-group { margin-bottom: 24px; }
.frm-lbl {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 8px;
}
.frm-helper {
  display: block;
  font-size: 0.78rem;
  color: var(--clr-text-light);
  margin-top: 6px;
  line-height: 1.4;
}
.frm-check-group { margin-bottom: 28px; }

/* =============================================
   BENEFITS SECTION
   ============================================= */
.benefits-sec { background: var(--clr-bg-alt); }

.bento-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.ben-cell { padding: 32px; }
.ben-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.ben-wide > div,
.ben-wide > h3,
.ben-wide > p { }
.ben-wide .ben-img {
  grid-column: 2;
  grid-row: 1 / 4;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.ben-tall { grid-row: span 1; }

.ben-ico-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--clr-accent-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-accent);
  margin-bottom: 16px;
  transition: background 0.2s, transform 0.2s;
}
.ben-cell:hover .ben-ico-wrap {
  background: var(--clr-accent);
  color: #fff;
  transform: scale(1.05);
}
.ben-cell h3 { color: var(--clr-primary); margin-bottom: 10px; }
.ben-cell p { font-size: 0.9rem; }

.ben-accent {
  background: var(--clr-primary);
  border-color: transparent;
}
.ben-accent h3 { color: #fff; }
.ben-accent p { color: rgba(255,255,255,0.7); }
.ben-accent .ben-ico-wrap {
  background: rgba(200,119,58,0.2);
  color: var(--clr-accent-light);
}
.ben-accent:hover .ben-ico-wrap {
  background: var(--clr-accent);
  color: #fff;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-sec { background: var(--clr-surface); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--clr-accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: var(--shadow-accent);
}
.about-badge i { font-size: 1.2rem; }
.about-txt-col .sec-tag { margin-bottom: 12px; }
.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--clr-primary);
  line-height: 1.6;
  margin: 16px 0;
}
.about-body {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
  line-height: 1.75;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-sec { background: var(--clr-bg); }

.bento-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.svc-main {
  grid-column: span 1;
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 340px;
}
.svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-main:hover .svc-img { transform: scale(1.04); }
.svc-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(45,42,38,0.92) 0%, rgba(45,42,38,0.4) 60%, transparent 100%);
  color: #fff;
}
.svc-overlay h3 { color: #fff; margin-bottom: 8px; font-size: 1.2rem; }
.svc-overlay p { color: rgba(255,255,255,0.8); font-size: 0.85rem; }

.svc-cell { padding: 28px; }
.svc-ico {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--clr-accent-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-accent);
  margin-bottom: 14px;
  transition: all 0.25s ease;
}
.svc-cell:hover .svc-ico {
  background: var(--clr-accent);
  color: #fff;
  transform: rotate(-5deg) scale(1.08);
}
.svc-cell h3 { color: var(--clr-primary); margin-bottom: 8px; font-size: 1rem; }
.svc-cell p { font-size: 0.875rem; line-height: 1.6; }

/* =============================================
   FEATURE SECTIONS (ZIGZAG)
   ============================================= */
.features-sec { background: var(--clr-bg-alt); }
.features-title { margin-bottom: clamp(40px, 6vw, 64px); }

.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(56px, 8vw, 96px);
}
.feat-row:last-child { margin-bottom: 0; }
.feat-row-reverse .feat-img-col { order: 2; }
.feat-row-reverse .feat-txt-col { order: 1; }

.feat-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feat-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feat-img-wrap:hover .feat-img { transform: scale(1.04); }

.feat-num {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 12px;
}
.feat-txt-col h3 { color: var(--clr-primary); margin-bottom: 16px; font-size: 1.5rem; }
.feat-txt-col p { margin-bottom: 16px; font-size: 0.95rem; }
.feat-txt-col p:last-of-type { margin-bottom: 24px; }

/* =============================================
   BEFORE/AFTER COMPARISON
   ============================================= */
.compare-sec { background: var(--clr-surface); }

.compare-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.compare-slider {
  position: relative;
  height: 340px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: col-resize;
  user-select: none;
  border: 1px solid var(--clr-border);
}

.compare-before,
.compare-after {
  position: absolute;
  top: 0; bottom: 0;
  display: flex;
  align-items: center;
}
.compare-before {
  left: 0;
  width: 50%;
  background: linear-gradient(135deg, #f5ede4 0%, #eeddd0 100%);
  overflow: hidden;
}
.compare-after {
  right: 0;
  width: 50%;
  background: linear-gradient(135deg, #d4ecec 0%, #c2e0e0 100%);
  overflow: hidden;
  left: 50%;
}

.compare-content {
  padding: 32px;
  width: 100%;
}
.compare-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 20px;
}
.compare-label-after { color: var(--clr-teal); }

.compare-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cmp-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
}
.cmp-bad { color: #7a3a2a; }
.cmp-bad i { color: #c45a3a; font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.cmp-good { color: #1a4a4a; }
.cmp-good i { color: var(--clr-teal); font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }

.compare-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}
.compare-line {
  width: 2px;
  flex: 1;
  background: rgba(45,42,38,0.25);
}
.compare-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--clr-surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--clr-primary);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  border: 2px solid var(--clr-border);
  pointer-events: all;
  cursor: col-resize;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-sec { background: var(--clr-bg); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.proc-cell { padding: 32px 24px; text-align: center; position: relative; }
.proc-num {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--clr-accent-pale);
  line-height: 1;
  pointer-events: none;
}
.proc-ico {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--clr-teal-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--clr-teal);
  margin: 0 auto 16px;
  transition: all 0.25s ease;
}
.proc-cell:hover .proc-ico {
  background: var(--clr-teal);
  color: #fff;
  transform: scale(1.08);
}
.proc-cell h3 { color: var(--clr-primary); margin-bottom: 10px; font-size: 1rem; }
.proc-cell p { font-size: 0.875rem; }

/* =============================================
   AREAS SECTION
   ============================================= */
.areas-sec { background: var(--clr-bg-alt); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.area-main {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  background: var(--clr-primary);
  border-color: transparent;
  color: #fff;
}
.area-main h3 { color: #fff; margin-bottom: 8px; }
.area-main p { color: rgba(255,255,255,0.75); }
.area-map-placeholder {
  width: 64px; height: 64px;
  background: rgba(200,119,58,0.2);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--clr-accent-light);
  flex-shrink: 0;
}

.area-cell { padding: 28px; }
.area-ico {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--clr-teal-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-teal);
  margin-bottom: 14px;
  transition: all 0.25s ease;
}
.area-cell:hover .area-ico {
  background: var(--clr-teal);
  color: #fff;
}
.area-cell h3 { color: var(--clr-primary); margin-bottom: 8px; font-size: 1rem; }
.area-cell p { font-size: 0.875rem; }

.area-eu { background: var(--clr-accent-pale); }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-sec {
  background: var(--clr-surface);
  padding: var(--sec-pad) clamp(16px, 4vw, 48px);
}
.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.tag-light {
  background: rgba(200,119,58,0.1);
  color: var(--clr-accent);
}
.cta-title {
  color: var(--clr-primary);
  margin: 12px 0 20px;
}
.cta-body {
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 480px;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.cta-contact-card {
  background: var(--clr-primary);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-xl);
  border: none;
}
.cta-contact-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 24px;
  line-height: 1.4;
}
.cta-contacts { display: flex; flex-direction: column; gap: 16px; }
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: opacity 0.2s;
}
.cta-contact-item:hover { opacity: 0.85; }
.cta-contact-ico {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(200,119,58,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-accent-light);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.cta-contact-txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cta-contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}
.cta-contact-val {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.cta-contact-card .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  margin-top: 24px;
}
.cta-contact-card .btn-outline:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
}

/* CTA Banner */
.cta-banner-sec {
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-dark) 100%);
  padding: clamp(52px, 7vw, 80px) clamp(16px, 4vw, 48px);
}
.cta-banner-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.cta-banner-inner h2 {
  color: #fff;
  margin-bottom: 14px;
}
.cta-banner-inner p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.cta-banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-banner-sec .btn-primary {
  background: #fff;
  color: var(--clr-accent-dark);
  border-color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.cta-banner-sec .btn-primary:hover {
  background: var(--clr-bg);
  border-color: var(--clr-bg);
  transform: translateY(-2px);
}
.cta-banner-sec .btn-ghost {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.4);
}
.cta-banner-sec .btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* =============================================
   FOOTER
   ============================================= */
.ftr {
  background: var(--clr-primary);
  color: rgba(255,255,255,0.75);
  margin-top: auto;
}
.ftr-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px clamp(16px, 4vw, 48px) 32px;
}
.ftr-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.ftr-logo { height: 36px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.ftr-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 8px; }
.ftr-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.5; }

.ftr-nav-col h4,
.ftr-contact-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.ftr-nav-col ul { display: flex; flex-direction: column; gap: 10px; }
.ftr-nav-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.ftr-nav-col ul li a:hover { color: var(--clr-accent-light); }

.ftr-contact-col address {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ftr-contact-col address p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.ftr-contact-col address i {
  color: var(--clr-accent-light);
  margin-top: 2px;
  width: 14px;
  flex-shrink: 0;
}
.ftr-contact-col address a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.ftr-contact-col address a:hover { color: var(--clr-accent-light); }

.ftr-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.ftr-legal p { color: rgba(255,255,255,0.4); margin-bottom: 8px; font-size: 0.78rem; }
.ftr-copy { color: rgba(255,255,255,0.35) !important; }
.ftr-copy a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.ftr-copy a:hover { color: var(--clr-accent-light); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding-top: calc(var(--hdr-h) + clamp(40px, 6vw, 72px));
  padding-bottom: clamp(40px, 6vw, 72px);
  background: var(--clr-primary);
  text-align: center;
}
.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.page-hero .sec-tag {
  background: rgba(200,119,58,0.2);
  color: var(--clr-accent-light);
}
.page-hero-title {
  color: #fff;
  margin-bottom: 16px;
}
.page-hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}

/* =============================================
   IN BREVE PAGE
   ============================================= */
.bento-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.ov-intro {
  grid-column: span 2;
  grid-row: span 2;
  padding: 36px;
}
.ov-intro h2 { color: var(--clr-primary); margin-bottom: 16px; }
.ov-intro p { margin-bottom: 14px; font-size: 0.95rem; }
.ov-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 24px;
}
.ov-ico {
  font-size: 1.5rem;
  color: var(--clr-accent);
  margin-bottom: 4px;
}
.ov-stat strong { font-size: 1rem; color: var(--clr-primary); }
.ov-stat span { font-size: 0.82rem; color: var(--clr-text-muted); }
.ov-img {
  padding: 0;
  overflow: hidden;
}
.ov-img img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
}
.ov-accent {
  background: var(--clr-teal);
  border-color: transparent;
}
.ov-accent .ov-ico { color: rgba(255,255,255,0.7); }
.ov-accent strong { color: #fff; }
.ov-accent span { color: rgba(255,255,255,0.65); }

.module-sec { background: var(--clr-bg-alt); }
.module-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.module-item {
  display: flex;
  gap: 24px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.module-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.module-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--clr-accent);
  background: var(--clr-accent-pale);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  height: fit-content;
  flex-shrink: 0;
  margin-top: 4px;
}
.module-body h3 { color: var(--clr-primary); margin-bottom: 8px; font-size: 1.05rem; }
.module-body p { font-size: 0.875rem; margin-bottom: 12px; }
.module-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.module-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--clr-teal);
  background: var(--clr-teal-pale);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.forwho-sec { background: var(--clr-surface); }
.forwho-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.forwho-list {
  margin: 20px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.forwho-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--clr-text);
  line-height: 1.5;
}
.forwho-list li i {
  color: var(--clr-teal);
  margin-top: 2px;
  flex-shrink: 0;
}
.forwho-note {
  font-size: 0.82rem;
  color: var(--clr-text-light);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-accent);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  line-height: 1.6;
  margin-top: 4px;
}
.forwho-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* =============================================
   PRICING PAGE
   ============================================= */
.pricing-sec { background: var(--clr-bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  align-items: start;
  margin-bottom: 24px;
}
.price-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.price-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  width: fit-content;
}
.price-badge-feat {
  background: var(--clr-accent-pale);
  color: var(--clr-accent-dark);
  border-color: var(--clr-accent);
}
.price-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 8px;
}
.price-amount {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 16px;
}
.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-top: 8px;
}
.price-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1;
}
.price-period {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  align-self: flex-end;
  margin-bottom: 6px;
}
.price-desc {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--clr-text);
  line-height: 1.4;
}
.price-features li i { flex-shrink: 0; margin-top: 2px; }
.price-features li i.fa-check { color: var(--clr-teal); }
.price-features li i.fa-minus { color: var(--clr-text-light); }
.price-feat-no { color: var(--clr-text-light) !important; }

.price-featured {
  background: var(--clr-primary);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}
.price-featured .price-name { color: #fff; }
.price-featured .price-currency,
.price-featured .price-num { color: #fff; }
.price-featured .price-period { color: rgba(255,255,255,0.5); }
.price-featured .price-desc { color: rgba(255,255,255,0.65); }
.price-featured .price-features li { color: rgba(255,255,255,0.85); }
.price-featured .price-features li i.fa-check { color: var(--clr-accent-light); }
.price-featured .price-badge { background: rgba(200,119,58,0.2); border-color: var(--clr-accent); color: var(--clr-accent-light); }

.pricing-note { margin-top: 8px; }
.pricing-note-cell {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--clr-accent-pale);
  border-color: var(--clr-accent);
}
.pricing-note-cell i {
  font-size: 1.3rem;
  color: var(--clr-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-note-cell strong { font-size: 0.95rem; color: var(--clr-primary); display: block; margin-bottom: 6px; }
.pricing-note-cell p { font-size: 0.875rem; }

.faq-sec { background: var(--clr-bg-alt); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: box-shadow 0.25s;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item h3 {
  font-size: 0.95rem;
  color: var(--clr-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.faq-item h3 i { color: var(--clr-accent); flex-shrink: 0; margin-top: 2px; }
.faq-item p { font-size: 0.875rem; line-height: 1.65; }

/* =============================================
   CHI CI HA SCELTO PAGE
   ============================================= */
.profiles-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.prof-cell { padding: 28px; }
.prof-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.prof-wide .prof-ico { grid-column: 1; }
.prof-wide h3 { grid-column: 1; }
.prof-wide p { grid-column: 1; }
.prof-img {
  grid-column: 2;
  grid-row: 1 / 4;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.prof-tall { grid-row: span 2; }
.prof-ico {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--clr-accent-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-accent);
  margin-bottom: 14px;
  transition: all 0.25s ease;
}
.prof-cell:hover .prof-ico { background: var(--clr-accent); color: #fff; transform: scale(1.06); }
.prof-cell h3 { color: var(--clr-primary); margin-bottom: 8px; font-size: 1rem; }
.prof-cell p { font-size: 0.875rem; margin-bottom: 8px; }
.prof-accent-cell {
  background: var(--clr-teal);
  border-color: transparent;
}
.prof-accent-cell h3 { color: #fff; }
.prof-accent-cell p { color: rgba(255,255,255,0.75); }
.prof-accent-cell .prof-ico {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.change-sec { background: var(--clr-surface); }
.change-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.change-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--clr-primary);
  margin: 16px 0;
  line-height: 1.6;
}
.change-txt p { font-size: 0.95rem; margin-bottom: 14px; }
.change-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page-sec {
  padding-top: calc(var(--hdr-h) + clamp(32px, 5vw, 60px));
  padding-bottom: clamp(60px, 8vw, 100px);
  padding-left: clamp(16px, 4vw, 48px);
  padding-right: clamp(16px, 4vw, 48px);
}
.contact-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-title {
  color: var(--clr-primary);
  margin: 12px 0 8px;
}
.contact-sub {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 36px;
  line-height: 1.65;
}
.frm-contact { max-width: 100%; }

.contact-info-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}
.contact-info-card h3 {
  color: var(--clr-primary);
  margin-bottom: 24px;
  font-size: 1.1rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail i {
  color: var(--clr-accent);
  font-size: 1rem;
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}
.contact-detail div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-detail strong {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-light);
}
.contact-detail span,
.contact-detail a {
  font-size: 0.9rem;
  color: var(--clr-text);
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--clr-accent); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
}
.contact-map iframe { display: block; }

/* =============================================
   THANKS PAGE
   ============================================= */
.thanks-hero {
  padding: calc(var(--hdr-h) + 60px) clamp(16px, 4vw, 48px) 80px;
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent-dark) 50%, var(--clr-accent) 100%);
  text-align: center;
}
.thanks-hero-inner {
  max-width: 600px;
  margin: 0 auto;
}
.thanks-ico {
  font-size: 4rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}
.thanks-hero h1 {
  color: #fff;
  margin-bottom: 16px;
}
.thanks-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
}

.thanks-next {
  background: var(--clr-surface);
  text-align: center;
}
.thanks-next-inner {
  max-width: 900px;
  margin: 0 auto;
}
.thanks-next h2 {
  color: var(--clr-primary);
  margin-bottom: 32px;
}
.thanks-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-bottom: 36px;
  text-align: left;
}
.thanks-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.thanks-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.thanks-card i {
  font-size: 1.5rem;
  color: var(--clr-accent);
}
.thanks-card h3 { color: var(--clr-primary); font-size: 1rem; }
.thanks-card p { font-size: 0.875rem; }
.thanks-home-btn { display: inline-flex; }

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-hero {
  padding-top: calc(var(--hdr-h) + clamp(32px, 5vw, 60px));
  padding-bottom: clamp(32px, 5vw, 60px);
  background: var(--clr-primary);
  text-align: center;
}
.legal-hero-inner { max-width: 760px; margin: 0 auto; }
.legal-hero h1 { color: #fff; }
.legal-date { color: rgba(255,255,255,0.55); font-size: 0.875rem; margin-top: 10px; }

.legal-sec { background: var(--clr-bg); }
.legal-inner {
  max-width: 860px;
  margin: 0 auto;
}
.legal-body,
.legal-cookies {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-sm);
}
.legal-intro {
  font-size: 1rem;
  color: var(--clr-text);
  line-height: 1.75;
  margin-bottom: 28px;
}
.legal-term {
  font-weight: 700;
  color: var(--clr-accent);
  border-bottom: 1px dotted var(--clr-accent);
  cursor: help;
}
.legal-aside {
  background: var(--clr-accent-pale);
  border: 1px solid rgba(200,119,58,0.25);
  border-left: 4px solid var(--clr-accent);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
  font-size: 0.875rem;
}
.legal-aside strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-accent-dark);
  margin-bottom: 14px;
}
.legal-aside dl { display: flex; flex-direction: column; gap: 10px; }
.legal-aside dt { font-weight: 700; color: var(--clr-primary); font-size: 0.875rem; }
.legal-aside dd { color: var(--clr-text-muted); font-size: 0.82rem; line-height: 1.5; padding-left: 12px; }

.legal-body h2,
.legal-cookies h2 {
  font-size: 1.2rem;
  color: var(--clr-primary);
  margin: 32px 0 12px;
  padding-top: 32px;
  border-top: 1px solid var(--clr-border);
}
.legal-body h2:first-of-type,
.legal-cookies h2:first-of-type { border-top: none; padding-top: 0; }
.legal-body h3,
.legal-cookies h3 { font-size: 1rem; color: var(--clr-primary); margin: 20px 0 8px; }
.legal-body p,
.legal-cookies p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-body a,
.legal-cookies a { color: var(--clr-accent); }
.legal-body a:hover,
.legal-cookies a:hover { text-decoration: underline; }
.legal-list {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.legal-list li { font-size: 0.9rem; color: var(--clr-text-muted); line-height: 1.6; }
.legal-address {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--clr-text);
  margin-bottom: 16px;
}
.legal-address a { color: var(--clr-accent); }

/* Terms specific */
.legal-terms { }
.terms-preamble {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: clamp(28px, 4vw, 48px);
  border-bottom: none;
}
.terms-preamble p { font-size: 0.95rem; color: var(--clr-text); line-height: 1.75; }
.terms-aside {
  background: var(--clr-surface);
  border-left: none;
  border: 1px solid var(--clr-border);
  border-top: none;
  border-bottom: none;
  border-radius: 0;
  padding: 28px clamp(28px, 4vw, 48px);
  margin-bottom: 0;
  border-top: 1px solid var(--clr-border);
}
.terms-clauses {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-top: none;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 0 clamp(28px, 4vw, 48px) clamp(28px, 4vw, 48px);
}
.terms-clause {
  padding-top: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--clr-border);
}
.terms-clause:last-child { border-bottom: none; padding-bottom: 0; }
.clause-num {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-teal);
  background: var(--clr-teal-pale);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}
.terms-clause h2 {
  font-size: 1.05rem;
  color: var(--clr-primary);
  margin-bottom: 12px;
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.terms-clause p { font-size: 0.9rem; color: var(--clr-text-muted); line-height: 1.75; margin-bottom: 10px; }
.terms-clause a { color: var(--clr-accent); }
.terms-clause a:hover { text-decoration: underline; }

/* Cookie table */
.cookie-intro p { font-size: 0.95rem; color: var(--clr-text); line-height: 1.75; margin-bottom: 14px; }
.cookie-intro a { color: var(--clr-accent); }
.cookie-aside { margin-bottom: 32px; }
.cookie-table-wrap { margin-bottom: 28px; }
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-top: 12px;
  margin-bottom: 12px;
}
.cookie-table th {
  background: var(--clr-bg);
  color: var(--clr-primary);
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid var(--clr-border);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.cookie-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  vertical-align: top;
  line-height: 1.5;
}
.cookie-table code {
  background: var(--clr-bg);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.78rem;
  color: var(--clr-teal);
  font-family: monospace;
}

/* =============================================
   COOKIE CONSENT (JS-driven, styled here)
   ============================================= */
#cookieConsent {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--clr-border);
  z-index: 9999;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  overflow: hidden;
}
#cookieConsent.visible {
  transform: translateY(0);
  opacity: 1;
}
.cc-top {
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cc-icon {
  width: 44px; height: 44px;
  background: var(--clr-accent-pale);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-accent);
  flex-shrink: 0;
}
.cc-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1.3;
}
.cc-body { padding: 16px 24px; }
.cc-msg {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.cc-msg a { color: var(--clr-accent); }
.cc-msg a:hover { text-decoration: underline; }
.cc-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cc-accept {
  background: var(--clr-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 11px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
}
.cc-accept:hover { background: var(--clr-accent-dark); }
.cc-customize {
  background: transparent;
  color: var(--clr-text-muted);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 10px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
}
.cc-customize:hover { border-color: var(--clr-accent); color: var(--clr-accent); }
.cc-reject {
  background: transparent;
  color: var(--clr-text-light);
  border: none;
  padding: 8px;
  font-family: var(--font);
  font-size: 0.78rem;
  cursor: pointer;
  transition: color 0.2s;
  min-height: 40px;
}
.cc-reject:hover { color: var(--clr-text); }

.cc-prefs {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.cc-prefs.open {
  max-height: 300px;
  padding: 0 24px 16px;
}
.cc-pref-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--clr-border);
}
.cc-pref-item:last-child { border-bottom: none; }
.cc-pref-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-primary);
}
.cc-pref-desc {
  font-size: 0.72rem;
  color: var(--clr-text-light);
  line-height: 1.4;
  margin-top: 2px;
}
.cc-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.cc-toggle input { opacity: 0; width: 0; height: 0; }
.cc-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--clr-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.25s;
}
.cc-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.cc-toggle input:checked + .cc-toggle-slider { background: var(--clr-accent); }
.cc-toggle input:checked + .cc-toggle-slider::before { transform: translateX(18px); }
.cc-toggle input:disabled + .cc-toggle-slider { background: var(--clr-teal); cursor: not-allowed; }

.cc-save {
  width: 100%;
  background: var(--clr-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 11px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
  min-height: 44px;
  display: none;
}
.cc-save.visible { display: block; }
.cc-save:hover { background: var(--clr-primary-light); }

.cc-footer {
  padding: 12px 24px 20px;
  text-align: center;
}
.cc-footer a {
  font-size: 0.72rem;
  color: var(--clr-text-light);
  transition: color 0.2s;
}
.cc-footer a:hover { color: var(--clr-accent); }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "main main"
      "img form"
      "stat-a stat-b";
  }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .ftr-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .area-main { grid-column: span 2; }
}

@media (max-width: 900px) {
  .bento-benefits { grid-template-columns: repeat(2, 1fr); }
  .ben-wide { grid-column: span 2; }
  .bento-services { grid-template-columns: repeat(2, 1fr); }
  .svc-main { grid-row: span 1; min-height: 240px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img { height: 300px; }
  .feat-row { grid-template-columns: 1fr; gap: 28px; }
  .feat-row-reverse .feat-img-col { order: 0; }
  .feat-row-reverse .feat-txt-col { order: 0; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-featured { transform: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .profiles-bento { grid-template-columns: repeat(2, 1fr); }
  .prof-wide { grid-column: span 2; }
  .change-grid { grid-template-columns: 1fr; }
  .forwho-grid { grid-template-columns: 1fr; }
  .contact-page-inner { grid-template-columns: 1fr; }
  .thanks-cards { grid-template-columns: 1fr; }
  .bento-overview { grid-template-columns: 1fr 1fr; }
  .ov-intro { grid-column: span 2; }
}

@media (max-width: 640px) {
  :root { --gap: 10px; }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "stat-a"
      "img"
      "form"
      "stat-b";
  }
  .hero-img-cell { min-height: 200px; }
  .bento-benefits { grid-template-columns: 1fr; }
  .ben-wide { grid-column: span 1; grid-template-columns: 1fr; }
  .ben-wide .ben-img { grid-column: 1; grid-row: auto; height: 160px; }
  .bento-services { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .area-main { grid-column: span 1; }
  .profiles-bento { grid-template-columns: 1fr; }
  .prof-wide { grid-column: span 1; grid-template-columns: 1fr; }
  .prof-img { grid-column: 1; grid-row: auto; height: 160px; }
  .ftr-top { grid-template-columns: 1fr; gap: 24px; }
  .compare-slider { height: auto; min-height: 300px; }
  .compare-before,
  .compare-after { position: relative; width: 100%; left: auto; right: auto; top: auto; bottom: auto; }
  .compare-slider {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .compare-handle { display: none; }
  .bento-overview { grid-template-columns: 1fr; }
  .ov-intro { grid-column: span 1; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .pricing-note-cell { flex-direction: column; }
  #cookieConsent { width: calc(100vw - 24px); right: 12px; bottom: 12px; }
}

/* Scroll Animations */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }