/* ============================================
   兴聊 Landing Page Styles
   ============================================ */

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

:root {
  --coral: #FF6B6B;
  --coral-dark: #E8405A;
  --purple: #7C3AED;
  --purple-light: #6B8FFF;
  --cyan: #06B6D4;
  --green: #34D399;
  --gold: #FFB800;
  --dark: #0d0d22;
  --dark-deep: #0a0a18;
  --dark-surface: #1e1040;
  --light: #fafaf9;
  --light-bg: #F7F7FB;
  --white: #FFFFFF;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* --- Utility --- */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--coral);
  text-transform: uppercase;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: var(--white);
  padding: 18px 44px;
  border-radius: 14px;
  font-size: 17px;
  box-shadow: 0 12px 40px rgba(255,107,107,0.4), 0 2px 8px rgba(0,0,0,0.2);
}
.btn--primary:hover { box-shadow: 0 16px 48px rgba(255,107,107,0.5), 0 4px 12px rgba(0,0,0,0.25); }

.btn--secondary {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.8);
  padding: 18px 36px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.13);
}
.btn--secondary:hover { background: rgba(255,255,255,0.08); }

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 18px 48px;
  border-radius: 16px;
  font-size: 17px;
}
.btn--ghost:hover { background: rgba(255,255,255,0.14); }

.btn--large { font-size: 17px; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding-top: 80px;
  position: relative;
  width: 100%;
  min-height: 860px;
  background: radial-gradient(ellipse 140% 140% at 65% 35%, #1e1040 0%, #0d0d22 55%, #070710 100%);
  overflow: hidden;
}

/* Glow effects */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__glow--coral { width: 720px; height: 720px; background: var(--coral); opacity: 0.14; filter: blur(140px); top: -80px; right: calc(50% - 720px); }
.hero__glow--purple { width: 560px; height: 560px; background: var(--purple); opacity: 0.1; filter: blur(120px); bottom: -50px; left: -160px; }
.hero__glow--accent { width: 400px; height: 300px; background: var(--coral); opacity: 0.06; filter: blur(100px); bottom: 60px; left: 40%; }

/* Rings */
.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.03);
  pointer-events: none;
}
.hero__ring--1 { width: 560px; height: 560px; top: 100px; right: calc(50% - 630px); border-color: rgba(255,255,255,0.03); }
.hero__ring--2 { width: 460px; height: 460px; top: 150px; right: calc(50% - 580px); border-color: rgba(255,107,107,0.09); }
.hero__ring--3 { width: 360px; height: 360px; top: 200px; right: calc(50% - 530px); border-color: rgba(255,255,255,0.05); }

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 max(48px, calc((100vw - 1200px) / 2));
  max-width: 100%;
  background: rgba(10, 5, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}
.nav__logo-name {
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__link:hover { color: rgba(255,255,255,0.85); }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s;
}
.nav__cta:hover { background: rgba(255,255,255,0.14); }

/* Hero Body */
.hero__body {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  height: 740px;
}
.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(255,107,107,0.13), rgba(124,58,237,0.13));
  border: 1px solid;
  border-image: linear-gradient(90deg, rgba(255,107,107,0.38), rgba(124,58,237,0.38)) 1;
  border-image: none;
  border-color: rgba(255,107,107,0.38);
  color: #FFAA8A;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
}
.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,107,107,0.33);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,107,107,0.33); }
  50% { box-shadow: 0 0 0 6px rgba(255,107,107,0.15); }
}

/* Title */
.hero__title {
  font-size: 88px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -3px;
  line-height: 1;
}
.hero__subtitle {
  color: rgba(255,255,255,0.4);
  font-size: 18px;
  line-height: 1.75;
  max-width: 480px;
}

/* CTA Row */
.hero__cta-row {
  display: flex;
  gap: 16px;
}

/* Social proof */
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero__avatars {
  display: flex;
}
.hero__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #0d0d22;
  object-fit: cover;
  margin-right: -10px;
}
.hero__avatar:last-child { margin-right: 0; }
.hero__social-text {
  color: rgba(255,255,255,0.33);
  font-size: 14px;
}

/* Phone area */
.hero__phone-area {
  position: relative;
  flex-shrink: 0;
  width: 500px;
  height: 700px;
}
.hero__phone-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.18;
  filter: blur(90px);
  top: 130px;
  left: -20px;
  pointer-events: none;
}

/* Phone mockup */
.hero__phone {
  position: absolute;
  width: 280px;
  height: 560px;
  left: 0;
  top: 0;
  border-radius: 50px;
  background: linear-gradient(160deg, #4a4a4e 0%, #2c2c2e 40%, #1c1c1e 100%);
  padding: 8px;
  box-shadow: 0 32px 80px rgba(255,107,107,0.2), -8px 0 40px rgba(124,58,237,0.13);
  border: 1px solid;
  border-image: linear-gradient(160deg, rgba(255,255,255,0.19), rgba(255,255,255,0.06), rgba(255,255,255,0.02)) 1;
  border-image: none;
  border-color: rgba(255,255,255,0.12);
}
.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 44px;
  overflow: hidden;
  background: #000;
}
.phone__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}
.phone__dynamic-island {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 32px;
  border-radius: 16px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.phone__di-cam {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
}
.phone__di-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0a84ff;
  opacity: 0.8;
}

/* Peek phone */
.hero__peek-phone {
  position: absolute;
  width: 240px;
  height: 480px;
  right: -40px;
  top: 60px;
  border-radius: 40px;
  background: #1c1c1e;
  overflow: hidden;
  opacity: 0.6;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.peek__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

/* Float cards */
.hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 8px 24px rgba(0,0,0,0.27);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 5;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero__float--chat { left: -88px; top: 140px; width: 180px; animation-delay: 0s; }
.hero__float--rating { right: -10px; top: 280px; width: 160px; animation-delay: 1.5s; }
.float__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}
.float__text { display: flex; flex-direction: column; gap: 3px; }
.float__line1 { color: var(--white); font-size: 12px; font-weight: 600; }
.float__line2 { color: rgba(255,255,255,0.4); font-size: 11px; }
.float__stars { color: var(--gold); font-size: 14px; }

/* Carousel controls */
.carousel__arrow {
  position: absolute;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel__arrow:hover { background: rgba(255,255,255,0.15); }
.carousel__arrow--left { left: -88px; top: 256px; }
.carousel__arrow--right { right: -40px; top: 256px; }
.carousel__dots {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-70%);
  display: flex;
  align-items: center;
  gap: 8px;
}
.carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s;
}
.carousel__dot--active {
  width: 20px;
  background: var(--coral);
}

/* ============================================
   STATS / BENTO SECTION
   ============================================ */
.stats {
  background: var(--light-bg);
  padding: 100px 120px;
  max-width: 1440px;
  margin: 0 auto;
}
.stats__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
}
.stats__header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stats__title {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--dark);
}
.stats__header-sub {
  color: rgba(13,13,34,0.33);
  font-size: 17px;
  text-align: right;
  max-width: 280px;
}

/* Bento Grid */
.bento {
  display: flex;
  gap: 20px;
}
.bento__left {
  width: 680px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bento__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Bento Cards */
.bento__card { border-radius: 20px; position: relative; overflow: hidden; }

/* Feature Card */
.bento__card--feature {
  height: 270px;
  background: radial-gradient(ellipse 160% 160% at 70% 30%, #1e1040 0%, #0d0d22 70%, #08080e 100%);
}
.bento__feature-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.15;
  filter: blur(80px);
  right: -60px;
  top: -60px;
  pointer-events: none;
}
.bento__feature-bg-num {
  position: absolute;
  right: -20px;
  top: -30px;
  font-size: 260px;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  letter-spacing: -10px;
  pointer-events: none;
  line-height: 1;
}
.bento__feature-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 36px 40px;
}
.bento__feature-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bento__feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255,107,107,0.13);
  border: 1px solid rgba(255,107,107,0.27);
  color: #FFAA8A;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
}
.bento__feature-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}
.bento__feature-num {
  font-size: 64px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
}
.bento__feature-desc { display: flex; flex-direction: column; gap: 8px; }
.bento__feature-desc strong { color: var(--white); font-size: 18px; }
.bento__feature-desc p { color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.6; max-width: 560px; }

/* Security Card */
.bento__card--security {
  height: 170px;
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.bento__security-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255,107,107,0.27);
}
.bento__security-text { display: flex; flex-direction: column; gap: 10px; }
.bento__security-text h3 { font-size: 20px; font-weight: 700; color: var(--dark); }
.bento__security-text p { font-size: 14px; color: rgba(13,13,34,0.4); line-height: 1.65; }
.bento__tags { display: flex; gap: 8px; }
.bento__tag {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.bento__tag--coral { background: rgba(255,107,107,0.07); color: var(--coral); }
.bento__tag--purple { background: rgba(124,58,237,0.07); color: var(--purple); }
.bento__tag--cyan { background: rgba(6,182,212,0.07); color: var(--cyan); }

/* Users Card */
.bento__card--users {
  height: 220px;
  background: radial-gradient(ellipse 180% 180% at 85% 20%, #2d1a6e 0%, #1a103a 50%, #0f0a28 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(124,58,237,0.2);
}
.bento__card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.27);
}
.bento__card-label--dark {
  color: rgba(13,13,34,0.27);
}
.bento__card-big-num {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
}
.bento__card-desc-light {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

/* Rating Card */
.bento__card--rating {
  height: 220px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 28px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.bento__rating-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bento__rating-badge {
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255,184,0,0.09);
  color: #E09000;
  font-size: 11px;
  font-weight: 600;
}
.bento__rating-num {
  font-size: 64px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -2px;
}
.bento__rating-stars { color: var(--gold); font-size: 20px; }
.bento__rating-desc { color: rgba(13,13,34,0.33); font-size: 13px; }

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews {
  position: relative;
  background: radial-gradient(ellipse 140% 140% at center, #120e28 0%, #0a0a18 70%, #060610 100%);
  overflow: hidden;
}
.reviews__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.reviews__glow--1 { width: 500px; height: 500px; background: var(--purple); opacity: 0.08; filter: blur(120px); top: -100px; left: 100px; }
.reviews__glow--2 { width: 450px; height: 450px; background: var(--coral); opacity: 0.07; filter: blur(110px); bottom: -50px; right: 100px; }

.reviews__content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.reviews__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.reviews__title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
}

/* Review Cards */
.reviews__cards {
  display: flex;
  gap: 24px;
  width: 100%;
}
.review-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 28px;
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.review-card__quote {
  font-size: 64px;
  font-weight: 800;
  line-height: 0.6;
}
.review-card__stars { color: var(--gold); font-size: 15px; }
.review-card__text {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  line-height: 1.75;
}
.review-card__user {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid;
}
.review-card__avatar--coral { border-color: rgba(255,107,107,0.33); }
.review-card__avatar--purple { border-color: rgba(124,58,237,0.33); }
.review-card__avatar--green { border-color: rgba(52,211,153,0.33); }
.review-card__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.review-card__info strong { color: var(--white); font-size: 15px; }
.review-card__info span { color: rgba(255,255,255,0.33); font-size: 12px; }

/* ============================================
   BLOG SECTION
   ============================================ */
.blog {
  background: var(--white);
  padding: 100px 120px;
  max-width: 1440px;
  margin: 0 auto;
}
.blog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
.blog__header-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blog__title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--dark);
}
.blog__sub { color: rgba(13,13,34,0.4); font-size: 16px; }
.blog__more {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  background: rgba(255,107,107,0.05);
  border: 1px solid rgba(255,107,107,0.2);
  color: var(--coral);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.blog__more:hover { background: rgba(255,107,107,0.1); }

/* Blog Cards */
.blog__cards {
  display: flex;
  gap: 28px;
}
.blog-card {
  flex: 1;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid #F0F0F0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03), 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 16px 40px rgba(0,0,0,0.08);
}
.blog-card__cover {
  height: 200px;
  overflow: hidden;
}
.blog-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card__cover img { transform: scale(1.05); }
.blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blog-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
}
.blog-card__tag--coral { background: rgba(255,107,107,0.08); color: var(--coral); }
.blog-card__tag--purple { background: rgba(124,58,237,0.08); color: var(--purple); }
.blog-card__tag--cyan { background: rgba(6,182,212,0.08); color: var(--cyan); }
.blog-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--dark);
}
.blog-card__excerpt {
  font-size: 14px;
  color: rgba(13,13,34,0.4);
  line-height: 1.65;
}
.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card__meta span { font-size: 12px; color: rgba(13,13,34,0.27); }

/* ============================================
   CTA + FOOTER SECTION
   ============================================ */
.cta {
  position: relative;
  background: radial-gradient(ellipse 140% 140% at center, #120e28 0%, #0a0a18 70%, #060610 100%);
  overflow: hidden;
  min-height: 520px;
}
.cta__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta__glow--1 { width: 600px; height: 400px; background: var(--purple); opacity: 0.2; filter: blur(130px); top: -60px; left: 200px; }
.cta__glow--2 { width: 500px; height: 400px; background: var(--coral); opacity: 0.18; filter: blur(120px); bottom: 30px; right: 100px; }
.cta__bg-text {
  position: absolute;
  font-size: 340px;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  letter-spacing: -10px;
  top: -60px;
  left: -20px;
  pointer-events: none;
  line-height: 1;
}
.cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 120px;
  min-height: 420px;
  text-align: center;
}
.cta__title {
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
}
.cta__sub {
  color: rgba(255,255,255,0.4);
  font-size: 18px;
}
.cta__buttons {
  display: flex;
  gap: 18px;
}

/* Footer */
.footer__line {
  position: relative;
  z-index: 2;
  width: calc(100% - 240px);
  height: 1px;
  background: rgba(255,255,255,0.05);
  margin: 0 auto;
}
.footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 120px;
  height: 90px;
  max-width: 1440px;
  margin: 0 auto;
}
.footer__copy {
  color: rgba(255,255,255,0.2);
  font-size: 13px;
}
.footer__links {
  display: flex;
  gap: 36px;
}
.footer__links a {
  color: rgba(255,255,255,0.2);
  font-size: 13px;
  transition: color 0.2s;
}
.footer__links a:hover { color: rgba(255,255,255,0.5); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .hero__body { padding: 0 60px; gap: 40px; }
  .nav { padding: 0 40px; }
  .stats, .blog { padding: 80px 60px; }
  .reviews__content { padding: 80px 60px; }
  .cta__inner { padding: 60px; }
  .footer { padding: 0 60px; }
  .bento__left { width: 540px; }
}

@media (max-width: 1024px) {
  .hero__body { flex-direction: column; height: auto; padding: 40px 40px 80px; }
  .hero__title { font-size: 64px; }
  .hero__phone-area { width: 360px; height: 560px; margin: 0 auto; }
  .hero__phone { width: 240px; height: 480px; }
  .hero__peek-phone { width: 200px; height: 400px; right: -20px; }
  .hero__float--chat { left: -40px; }
  .hero__float--rating { right: -10px; }
  .bento { flex-direction: column; }
  .bento__left { width: 100%; }
  .reviews__cards { flex-direction: column; }
  .blog__cards { flex-direction: column; }
  .stats__header { flex-direction: column; gap: 16px; }
  .stats__header-sub { text-align: left; }
  .blog__header { flex-direction: column; gap: 24px; align-items: flex-start; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .hero__title { font-size: 48px; letter-spacing: -2px; }
  .hero__subtitle { font-size: 16px; }
  .hero__cta-row { flex-direction: column; }
  .stats__title { font-size: 32px; }
  .reviews__title { font-size: 32px; }
  .blog__title { font-size: 32px; }
  .cta__title { font-size: 36px; }
  .cta__buttons { flex-direction: column; }
  .footer { flex-direction: column; gap: 16px; padding: 24px 40px; height: auto; text-align: center; }
}
