@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');
*,*::before,*::after{box-sizing:border-box}html,body{max-width:100%;overflow-x:clip}
:root {
  --accent:       #6C5CE7;
  --accent-light: #A29BFE;
  --accent-dark:  #4A3CB8;
  --rose:         #E17055;
  --surface:      #FAF9F7;
  --surface-2:    #F1EEE8;
  --surface-3:    #E8E3DA;
  --text:         #1E1D2B;
  --text-2:       #4A4860;
  --text-3:       #8785A2;
  --border:       rgba(108,92,231,0.15);
  --shadow-sm:    0 2px 8px rgba(108,92,231,0.08);
  --shadow-md:    0 8px 32px rgba(108,92,231,0.12);
  --shadow-lg:    0 24px 64px rgba(108,92,231,0.16);
  --radius:       1rem;
  --radius-lg:    1.5rem;
  --radius-xl:    2.5rem;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--surface);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  color: var(--text) !important;
}

body h1 { font-size: clamp(2.4rem, 5vw, 4.5rem) !important; font-weight: 800 !important; color: var(--rose) !important;}
body h2 { font-size: clamp(1.8rem, 3.5vw, 3rem) !important; }
body h3 { font-size: clamp(1.25rem, 2.2vw, 1.75rem) !important; }
body h4 { font-size: 1.25rem !important; }
body h5 { font-size: 1.05rem !important; }

p { line-height: 1.75; color: var(--text-2); }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-dark); }

img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(108,92,231,.35);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(108,92,231,.45);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: var(--accent);
  box-shadow: var(--shadow-md);
}
.btn-light:hover {
  background: var(--surface-2);
  color: var(--accent-dark);
  transform: translateY(-2px);
}

.badge {
  display: inline-block;
  padding: .3rem .9rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge-accent { background: rgba(108,92,231,.12); color: var(--accent); }
.badge-rose   { background: rgba(225,112,85,.12); color: var(--rose); }
.badge-white  { background: rgba(255,255,255,.2); color: #fff; border: 1px solid rgba(255,255,255,.3); }

.section-label {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.glass {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.6);
}

.divider-diagonal {
  width: 100%;
  height: 80px;
  background: var(--surface-2);
  clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
}

.noise-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* ── HEADER ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 16px rgba(108,92,231,.06);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-2);
  gap: 1rem;
  flex-wrap: wrap;
}
.header-top-contacts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.header-top-contacts span {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--text-2);
}
.header-top-contacts i { color: var(--accent); font-size: .8rem; }

.header-socials {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.header-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--accent);
  font-size: .75rem;
  transition: all .2s;
}
.header-socials a:hover {
  background: var(--accent);
  color: #fff;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.logo img { height: 44px; width: auto; }
.logo-text { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--text); }
.logo-text span { color: var(--accent); }

.nav-main {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.nav-main a {
  display: block;
  padding: .5rem .85rem;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: .9rem;
  color: var(--text);
  transition: all .2s;
}
.nav-main a:hover, .nav-main a.active {
  background: rgba(108,92,231,.1);
  color: var(--accent);
}

.nav-cta { margin-left: .75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .75rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: all .2s;
}
.mobile-menu a:hover { background: rgba(108,92,231,.06); color: var(--accent); }

/* ── FOOTER ── */
#site-footer {
  background: #1E1D2B;
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text span { color: var(--accent-light); }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.55); margin-top: 1rem; line-height: 1.7; }

.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--accent-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
}
.footer-contact-item i { color: var(--accent-light); margin-top: .1rem; flex-shrink: 0; font-size: .85rem; }

.footer-socials {
  display: flex;
  gap: .6rem;
  margin-top: 1.25rem;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  transition: all .2s;
}
.footer-socials a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-reg {
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.footer-reg strong { color: rgba(255,255,255,.65); }

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  background-size: cover;
  background-position: center;
}
.slide.active { opacity: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,29,43,0.78) 0%, rgba(108,92,231,0.35) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100svh;
  padding: 2rem 0;
}

.slide-content h1 { color: #fff; margin-bottom: 1.25rem; }
.slide-content p { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 560px; margin-bottom: 2.5rem; }

.slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 10;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .3s;
  border: none;
}
.slider-dot.active {
  width: 28px;
  border-radius: 4px;
  background: #fff;
}

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 10;
  pointer-events: none;
}
.slider-arrow {
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  cursor: pointer;
  transition: all .2s;
}
.slider-arrow:hover { background: rgba(255,255,255,.3); transform: scale(1.08); }

/* ── HERO CLIP ── */
.hero-clip { clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%); }

/* ── STATS ── */
.stats-strip {
  background: var(--accent);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,.08) 0%, transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label { font-size: .8rem; color: rgba(255,255,255,.75); margin-top: .4rem; letter-spacing: .06em; }

/* ── BENTO GRID ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 1.25rem;
}
.bento-1 { grid-column: span 7; grid-row: span 2; }
.bento-2 { grid-column: span 5; }
.bento-3 { grid-column: span 5; }
.bento-4 { grid-column: span 4; }
.bento-5 { grid-column: span 4; }
.bento-6 { grid-column: span 4; }

.bento-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.bento-card:hover img { transform: scale(1.04); }
.bento-card .bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,29,43,0.8) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}
.bento-card .bento-overlay h3 { color: #fff; }
.bento-card .bento-overlay p { color: rgba(255,255,255,.75); font-size: .875rem; margin-top: .35rem; }

.testimonials-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.testimonials-track {
  display: flex;
  transition: transform .5s ease;
  width: 100%;
}
.testimonial-card {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  padding: 0 1rem;
}

.testimonial-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.testimonial-stars { color: var(--rose); margin-bottom: 1rem; }
.testimonial-text { font-size: 1.05rem; color: var(--text-2); line-height: 1.75; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; margin-top: 1.75rem; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author .name { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--text); }
.testimonial-author .role { font-size: .8rem; color: var(--text-3); }

/* ── FAQ ── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: .75rem;
  background: #fff;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  gap: 1rem;
  transition: background .2s;
}
.faq-question:hover { background: rgba(108,92,231,.04); }
.faq-question.open { color: var(--accent); }
.faq-question i { transition: transform .3s; flex-shrink: 0; color: var(--accent); }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
  padding: 0 1.5rem;
  color: var(--text-2);
  line-height: 1.75;
}
.faq-answer.open { max-height: 500px; padding: 0 1.5rem 1.25rem; }

/* ── MAP ── */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-embed iframe { display: block; width: 100%; height: 400px; border: 0; }

/* ── FORM ── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  color: var(--text);
  margin-bottom: .5rem;
}
.form-control {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--surface-3);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(108,92,231,.12);
}
textarea.form-control { resize: vertical; min-height: 130px; }

.form-notification {
  display: none;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  margin-top: 1rem;
}
.form-notification.success {
  display: none;
  align-items: center;
  gap: .75rem;
  background: rgba(108,92,231,.1);
  color: var(--accent);
  border: 1px solid rgba(108,92,231,.2);
}
/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 3rem);
  max-width: 780px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 48px rgba(30,29,43,.18);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  transition: all .4s ease;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(2rem);
  pointer-events: none;
}
.cookie-banner p { font-size: .875rem; color: var(--text-2); flex: 1; margin: 0; }
.cookie-banner p a { color: var(--accent); font-weight: 500; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; flex-wrap: wrap; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #FAF9F7 0%, #EDE8FF 50%, #FAF9F7 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162,155,254,.25) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,92,231,.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { max-width: 720px; }
.page-hero > .container > p { max-width: 600px; margin-top: 1.25rem; font-size: 1.1rem; }

/* ── BLOG CARDS ── */
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all .3s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: 1rem; font-size: .78rem; color: var(--text-3); margin-bottom: .75rem; }
.blog-card-body h3 { margin-bottom: .6rem; }
.blog-card-body p { flex: 1; margin-bottom: 1.25rem; font-size: .9rem; }

/* ── SERVICE CARD ── */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card img { width: 100%; height: 240px; object-fit: cover; }
.service-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { margin-bottom: .5rem; }
.service-card-body p { flex: 1; margin-bottom: 1.25rem; font-size: .9rem; }
.service-price { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--accent); font-size: 1.3rem; margin-bottom: 1rem; }

/* ── PRICE TABLE ── */
.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all .3s;
}
.price-card.featured {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 16px 48px rgba(108,92,231,.35);
}
.price-card.featured h3,
.price-card.featured .price-amt,
.price-card.featured p { color: #fff; }
.price-card.featured .price-feature { color: rgba(255,255,255,.85); }
.price-card.featured .price-feature i { color: rgba(255,255,255,.7); }
.price-card:hover:not(.featured) { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.price-name { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--accent); margin-bottom: .75rem; }
.price-card.featured .price-name { color: rgba(255,255,255,.75); }
.price-amt { font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--text); line-height: 1; }
.price-amt sup { font-size: 1.2rem; }
.price-period { font-size: .8rem; color: var(--text-3); margin-left: .25rem; }
.price-divider { border: 0; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.price-card.featured .price-divider { border-color: rgba(255,255,255,.2); }
.price-features { list-style: none; flex: 1; }
.price-feature {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .45rem 0;
  font-size: .9rem;
  color: var(--text-2);
}
.price-feature i { color: var(--accent); margin-top: .15rem; flex-shrink: 0; }

/* ── TEAM ── */
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: all .3s;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-card img { width: 100%; height: 280px; object-fit: cover; object-position: top; }
.team-card-body { padding: 1.5rem; }
.team-card-body h4 { margin-bottom: .25rem; }
.team-card-body .role { font-size: .85rem; color: var(--accent); font-weight: 600; margin-bottom: .75rem; }
.team-card-body p { font-size: .875rem; }

/* ── TIMELINE ── */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-item { position: relative; display: flex; gap: 3rem; align-items: flex-start; margin-bottom: 3rem; }
.timeline-content {
  flex: 1;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 1.5rem;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--surface);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.timeline-year {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: .5rem;
}

/* ── DIAGONAL SECTION ── */
.diagonal-top { clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%); margin-top: -4%; padding-top: 6rem; }
.diagonal-bottom { clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%); padding-bottom: 6rem; }

/* ── GRADIENT BG ── */
.bg-gradient-subtle {
  background: linear-gradient(135deg, #F4F1FF 0%, #FAF9F7 40%, #FDEEE9 100%);
}
.bg-surface-2 { background: var(--surface-2); }
.bg-accent { background: var(--accent); }

/* ── DECORATIVE ELEMENTS ── */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.deco-line {
  position: absolute;
  pointer-events: none;
  opacity: .15;
}

/* ── GALLERY MOSAIC ── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery-mosaic .g-tall { grid-row: span 2; }
.gallery-mosaic .g-wide { grid-column: span 2; }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(108,92,231,.45);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  transition: opacity .3s;
}
.gallery-item:hover .overlay { opacity: 1; }

/* ── LEGAL / POLICY PAGES ── */
.policy-content h2 { margin: 2.5rem 0 1rem; }
.policy-content h3 { margin: 1.75rem 0 .75rem; color: var(--accent); }
.policy-content p { margin-bottom: 1rem; }
.policy-content ul, .policy-content ol { padding-left: 1.75rem; margin-bottom: 1rem; }
.policy-content li { margin-bottom: .5rem; color: var(--text-2); line-height: 1.7; }
.policy-content a { color: var(--accent); text-decoration: underline; }

/* ── FLOATING DECORATIONS ── */
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.6); opacity: 0; }
}
.float-anim { animation: float-y 4s ease-in-out infinite; }
.spin-slow { animation: spin-slow 20s linear infinite; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .bento-1 { grid-column: span 12; }
  .bento-2, .bento-3 { grid-column: span 6; }
  .bento-4, .bento-5, .bento-6 { grid-column: span 4; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; padding-left: 3.5rem; }
  .timeline-dot { left: 20px; }
  .timeline-content[style*="visibility:hidden"] { display: none !important; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic .g-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-2, .bento-3, .bento-4, .bento-5, .bento-6 { grid-column: span 12; }
  .hamburger { display: flex; }
  .nav-main { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .section-pad { padding: 4rem 0; }
  .cookie-banner { bottom: 0; left: 0; right: 0; transform: none; width: 100%; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .cookie-banner.hidden { transform: translateY(2rem); }
  .header-top-contacts { display: none; }
  .header-top { justify-content: flex-end; }
  .testimonial-inner { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .gallery-mosaic .g-wide, .gallery-mosaic .g-tall { grid-column: span 1; grid-row: span 1; }
  .slider-arrow { width: 36px; height: 36px; }
}

@media (min-width: 769px) {
  .mobile-contacts { display: none; }
}
