/* ============================================
   VELOHRAPL - Centrum Edukacji o Najmie
   Complete Stylesheet - Glass on Gradient
   ============================================ */


:root {
  --c-bg: #f0f2f8;
  --c-surface: rgba(255,255,255,0.55);
  --c-surface-strong: rgba(255,255,255,0.75);
  --c-glass-border: rgba(255,255,255,0.6);
  --c-glass-shadow: rgba(80,60,140,0.12);

  --c-grad-start: #4f3cc9;
  --c-grad-mid: #7b5ea7;
  --c-grad-end: #c45fad;
  --c-grad-accent: #f0a500;

  --c-primary: #4f3cc9;
  --c-primary-light: #7b6ee0;
  --c-secondary: #c45fad;
  --c-accent: #f0a500;
  --c-accent-soft: #fde9b0;

  --c-text-dark: #1a1630;
  --c-text-mid: #3d3660;
  --c-text-muted: #7b74a0;
  --c-text-light: #f4f2ff;
  --c-text-on-grad: #ffffff;

  --c-border: rgba(79,60,201,0.15);
  --c-border-light: rgba(255,255,255,0.35);

  
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 9999px;

  
  --shadow-sm: 0 2px 8px rgba(79,60,201,0.08), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(79,60,201,0.12), 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(79,60,201,0.18), 0 4px 16px rgba(0,0,0,0.1);
  --shadow-xl: 0 32px 80px rgba(79,60,201,0.22), 0 8px 24px rgba(0,0,0,0.12);
  --shadow-glass: 0 8px 32px rgba(79,60,201,0.15), 0 2px 8px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.7);
  --shadow-glass-hover: 0 20px 60px rgba(79,60,201,0.25), 0 4px 16px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.8);

  
  --t-fast: 180ms ease-out;
  --t-base: 280ms ease-out;
  --t-slow: 420ms ease-out;
  --t-spring: 320ms cubic-bezier(0.34,1.56,0.64,1);
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--c-bg);
  color: var(--c-text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover { color: var(--c-secondary); }

ul, ol { list-style: none; }


h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-text-dark);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }

p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--c-text-mid);
  line-height: 1.75;
}

.text-on-dark, .text-on-dark h1, .text-on-dark h2, .text-on-dark h3, .text-on-dark p {
  color: var(--c-text-on-grad);
}

.text-on-dark p { color: rgba(255,255,255,0.85); }


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section {
  padding: clamp(var(--sp-16), 8vw, var(--sp-32)) 0;
}

.section-sm {
  padding: clamp(var(--sp-10), 5vw, var(--sp-20)) 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
  gap: var(--sp-8);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--sp-6);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center { text-align: center; }


.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: rgba(79,60,201,0.08);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  border: 1px solid rgba(79,60,201,0.15);
  margin-bottom: var(--sp-5);
}

.section-label.light {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
}

.section-intro {
  max-width: 600px;
  margin: var(--sp-4) auto 0;
  text-align: center;
}

/* ============================================
   GRADIENT BACKGROUNDS
   ============================================ */

.grad-hero {
  background: linear-gradient(135deg, #2d1b8e 0%, #4f3cc9 30%, #7b5ea7 60%, #c45fad 85%, #e87d6e 100%);
  position: relative;
}

.grad-section {
  background: linear-gradient(135deg, #4f3cc9 0%, #7b5ea7 50%, #c45fad 100%);
  position: relative;
}

.grad-soft {
  background: linear-gradient(135deg, #f0f2f8 0%, #e8e4f8 50%, #f5e8f5 100%);
}

.grad-card {
  background: linear-gradient(135deg, #4f3cc9, #c45fad);
}


.shape-bg {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.shape-1 {
  width: clamp(200px, 35vw, 500px);
  height: clamp(200px, 35vw, 500px);
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  top: -10%;
  right: -5%;
}

.shape-2 {
  width: clamp(150px, 25vw, 350px);
  height: clamp(150px, 25vw, 350px);
  background: radial-gradient(circle, rgba(240,165,0,0.15) 0%, transparent 70%);
  bottom: 5%;
  left: -3%;
}

.shape-3 {
  width: clamp(100px, 18vw, 250px);
  height: clamp(100px, 18vw, 250px);
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  top: 40%;
  left: 15%;
}

.shape-rect {
  position: absolute;
  border-radius: var(--r-xl);
  pointer-events: none;
  z-index: 0;
}

.shape-rect-1 {
  width: clamp(80px, 12vw, 180px);
  height: clamp(80px, 12vw, 180px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  top: 15%;
  right: 8%;
  transform: rotate(25deg);
}

.shape-rect-2 {
  width: clamp(50px, 8vw, 120px);
  height: clamp(50px, 8vw, 120px);
  background: rgba(240,165,0,0.08);
  border: 1px solid rgba(240,165,0,0.12);
  bottom: 20%;
  right: 20%;
  transform: rotate(-15deg);
}

/* ============================================
   GLASS CARDS
   ============================================ */

.glass-card {
  background: var(--c-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--c-glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-glass);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.glass-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-glass-hover);
}

.glass-card-strong {
  background: var(--c-surface-strong);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--c-glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-glass);
}


.white-card {
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.white-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79,60,201,0.25);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--sp-4) 0;
  transition: background var(--t-base), box-shadow var(--t-base), padding var(--t-base);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(79,60,201,0.1), 0 1px 4px rgba(0,0,0,0.06);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(79,60,201,0.08);
}

.site-header.scrolled .nav-link { color: var(--c-text-dark); }
.site-header.scrolled .nav-link:hover { color: var(--c-primary); }
.site-header.scrolled .logo-text { color: var(--c-text-dark); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}


.site-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  transition: color var(--t-fast);
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}


.main-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.12);
}

.nav-link.active {
  color: #ffffff;
  background: rgba(255,255,255,0.15);
}


.header-right {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}


.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  padding: var(--sp-1) var(--sp-3);
  transition: background var(--t-fast);
}

.site-header.scrolled .lang-switcher {
  background: rgba(79,60,201,0.08);
  border-color: rgba(79,60,201,0.15);
}

.lang-btn {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 2px 4px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}

.site-header.scrolled .lang-btn { color: var(--c-text-muted); }

.lang-btn:hover {
  color: #ffffff;
}

.site-header.scrolled .lang-btn:hover { color: var(--c-primary); }

.lang-btn.active {
  color: #ffffff;
  background: rgba(255,255,255,0.2);
}

.site-header.scrolled .lang-btn.active {
  color: var(--c-primary);
  background: rgba(79,60,201,0.12);
}

.lang-divider {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}

.site-header.scrolled .lang-divider { color: var(--c-border); }


.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-primary);
  background: #ffffff;
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  color: var(--c-primary);
  background: #f8f6ff;
}

.site-header.scrolled .btn-nav-cta {
  background: var(--c-primary);
  color: #ffffff;
}

.site-header.scrolled .btn-nav-cta:hover {
  background: var(--c-primary-light);
  color: #ffffff;
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--sp-2);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-md);
  transition: background var(--t-fast);
}

.site-header.scrolled .hamburger {
  background: rgba(79,60,201,0.08);
  border-color: rgba(79,60,201,0.15);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base), width var(--t-base);
}

.site-header.scrolled .hamburger span { background: var(--c-text-dark); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  padding: var(--sp-20) var(--sp-8) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  box-shadow: -8px 0 40px rgba(79,60,201,0.15);
  transition: right var(--t-slow);
  border-left: 1px solid var(--c-border);
}

.mobile-menu.open { right: 0; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,22,48,0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu .nav-link {
  color: var(--c-text-dark);
  font-size: 1.05rem;
  padding: var(--sp-4) var(--sp-4);
  border-radius: var(--r-md);
  display: block;
}

.mobile-menu .nav-link:hover {
  color: var(--c-primary);
  background: rgba(79,60,201,0.06);
}

.mobile-menu .lang-switcher {
  background: rgba(79,60,201,0.06);
  border-color: rgba(79,60,201,0.15);
  align-self: flex-start;
  margin-top: var(--sp-4);
}

.mobile-menu .lang-btn { color: var(--c-text-muted); }
.mobile-menu .lang-btn.active { color: var(--c-primary); background: rgba(79,60,201,0.1); }
.mobile-menu .lang-divider { color: var(--c-border); }

.mobile-close {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  background: rgba(79,60,201,0.06);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--c-text-dark);
  font-size: 1rem;
  transition: background var(--t-fast), transform var(--t-fast);
}

.mobile-close:hover {
  background: rgba(79,60,201,0.12);
  transform: rotate(90deg);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
  line-height: 1;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(79,60,201,0.35), 0 2px 8px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(79,60,201,0.45), 0 4px 12px rgba(0,0,0,0.12);
  color: #ffffff;
  background: linear-gradient(135deg, #5e4dd6, #d06ec0);
}

.btn-white {
  background: #ffffff;
  color: var(--c-primary);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.btn-white:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
  color: var(--c-primary);
  background: #f8f6ff;
}

.btn-outline {
  background: transparent;
  color: var(--c-primary);
  border: 2px solid var(--c-primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--c-primary);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(79,60,201,0.3);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border-color: rgba(255,255,255,0.9);
}

.btn-lg {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  padding: var(--sp-5) var(--sp-10);
}

.btn-sm {
  font-size: 0.85rem;
  padding: var(--sp-2) var(--sp-5);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(var(--sp-24), 12vh, var(--sp-32)) 0 clamp(var(--sp-16), 8vh, var(--sp-24));
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-10), 5vw, var(--sp-16));
  align-items: center;
}

.hero-text { max-width: 580px; }

.hero-title {
  color: #ffffff;
  margin-bottom: var(--sp-6);
  line-height: 1.1;
}

.hero-title .accent-word {
  background: linear-gradient(90deg, #fde9b0, #f0a500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--sp-8);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 520px;
}

.hero-img-wrap img {
  width: 100%;
  height: clamp(300px, 45vw, 500px);
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -var(--sp-4);
  left: -var(--sp-4);
  background: var(--c-surface-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--c-glass-border);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-glass);
}

.hero-badge-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-badge-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-text-dark);
  line-height: 1.3;
}

.hero-badge-text span {
  display: block;
  font-weight: 400;
  color: var(--c-text-muted);
  font-size: 0.75rem;
}


.scroll-indicator {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator i { font-size: 1rem; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ============================================
   TRUST STRIP
   ============================================ */

.trust-strip {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-6) 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(var(--sp-6), 4vw, var(--sp-12));
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-text-mid);
}

.trust-item i {
  font-size: 1.1rem;
  color: var(--c-primary);
}

/* ============================================
   ABOUT / INTRO SECTION
   ============================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-10), 6vw, var(--sp-16));
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: clamp(320px, 40vw, 480px);
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  color: white;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-img-accent .num {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.about-img-accent .label {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.9;
  letter-spacing: 0.04em;
}

.about-text h2 {
  margin-bottom: var(--sp-5);
}

.about-text p {
  margin-bottom: var(--sp-4);
}

.about-points {
  margin: var(--sp-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.95rem;
  color: var(--c-text-mid);
}

.about-point-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, rgba(79,60,201,0.1), rgba(196,95,173,0.1));
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   ACCORDION SERVICES
   ============================================ */

.accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 860px;
  margin: 0 auto;
}

.accordion-item {
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t-base), border-color var(--t-base);
  box-shadow: var(--shadow-sm);
}

.accordion-item.open {
  border-color: rgba(79,60,201,0.3);
  box-shadow: var(--shadow-md);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  user-select: none;
  transition: background var(--t-fast);
}

.accordion-header:hover { background: rgba(79,60,201,0.02); }

.accordion-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(79,60,201,0.08), rgba(196,95,173,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: background var(--t-base), color var(--t-base);
}

.accordion-item.open .accordion-icon-wrap {
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  color: white;
}

.accordion-title {
  flex: 1;
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 700;
  color: var(--c-text-dark);
  line-height: 1.3;
}

.accordion-arrow {
  width: 32px;
  height: 32px;
  border-radius: var(--r-full);
  background: rgba(79,60,201,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform var(--t-base), background var(--t-base);
}

.accordion-item.open .accordion-arrow {
  transform: rotate(180deg);
  background: rgba(79,60,201,0.12);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}

.accordion-body-inner {
  padding: 0 var(--sp-6) var(--sp-6);
  padding-left: calc(var(--sp-6) + 48px + var(--sp-4));
}

.accordion-body-inner p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--c-text-mid);
}

/* ============================================
   FAQ CARDS
   ============================================ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: var(--sp-5);
}

.faq-card {
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
  overflow: hidden;
}

.faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.faq-card:hover, .faq-card.open {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79,60,201,0.2);
}

.faq-card.open::before { transform: scaleX(1); }

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-3);
}

.faq-question h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text-dark);
  line-height: 1.4;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  background: rgba(79,60,201,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform var(--t-base), background var(--t-base);
}

.faq-card.open .faq-toggle {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}

.faq-answer p {
  margin-top: var(--sp-4);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--c-text-mid);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-border);
}

/* ============================================
   FEATURE CARDS
   ============================================ */

.feature-card {
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
}

.feature-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  margin-bottom: var(--sp-5);
  box-shadow: 0 8px 20px rgba(79,60,201,0.3);
  transition: transform var(--t-spring);
}

.white-card:hover .feature-card-icon {
  transform: scale(1.1) rotate(-3deg);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: var(--c-text-dark);
}

.feature-card p {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: clamp(var(--sp-16), 8vw, var(--sp-24)) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: #ffffff;
  margin-bottom: var(--sp-5);
}

.cta-inner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--sp-8);
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   TEAM / PROFILE CARDS
   ============================================ */

.profile-card {
  padding: var(--sp-8);
  text-align: center;
}

.profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--sp-4);
  border: 3px solid var(--c-glass-border);
  box-shadow: var(--shadow-md);
}

.profile-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text-dark);
  margin-bottom: var(--sp-1);
}

.profile-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}

.profile-bio {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--c-text-mid);
}

/* ============================================
   WORKSHOP / PROGRAM CARDS
   ============================================ */

.workshop-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.workshop-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.white-card:hover .workshop-img {
  transform: scale(1.04);
}

.workshop-img-wrap {
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.workshop-body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.workshop-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: rgba(79,60,201,0.08);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}

.workshop-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text-dark);
  margin-bottom: var(--sp-3);
  line-height: 1.35;
}

.workshop-desc {
  font-size: 0.9rem;
  color: var(--c-text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--sp-5);
}

.workshop-meta {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
}

.workshop-meta-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.82rem;
  color: var(--c-text-muted);
  font-weight: 500;
}

.workshop-meta-item i { color: var(--c-primary); }

/* ============================================
   AUDIENCE CARDS
   ============================================ */

.audience-card {
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
}

.audience-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent, rgba(79,60,201,0.04));
  border-radius: var(--r-xl) 0 0 0;
}

.audience-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--sp-5);
  transition: transform var(--t-spring);
}

.white-card:hover .audience-icon { transform: scale(1.08); }

.audience-icon.tenants {
  background: linear-gradient(135deg, rgba(79,60,201,0.1), rgba(79,60,201,0.15));
  color: var(--c-primary);
}

.audience-icon.landlords {
  background: linear-gradient(135deg, rgba(196,95,173,0.1), rgba(196,95,173,0.15));
  color: var(--c-secondary);
}

.audience-icon.agents {
  background: linear-gradient(135deg, rgba(240,165,0,0.1), rgba(240,165,0,0.18));
  color: var(--c-accent);
}

.audience-icon.investors {
  background: linear-gradient(135deg, rgba(79,60,201,0.08), rgba(196,95,173,0.1));
  color: var(--c-primary-light);
}

/* ============================================
   PAGE HERO (interior pages)
   ============================================ */

.page-hero {
  padding: clamp(var(--sp-24), 12vh, var(--sp-32)) 0 clamp(var(--sp-12), 6vh, var(--sp-16));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: var(--sp-5);
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.15rem);
}


.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--sp-4);
  justify-content: center;
}

.breadcrumb a {
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast);
}

.breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.breadcrumb i { font-size: 0.6rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(var(--sp-8), 5vw, var(--sp-12));
  align-items: start;
}

.contact-info-card {
  padding: var(--sp-8);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--c-border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(79,60,201,0.1), rgba(196,95,173,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-1);
}

.contact-info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text-dark);
}

.contact-info-value a {
  color: var(--c-text-dark);
  transition: color var(--t-fast);
}

.contact-info-value a:hover { color: var(--c-primary); }


.contact-form-card {
  padding: var(--sp-8);
}

.form-group {
  margin-bottom: var(--sp-5);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-text-dark);
  margin-bottom: var(--sp-2);
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--sp-4) var(--sp-5);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--c-text-dark);
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  line-height: 1.5;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--c-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(79,60,201,0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--c-text-muted);
  font-size: 0.9rem;
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
}

.form-checkbox-wrap input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  accent-color: var(--c-primary);
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 0.85rem;
  color: var(--c-text-mid);
  line-height: 1.55;
}

.form-checkbox-label a {
  color: var(--c-primary);
  text-decoration: underline;
  text-decoration-color: rgba(79,60,201,0.3);
}


.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
  margin-top: var(--sp-10);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--c-text-dark);
  color: rgba(255,255,255,0.75);
  padding: clamp(var(--sp-12), 6vw, var(--sp-20)) 0 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(var(--sp-6), 4vw, var(--sp-10));
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text { color: #ffffff; }

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-top: var(--sp-3);
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--t-fast), transform var(--t-fast);
  display: inline-block;
}

.footer-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--sp-3);
}

.footer-contact-item i {
  color: var(--c-primary-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast);
}

.footer-contact-item a:hover { color: #ffffff; }

.footer-bottom {
  padding: var(--sp-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--t-fast);
}

.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ============================================
   COOKIE CONSENT
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: var(--sp-5);
  left: var(--sp-5);
  right: var(--sp-5);
  max-width: 960px;
  margin: 0 auto;
  background: rgba(26,22,48,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-8);
  z-index: 9999;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  display: none;
}

.cookie-banner.visible { display: block; }

.cookie-top {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
  margin-bottom: var(--sp-5);
}

.cookie-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.cookie-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--sp-2);
}

.cookie-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--c-primary-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}

.cookie-btn:hover { transform: translateY(-1px); }

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  color: white;
  box-shadow: 0 4px 16px rgba(79,60,201,0.4);
}

.cookie-btn-accept:hover { box-shadow: 0 8px 24px rgba(79,60,201,0.5); }

.cookie-btn-reject {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.15);
}

.cookie-btn-reject:hover { background: rgba(255,255,255,0.14); }

.cookie-btn-customize {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.12);
}

.cookie-btn-customize:hover {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
}


.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
}

.cookie-modal-overlay.visible { display: flex; }

.cookie-modal {
  background: #1e1a38;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--sp-8);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.cookie-modal h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: var(--sp-5);
}

.cookie-category {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  margin-bottom: var(--sp-3);
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-2);
}

.cookie-category-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.cookie-category-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input { opacity: 0; width: 0; height: 0; }

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background var(--t-base);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--t-base);
}

.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--c-primary); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.5; cursor: not-allowed; }

.cookie-modal-actions {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  flex-wrap: wrap;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--sp-10) var(--sp-6);
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  color: var(--c-text-dark);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--c-border);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
  color: var(--c-text-dark);
}

.legal-content p {
  margin-bottom: var(--sp-4);
  font-size: 0.95rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-4);
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--c-text-mid);
  margin-bottom: var(--sp-2);
  line-height: 1.65;
}

.legal-meta {
  background: rgba(79,60,201,0.05);
  border: 1px solid rgba(79,60,201,0.12);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-8);
}

/* ============================================
   THANKS PAGE
   ============================================ */

.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-20) var(--sp-6);
}

.thanks-icon {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
  margin: 0 auto var(--sp-6);
  box-shadow: 0 16px 48px rgba(79,60,201,0.35);
}

.thanks-section h1 {
  margin-bottom: var(--sp-4);
}

.thanks-section p {
  max-width: 520px;
  margin: 0 auto var(--sp-8);
  font-size: 1.05rem;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   UTILITY
   ============================================ */

.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.mb-10 { margin-bottom: var(--sp-10); }
.mb-12 { margin-bottom: var(--sp-12); }

.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }

.pt-0 { padding-top: 0 !important; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .btn-nav-cta {
    display: none;
  }

  .hamburger { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual { display: none; }

  .hero-actions { justify-content: center; }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img-wrap { order: -1; }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
  }

  .cookie-top { flex-direction: column; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--sp-4); }

  .hero { padding-top: calc(var(--sp-24) + var(--sp-4)); }

  .btn-lg {
    padding: var(--sp-4) var(--sp-8);
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .accordion-body-inner {
    padding-left: var(--sp-6);
  }
}


.iti, #phone { width: 100%; }
.iti { display: block; }
.iti__flag-container { z-index: 10; }