/* =============================================
   RASHID CONSULT — Personal Brand Website
   Dark theme · Amber accent · Unbounded headings
   ============================================= */

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

:root {
  --bg:          #0E0E14;
  --bg-surface:  #16161F;
  --bg-card:     #1C1C28;
  --bg-elevated: #24243A;
  --accent:      #FFB547;
  --accent-dark: #E09A2A;
  --accent-glow: rgba(255,181,71,.12);
  --accent-border: rgba(255,181,71,.28);

  --text:        #F2F2F6;
  --text-muted:  rgba(242,242,246,.5);
  --text-faint:  rgba(242,242,246,.25);
  --border:      rgba(255,255,255,.07);
  --border-mid:  rgba(255,255,255,.12);

  --insta-gradient: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);

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

  --shadow:    0 4px 24px rgba(0,0,0,.4);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.5);
  --shadow-accent: 0 8px 32px rgba(255,181,71,.2);

  --container: 1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14,14,20,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-main {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: .04em;
}

.logo-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.logo-sub {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .06em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}

.nav a:hover { color: var(--text); }

.btn-header {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  background: var(--accent);
  color: #0E0E14;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}

.btn-header:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: 96px 0 80px;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(255,181,71,.06) 0%, transparent 70%),
              var(--bg);
  overflow: hidden;
  position: relative;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-accent {
  color: var(--accent);
  display: block;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  background: var(--accent);
  color: #0E0E14;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,181,71,.3);
}

.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 24px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-mid);
  background: transparent;
  transition: border-color .2s, background .2s;
  white-space: nowrap;
}

.btn-insta:hover {
  border-color: rgba(255,255,255,.25);
  background: var(--bg-surface);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-stat {
  text-align: center;
  padding: 0 28px;
}

.hero-stat:first-child { padding-left: 0; }

.stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
}

.hero-stat-div {
  width: 1px;
  height: 36px;
  background: var(--border-mid);
  flex-shrink: 0;
}

/* Hero right */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.avatar-wrap {
  position: relative;
  display: inline-block;
}

.avatar-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--accent), #ff6b6b, #c678f5, var(--accent));
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  overflow: hidden;
}

.avatar-badge-rating {
  position: absolute;
  bottom: 8px;
  right: -20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.badge-stars {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.badge-val {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.avatar-badge-online {
  position: absolute;
  top: 8px;
  left: -24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.online-dot {
  width: 7px;
  height: 7px;
  background: #22C55E;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
}

.hero-mini-posts {
  display: flex;
  gap: 8px;
}

.mini-post {
  width: 92px;
  height: 92px;
  border-radius: var(--radius-sm);
  background: var(--g);
  display: flex;
  align-items: flex-end;
  padding: 8px;
  position: relative;
  overflow: hidden;
  transition: transform .2s;
  cursor: pointer;
}

.mini-post:hover { transform: scale(1.04); }

.mini-post::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
}

.mini-post-text {
  position: relative;
  font-size: 9.5px;
  font-weight: 600;
  color: white;
  line-height: 1.3;
}

.hero-scroll-hint {
  max-width: var(--container);
  margin: 48px auto 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-faint);
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}

.trust-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.trust-item svg { color: var(--accent); flex-shrink: 0; }

.trust-sep {
  color: var(--border-mid);
  font-size: 18px;
  flex-shrink: 0;
}

/* =============================================
   SECTIONS — shared
   ============================================= */
.section { padding: 96px 0; }

.section-head {
  margin-bottom: 56px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.section-head.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--text);
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin-top: 14px;
  line-height: 1.7;
}

.section-head.centered .section-desc { margin: 14px auto 0; }

/* =============================================
   ABOUT
   ============================================= */
.about-section { background: var(--bg); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.about-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.about-tags span {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 20px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color .2s, transform .2s;
}

.pillar-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-3px);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.pillar-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.pillar-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   SERVICES
   ============================================= */
.services-section { background: var(--bg-surface); }

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color .2s, transform .2s;
  position: relative;
}

.service-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
}

.service-card.featured {
  border-color: var(--accent-border);
  background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
}

.service-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-mid);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.service-badge.popular {
  color: var(--accent);
  border-color: var(--accent-border);
  background: var(--accent-glow);
}

.service-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-faint);
  margin-bottom: 12px;
  letter-spacing: .08em;
}

.service-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  flex: 1;
}

.service-list li {
  font-size: 13.5px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.service-price {
  font-family: 'Unbounded', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
}

.service-btn {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  background: transparent;
  border: 1.5px solid var(--border-mid);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}

.service-btn:hover,
.service-card.featured .service-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #0E0E14;
}

.services-note {
  text-align: center;
  margin-top: 36px;
  font-size: 15px;
  color: var(--text-muted);
}

.link-accent {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  margin-left: 6px;
}

.link-accent:hover { text-decoration: underline; }

/* =============================================
   INSTAGRAM SECTION
   ============================================= */
.insta-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.insta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(188,24,136,.07) 0%, transparent 70%);
  pointer-events: none;
}

.insta-tag::before { background: var(--insta-gradient); }
.insta-tag { background: var(--insta-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.insta-gradient-text {
  background: var(--insta-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.insta-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

/* IG Profile card */
.insta-profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.ig-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
}

.ig-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  padding: 2.5px;
  background: var(--insta-gradient);
  flex-shrink: 0;
}

.ig-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.ig-username {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
}

.ig-stats-row {
  display: flex;
  gap: 14px;
}

.ig-stat {
  font-size: 12.5px;
  color: var(--text-muted);
}

.ig-stat strong {
  color: var(--text);
  display: block;
  font-size: 14px;
}

.ig-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
}

.ig-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.ig-bio-link {
  color: #4facfe;
}

.ig-follow-row {
  display: flex;
  gap: 8px;
}

.ig-follow-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  background: #0095f6;
  color: white;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .2s;
}

.ig-follow-btn:hover { background: #0086dd; }

.ig-msg-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .2s;
}

.ig-msg-btn:hover { background: var(--border-mid); }

/* IG Grid */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  border-radius: var(--radius);
  overflow: hidden;
}

.insta-post {
  aspect-ratio: 1;
  background: var(--g);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.insta-post::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
  transition: opacity .2s;
}

.insta-post:hover::before { opacity: .8; }

.post-inner {
  position: relative;
  padding: 12px;
  width: 100%;
}

.post-text {
  font-size: 11px;
  font-weight: 600;
  color: white;
  line-height: 1.35;
  margin-bottom: 5px;
}

.post-meta {
  font-size: 10px;
  color: rgba(255,255,255,.7);
}

.insta-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-insta-follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 32px;
  background: var(--insta-gradient);
  color: white;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 8px 28px rgba(188,24,136,.25);
}

.btn-insta-follow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(188,24,136,.35);
}

.insta-cta-note {
  font-size: 14px;
  color: var(--text-faint);
}

/* =============================================
   RESULTS
   ============================================= */
.results-section { background: var(--bg-surface); }

.results-lead {
  max-width: 380px;
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 12px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .2s;
}

.result-card:hover { border-color: var(--border-mid); }

.result-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.result-change {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
}

.result-before, .result-after { flex: 1; }

.change-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-faint);
  margin-bottom: 4px;
}

.change-val {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.2;
}

.change-val.accent { color: var(--accent); }

.change-sub {
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 3px;
}

.result-arrow {
  font-size: 18px;
  color: var(--text-faint);
  flex-shrink: 0;
}

.result-quote {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: normal;
  margin-bottom: 12px;
}

.result-author {
  font-size: 13px;
  color: var(--text-faint);
  font-weight: 500;
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews-section { background: var(--bg); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color .2s;
}

.review-card:hover { border-color: var(--border-mid); }

.review-card.featured {
  border-color: var(--accent-border);
  background: linear-gradient(160deg, var(--bg-elevated), var(--bg-card));
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
}

.reviewer-title {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1px;
}

.review-stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 1px;
  margin-left: auto;
  flex-shrink: 0;
}

.review-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.review-source {
  font-size: 11.5px;
  color: var(--text-faint);
}

/* =============================================
   CTA
   ============================================= */
.cta-section {
  padding: 80px 0;
  background: var(--bg-surface);
}

.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255,181,71,.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.cta-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--text);
  line-height: 1.12;
  margin-bottom: 20px;
}

.cta-accent {
  color: var(--accent);
  display: block;
}

.cta-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 36px;
  background: var(--accent);
  color: #0E0E14;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: var(--shadow-accent);
}

.btn-cta-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,181,71,.3);
}

.btn-cta-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 28px;
  background: var(--insta-gradient);
  color: white;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  transition: transform .15s, box-shadow .2s;
}

.btn-cta-insta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(188,24,136,.3);
}

.cta-note {
  font-size: 13px;
  color: var(--text-faint);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-faint);
  line-height: 1.65;
  max-width: 240px;
  margin-top: 14px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 5px 0;
  transition: color .2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: 13px;
  color: var(--text-faint);
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}

/* =============================================
   REAL IMAGES
   ============================================= */
.avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.mini-post img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.ig-avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.post-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review-card.featured { grid-column: span 2; }
  .results-grid { grid-template-columns: 1fr; gap: 14px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .insta-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 64px 0 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .hero-title { font-size: 32px; }
  .hero-desc { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-insta { height: 48px; font-size: 14px; }

  .nav { display: none; }
  .btn-header { display: none; }
  .burger { display: flex; }

  .section { padding: 64px 0; }
  .section-head { flex-direction: column; gap: 16px; margin-bottom: 36px; }

  .avatar-ring { width: 160px; height: 160px; }
  .avatar-badge-rating { right: -10px; }
  .avatar-badge-online { left: -10px; }

  .reviews-grid { grid-template-columns: 1fr; }
  .review-card.featured { grid-column: span 1; }

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

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: span 2; }

  .cta-box { padding: 48px 28px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-cta-primary, .btn-cta-insta { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-stat { padding: 0 16px; }
  .hero-stat-div { display: none; }

  .trust-strip-inner { gap: 12px; }
  .trust-sep { display: none; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}
