/* ============================================
   kazakhstanproperty.com — Global Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@300;400;500&display=swap');

:root {
  --primary: #0D47A1;
  --primary-light: #1565C0;
  --accent: #42A5F5;
  --accent-light: #90CAF9;
  --bg-light: #E3F2FD;
  --white: #ffffff;
  --dark: #0a1628;
  --text: #2c3e50;
  --text-muted: #607d8b;
  --border: #bbdefb;
  --radius: 12px;
  --radius-pill: 50px;
  --transition: 0.3s ease;
  --shadow-sm: 0 4px 16px rgba(13,71,161,0.12);
  --shadow-md: 0 8px 32px rgba(13,71,161,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(13,71,161,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13,71,161,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-light {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-light:hover {
  background: rgba(255,255,255,0.32);
  transform: translateY(-2px);
}

/* ── CARDS ── */
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: all var(--transition);
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
}

/* ── SECTION SPACING ── */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--bg-light); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── TAG / BADGE ── */
.tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  background: var(--bg-light);
  color: var(--primary);
  border: 1px solid var(--border);
}

/* ══════════════════════════════
   HEADER / NAV
══════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-menu a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  background: var(--bg-light);
  color: var(--primary);
}

.nav-cta { margin-left: 8px; }

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

/* mobile nav */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 16px; font-size: 1rem; }
  .nav-cta { margin: 8px 0 0; }
}

/* ══════════════════════════════
   HERO — GRADIENT MESH
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(66,165,245,0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(13,71,161,0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 80%, rgba(144,202,249,0.18) 0%, transparent 50%),
    linear-gradient(135deg, #0a1628 0%, #0D47A1 50%, #1565C0 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2342A5F5' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero h1 .hl {
  background: linear-gradient(90deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  min-height: calc(92vh - 68px);
}

.hero-image {
  position: relative;
  z-index: 1;
}
.hero-image img {
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  backdrop-filter: blur(8px);
  animation: float 3s ease-in-out infinite;
}
.hero-float-card.card-1 { bottom: -20px; left: -30px; }
.hero-float-card.card-2 { top: -20px; right: -30px; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .hero { min-height: auto; padding: 100px 0 60px; }
}

/* ══════════════════════════════
   BENTO GRID
══════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bento-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  background: var(--white);
}
.bento-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
  transform: translateY(-4px);
}
.bento-item.wide { grid-column: span 2; }
.bento-item.tall { grid-row: span 2; }
.bento-item.featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-color: transparent;
}
.bento-item.featured h3,
.bento-item.featured p { color: white; }
.bento-item.accent {
  background: var(--bg-light);
  border-color: var(--accent-light);
}

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-item.wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-item.wide,
  .bento-item.tall { grid-column: span 1; grid-row: span 1; }
}

/* ══════════════════════════════
   ICON LIST
══════════════════════════════ */
.icon-feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.icon-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.icon-feature:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
}
.icon-wrap {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 12px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.icon-wrap.blue { background: linear-gradient(135deg, var(--primary), var(--accent)); }
.icon-wrap.blue svg, .icon-wrap.blue span { filter: brightness(10); }

/* ══════════════════════════════
   STATS
══════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.stat-item {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.stat-item:hover { box-shadow: var(--shadow-sm); border-color: var(--accent); }
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ══════════════════════════════
   TEAM GRID
══════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.team-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  text-align: center;
}
.team-card:hover { box-shadow: var(--shadow-sm); border-color: var(--accent); transform: translateY(-4px); }
.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.team-card-body { padding: 20px; }
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ══════════════════════════════
   BLOG CARDS
══════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-sm); border-color: var(--accent); transform: translateY(-4px); }
.blog-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-card-body { padding: 24px; }
.blog-card-meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  align-items: center;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.blog-card a.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
}
.blog-card a.read-more:hover { color: var(--accent); }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-sm); border-color: var(--accent); }
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; }
.testimonial-text { font-style: italic; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ══════════════════════════════
   COMPARISON TABLE
══════════════════════════════ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.comparison-table th {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 16px 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-align: left;
}
.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--bg-light); }
.check { color: #22c55e; font-weight: 700; }
.cross { color: #ef4444; }

/* ══════════════════════════════
   FORM
══════════════════════════════ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(66,165,245,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error { color: #ef4444; font-size: 0.8rem; margin-top: 4px; display: none; }
.form-success {
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.92rem;
  display: none;
  margin-top: 16px;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { font-size: 1.1rem; color: white; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: white;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.87rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.87rem;
  margin-bottom: 12px;
}
.footer-contact-item svg { min-width: 16px; margin-top: 3px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════
   COOKIE BANNER
══════════════════════════════ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 20px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 2px solid var(--primary);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { font-size: 0.88rem; flex: 1; min-width: 240px; }
#cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════
   PAGE HERO (compact)
══════════════════════════════ */
.page-hero {
  padding: 130px 0 70px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(66,165,245,0.2) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 580px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.9); }

/* ══════════════════════════════
   VIDEO SECTION
══════════════════════════════ */
.video-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ══════════════════════════════
   TABS
══════════════════════════════ */
.tabs-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.tab-btn {
  padding: 10px 22px;
  border-radius: 8px 8px 0 0;
  border: none;
  background: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  border-bottom: none;
  margin-bottom: -1px;
}
.tab-btn.active {
  background: var(--white);
  color: var(--primary);
  border-color: var(--border);
  border-bottom-color: var(--white);
}
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ══════════════════════════════
   EVENT CALENDAR
══════════════════════════════ */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.event-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  gap: 0;
  transition: all var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-sm); border-color: var(--accent); }
.event-date {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  font-family: 'Poppins', sans-serif;
}
.event-date .day { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.event-date .month { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; }
.event-info { padding: 18px; flex: 1; }
.event-info h4 { font-size: 0.95rem; margin-bottom: 6px; }
.event-info p { font-size: 0.82rem; color: var(--text-muted); }

/* ══════════════════════════════
   ACHIEVEMENT BADGES
══════════════════════════════ */
.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.badge-item {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.badge-item:hover { box-shadow: var(--shadow-sm); border-color: var(--accent); transform: translateY(-4px); }
.badge-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
}
.badge-item h4 { font-size: 0.92rem; margin-bottom: 6px; }
.badge-item p { font-size: 0.8rem; color: var(--text-muted); }

/* ══════════════════════════════
   PARTNERS
══════════════════════════════ */
.partners-strip {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.partner-logo {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.partner-logo:hover { border-color: var(--accent); color: var(--primary); }

/* ══════════════════════════════
   SOCIAL PROOF
══════════════════════════════ */
.social-proof-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all var(--transition);
}
.proof-badge:hover { box-shadow: var(--shadow-sm); border-color: var(--accent); }
.proof-badge .icon { font-size: 1.2rem; }

/* ══════════════════════════════
   DOWNLOAD RESOURCES
══════════════════════════════ */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.download-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}
.download-card:hover { box-shadow: var(--shadow-sm); border-color: var(--accent); }
.download-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--bg-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.download-info h4 { font-size: 0.95rem; margin-bottom: 4px; }
.download-info p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 12px; }

/* ══════════════════════════════
   PRICING PLANS
══════════════════════════════ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.plan-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}
.plan-card.featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: transparent;
  color: white;
}
.plan-card.featured h3,
.plan-card.featured p { color: white; }
.plan-card:hover { box-shadow: var(--shadow-sm); }
.plan-name { font-size: 1rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; }
.plan-card.featured .plan-name { color: rgba(255,255,255,0.75); }
.plan-title { font-size: 1.6rem; margin-bottom: 20px; }
.plan-features { text-align: left; margin: 24px 0; }
.plan-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.plan-card.featured .plan-features li { border-color: rgba(255,255,255,0.15); color: white; }
.plan-features li:last-child { border: none; }

/* ══════════════════════════════
   ARTICLE STYLES
══════════════════════════════ */
.article-body {
  max-width: 780px;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text);
}
.article-body h2 { font-size: 1.6rem; margin: 40px 0 16px; color: var(--dark); }
.article-body h3 { font-size: 1.25rem; margin: 32px 0 12px; color: var(--primary); }
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  background: var(--bg-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-muted);
  margin: 28px 0;
}

.article-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.article-sidebar { position: sticky; top: 84px; }
.sidebar-widget {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget h4 { font-size: 1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sidebar-post {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post:hover { color: var(--primary); }
.sidebar-post img { width: 56px; height: 44px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.sidebar-post-info h5 { font-size: 0.82rem; font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
.sidebar-post-info span { font-size: 0.75rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .article-with-sidebar { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

/* ══════════════════════════════
   SHARE BUTTONS
══════════════════════════════ */
.share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
}
.share-btn:hover { box-shadow: var(--shadow-sm); border-color: var(--accent); }

/* ══════════════════════════════
   NEWSLETTER CTA
══════════════════════════════ */
.newsletter-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  padding: 56px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.newsletter-cta::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.newsletter-cta h2 { color: white; margin-bottom: 12px; }
.newsletter-cta p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  outline: none;
  min-width: 220px;
}

/* ══════════════════════════════
   BEFORE/AFTER
══════════════════════════════ */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ba-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.ba-item img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.ba-label {
  padding: 14px 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.ba-item.before .ba-label { background: #fef3c7; color: #92400e; }
.ba-item.after .ba-label { background: #dcfce7; color: #166534; }
@media (max-width: 600px) { .before-after { grid-template-columns: 1fr; } }

/* ══════════════════════════════
   CHART PLACEHOLDER
══════════════════════════════ */
.chart-container {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--white);
}

/* ══════════════════════════════
   CUSTOMER JOURNEY
══════════════════════════════ */
.journey-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  position: relative;
}
.journey-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}
.journey-step {
  text-align: center;
  padding: 20px 12px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  border: 4px solid white;
  box-shadow: var(--shadow-sm);
}
.journey-step h4 { font-size: 0.9rem; margin-bottom: 6px; }
.journey-step p { font-size: 0.8rem; color: var(--text-muted); }

/* ══════════════════════════════
   CONTACT MAP / DETAILS
══════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: all var(--transition);
}
.contact-detail:hover { box-shadow: var(--shadow-sm); border-color: var(--accent); }
.contact-detail-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}
.map-embed {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 400px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ══════════════════════════════
   SOCIAL LINKS
══════════════════════════════ */
.social-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.social-link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-link-card:hover { box-shadow: var(--shadow-sm); border-color: var(--accent); color: var(--primary); }
.social-link-card .icon { font-size: 1.4rem; }

/* ══════════════════════════════
   LIVE CHAT WIDGET
══════════════════════════════ */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}
.chat-toggle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
  font-size: 1.4rem;
  color: white;
}
.chat-toggle:hover { transform: scale(1.1); }
.chat-window {
  display: none;
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  overflow: hidden;
}
.chat-window.open { display: block; }
.chat-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 16px 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
.chat-header p { font-size: 0.8rem; font-weight: 400; opacity: 0.8; }
.chat-messages {
  height: 200px;
  overflow-y: auto;
  padding: 16px;
  background: #f8faff;
}
.chat-msg {
  margin-bottom: 12px;
  font-size: 0.85rem;
  background: white;
  border-radius: 10px 10px 10px 2px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  max-width: 85%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.chat-msg.user {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  border-radius: 10px 10px 2px 10px;
  margin-left: auto;
}
.chat-input-area {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--border);
}
.chat-input-area input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.85rem;
  outline: none;
}
.chat-input-area input:focus { border-color: var(--accent); }
.chat-send {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition);
}
.chat-send:hover { background: var(--accent); }

/* ══════════════════════════════
   LEGAL PAGES
══════════════════════════════ */
.legal-content { max-width: 860px; }
.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-size: 1.25rem; margin-bottom: 16px; color: var(--primary); }
.legal-section p, .legal-section li { font-size: 0.95rem; line-height: 1.8; margin-bottom: 12px; }
.legal-section ul { margin-left: 24px; list-style: disc; }

/* Cookie policy table */
.cookies-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.cookies-table th {
  background: var(--primary);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.cookies-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); }
.cookies-table tr:nth-child(even) td { background: var(--bg-light); }

/* ══════════════════════════════
   MISC
══════════════════════════════ */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.highlight-box {
  background: var(--bg-light);
  border: 1px solid var(--accent-light);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}

/* Sidebar main layout */
.sidebar-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.sidebar-nav {
  position: sticky;
  top: 84px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
  color: var(--text);
}
.sidebar-nav a:last-child { border-bottom: none; }
.sidebar-nav a:hover,
.sidebar-nav a.active { background: var(--bg-light); color: var(--primary); }
@media (max-width: 900px) {
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar-nav { position: static; }
}

/* Counter animation */
.counter { display: inline-block; }

/* Animated underline */
.animated-heading {
  position: relative;
  display: inline-block;
}
.animated-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: width 0.6s ease;
}
.animated-heading.in-view::after { width: 100%; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive tables */
.table-wrap { overflow-x: auto; }

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .newsletter-cta { padding: 36px 24px; }
}
