/* ============================================================
   Next Chance Solutions — Global Stylesheet
   Colors: #111 dark | #E91E90 pink | #2196F3 blue | #F7C948 gold | #C9A227 gold-subtle
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #E8E8E8;
  background: #111111;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .25s; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; line-height: 1.2; color: #fff; }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: linear-gradient(135deg, #E91E90, #2196F3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-bar {
  width: 80px; height: 4px;
  background: linear-gradient(135deg, #E91E90, #2196F3);
  border-radius: 2px;
  margin: 0 auto 48px;
}
.section-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #E91E90;
  text-align: center;
  display: block;
  margin-bottom: 8px;
}
.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: #aaa;
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, background .3s;
  border: none;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.35); }
.btn-gradient { background: linear-gradient(135deg, #E91E90, #2196F3); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: #fff; }
.btn-pink { background: #E91E90; color: #fff; }
.btn-pink:hover { background: #d4177f; }
.btn-blue { background: #2196F3; color: #fff; }
.btn-gold { background: #F7C948; color: #111; }
.btn-gold:hover { background: #e5b93c; }
.btn-sm { padding: 10px 24px; font-size: .9rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@keyframes scoreGrow {
  from { stroke-dashoffset: 251; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233,30,144,.4); }
  50% { box-shadow: 0 0 0 12px rgba(233,30,144,0); }
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000; padding: 16px 0;
  transition: background .35s, padding .35s, box-shadow .35s;
}
.nav.scrolled {
  background: rgba(17,17,17,.97);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 42px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.8);
  position: relative; transition: color .25s;
}
.nav-links a:hover { color: #fff; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(135deg, #E91E90, #2196F3);
  transition: width .3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, #E91E90, #2196F3);
  color: #fff !important; padding: 10px 24px; border-radius: 50px;
  font-weight: 600;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(233,30,144,.4); }

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 26px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../img/hero-banner.png') center right / cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(17,17,17,.97) 0%,
    rgba(17,17,17,.92) 25%,
    rgba(17,17,17,.7) 50%,
    rgba(17,17,17,.3) 75%,
    rgba(17,17,17,.1) 100%
  );
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  padding-left: max(24px, calc((100% - 1200px) / 2 + 24px));
  padding-right: 40%;
  padding-top: 200px;
  padding-bottom: 120px;
}
.hero-content .badge {
  display: inline-block;
  background: rgba(233,30,144,.12);
  border: 1px solid rgba(233,30,144,.3);
  color: #E91E90;
  padding: 6px 16px; border-radius: 50px;
  font-size: .82rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-content p {
  font-size: 1.15rem; color: #bbb;
  max-width: 520px; margin-bottom: 32px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============ TRUST BAR ============ */
.trust-bar {
  background: #0D0D0D;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 48px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
}
.trust-item h3 {
  font-size: 2.4rem; font-weight: 800;
  margin-bottom: 4px;
}
.trust-item p { color: #888; font-size: .9rem; }

/* ============ SERVICES ============ */
.services { padding: 100px 0; background: #111; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  padding: 40px 32px;
  transition: transform .35s, border-color .35s, box-shadow .35s;
  position: relative; overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(233,30,144,.25);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.service-card .icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 20px;
}
.service-card .icon.pink { background: rgba(233,30,144,.12); }
.service-card .icon.blue { background: rgba(33,150,243,.12); }
.service-card .icon.gold { background: rgba(247,201,72,.12); }
.service-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.service-card p { color: #999; font-size: .95rem; line-height: 1.7; }
.service-card ul { margin-top: 16px; }
.service-card ul li {
  color: #aaa; font-size: .9rem; padding: 4px 0;
  padding-left: 20px; position: relative;
}
.service-card ul li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, #E91E90, #2196F3);
}

/* ============ CREDIT SCORE METER ============ */
.score-meter {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.score-gauge {
  position: relative; width: 180px; height: 180px;
}
.score-gauge svg { transform: rotate(-90deg); }
.score-gauge circle {
  fill: none; stroke-width: 10; stroke-linecap: round;
}
.score-gauge .track { stroke: #2A2A2A; }
.score-gauge .fill {
  stroke: url(#gaugeGrad);
  stroke-dasharray: 502;
  stroke-dashoffset: 502;
  transition: stroke-dashoffset 2s ease-out;
}
.score-gauge .fill.animate { stroke-dashoffset: 150; }
.score-gauge .label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.score-gauge .label .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 800;
  color: #fff;
}
.score-gauge .label .sub {
  font-size: .75rem; color: #888;
  text-transform: uppercase; letter-spacing: 1px;
}
.score-text h3 { font-size: 1.6rem; margin-bottom: 8px; }
.score-text p { color: #999; max-width: 380px; line-height: 1.8; }

/* ============ HOW IT WORKS ============ */
.how-it-works { padding: 100px 0; background: #0D0D0D; }
.timeline {
  position: relative; max-width: 700px; margin: 0 auto;
  padding-left: 48px;
}
.timeline::before {
  content: ''; position: absolute; left: 18px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #E91E90, #2196F3);
}
.timeline-step {
  position: relative; padding: 0 0 48px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step .dot {
  position: absolute; left: -42px; top: 4px;
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, #E91E90, #2196F3);
  border: 3px solid #0D0D0D;
  z-index: 2;
}
.timeline-step h4 { font-size: 1.15rem; margin-bottom: 6px; }
.timeline-step p { color: #999; font-size: .95rem; }

/* ============ FEATURED PRODUCTS ============ */
.featured-products { padding: 100px 0; background: #111; }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.product-card .card-img {
  position: relative; height: 220px;
  background: #151515;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 20px;
}
.product-card .card-img img {
  max-height: 100%; width: auto;
  object-fit: contain;
}
.product-card .card-img .free-badge {
  position: absolute; top: 16px; right: 16px;
  background: #4CAF50; color: #fff;
  padding: 4px 12px; border-radius: 50px;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase;
}
.product-card .card-img .product-badge {
  position: absolute; top: 16px; right: 16px;
  padding: 5px 14px; border-radius: 50px;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  font-family: 'DM Sans', sans-serif;
}
.product-badge.badge-gold {
  background: linear-gradient(135deg, #F7C948, #C9A227);
  color: #111;
}
.product-badge.badge-pink {
  background: linear-gradient(135deg, #E91E90, #c4167a);
  color: #fff;
}
.product-card .card-body {
  padding: 24px;
}
.product-card .card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.product-card .card-body p { color: #999; font-size: .88rem; margin-bottom: 16px; line-height: 1.6; }
.product-card .card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: #F7C948;
}

/* ============ ABOUT SPLIT ============ */
.about-split { padding: 100px 0; background: #0D0D0D; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-img {
  border-radius: 24px; overflow: hidden;
  border: 2px solid rgba(233,30,144,.15);
}
.about-text .section-label { text-align: left; }
.about-text h2 { text-align: left; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 20px; }
.about-text p { color: #aaa; margin-bottom: 16px; line-height: 1.8; }
.about-text .about-stats {
  display: flex; gap: 32px; margin: 28px 0;
}
.about-text .stat { text-align: center; }
.about-text .stat h4 { font-size: 1.8rem; }
.about-text .stat p { font-size: .8rem; color: #888; margin: 0; }

/* ============ CTA BANNER ============ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #E91E90, #2196F3);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  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='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,.9); margin-bottom: 32px; font-size: 1.1rem; position: relative; z-index: 1; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { position: relative; z-index: 1; background: #fff; color: #111; }
.cta-banner .btn:hover { background: #F7C948; }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 100px 0; background: #111; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.testimonial-card {
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px; padding: 32px;
  position: relative;
}
.testimonial-card .stars { color: #F7C948; font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-card p { color: #aaa; font-style: italic; font-size: .95rem; line-height: 1.7; margin-bottom: 20px; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #E91E90, #2196F3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: .9rem;
}
.testimonial-card .author .name { font-weight: 600; color: #fff; font-size: .9rem; }
.testimonial-card .author .location { color: #777; font-size: .8rem; }

/* ============ FAQ ============ */
.faq { padding: 100px 0; background: #0D0D0D; }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; width: 100%; background: none; border: none;
  color: #fff; font-size: 1.05rem; font-weight: 500;
  font-family: 'DM Sans', sans-serif; text-align: left;
  padding: 0; transition: color .25s;
}
.faq-question:hover { color: #E91E90; }
.faq-question .icon {
  font-size: 1.4rem; transition: transform .3s;
  color: #E91E90; flex-shrink: 0; margin-left: 16px;
}
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s;
  padding: 0;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 16px 0 4px;
}
.faq-answer p { color: #999; font-size: .95rem; line-height: 1.8; }

/* ============ CONTACT ============ */
.contact { padding: 100px 0; background: #111; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-info h3 { font-size: 1.4rem; margin-bottom: 16px; }
.contact-info p { color: #999; margin-bottom: 24px; line-height: 1.8; }
.contact-detail {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; color: #ccc; font-size: .95rem;
}
.contact-detail .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(233,30,144,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-form input, .contact-form textarea {
  width: 100%; background: #1A1A1A;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 14px 18px;
  color: #fff; font-family: 'DM Sans', sans-serif;
  font-size: .95rem; margin-bottom: 16px;
  transition: border-color .25s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: #E91E90;
}
.contact-form textarea { min-height: 120px; resize: vertical; }

/* ============ FOOTER ============ */
.footer { background: #0A0A0A; padding: 64px 0 24px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand p { color: #777; font-size: .88rem; line-height: 1.7; margin-top: 16px; }
.footer h4 {
  font-size: .95rem; margin-bottom: 16px; font-family: 'DM Sans', sans-serif;
  color: #fff; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}
.footer ul li { margin-bottom: 8px; }
.footer ul li a { color: #888; font-size: .88rem; transition: color .25s; }
.footer ul li a:hover { color: #E91E90; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: #555; font-size: .82rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: #888; font-size: .9rem; transition: background .25s, color .25s;
}
.footer-social a:hover { background: #E91E90; color: #fff; }

/* ============ SHOP PAGE ============ */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  background: #0D0D0D;
  position: relative;
}
.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 12px;
}
.page-header p { color: #999; font-size: 1.1rem; }

.filter-tabs {
  display: flex; justify-content: center; gap: 12px;
  margin-bottom: 48px; flex-wrap: wrap;
}
.filter-tab {
  padding: 10px 24px; border-radius: 50px;
  background: #1A1A1A; border: 1px solid rgba(255,255,255,.08);
  color: #aaa; font-size: .9rem; font-weight: 500;
  cursor: pointer; transition: all .25s;
  font-family: 'DM Sans', sans-serif;
}
.filter-tab:hover, .filter-tab.active {
  background: linear-gradient(135deg, #E91E90, #2196F3);
  color: #fff; border-color: transparent;
}

.shop-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px; padding-bottom: 60px;
}

/* ============ ABOUT PAGE ============ */
.about-hero {
  position: relative; min-height: 70vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.about-hero .hero-bg {
  background-image: url('../img/about-hero.png');
  background-position: center center;
}
.about-hero .hero-content {
  padding-top: 160px; padding-bottom: 80px;
}

.values-section { padding: 100px 0; background: #111; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: #1A1A1A; border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px; padding: 36px 28px; text-align: center;
  transition: transform .35s;
}
.value-card:hover { transform: translateY(-4px); }
.value-card .emoji { font-size: 2.4rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value-card p { color: #999; font-size: .9rem; line-height: 1.7; }

.journey-section { padding: 100px 0; background: #0D0D0D; }
.journey-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.journey-img { border-radius: 20px; overflow: hidden; }

/* ============ LEGAL PAGES ============ */
.legal-page { padding: 160px 0 80px; background: #111; min-height: 100vh; }
.legal-page .container { max-width: 800px; }
.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}
.legal-page .last-updated { color: #888; font-size: .9rem; margin-bottom: 48px; }
.legal-page h2 {
  font-size: 1.35rem; margin-top: 40px; margin-bottom: 16px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.legal-page p, .legal-page li {
  color: #aaa; font-size: .95rem; line-height: 1.8; margin-bottom: 12px;
}
.legal-page ul { padding-left: 24px; margin-bottom: 16px; }
.legal-page ul li { list-style: disc; padding-left: 4px; }

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #E91E90, #2196F3);
  color: #fff; border: none; cursor: pointer;
  font-size: 1.3rem; display: flex;
  align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s, transform .3s;
  z-index: 999; box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

/* ============ MOBILE STICKY CTA ============ */
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; width: 100%;
  z-index: 998; padding: 12px 16px;
  background: rgba(17,17,17,.95); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(233,30,144,.3);
}
.mobile-cta a {
  display: block; width: 100%; text-align: center;
  padding: 14px; border-radius: 50px;
  background: linear-gradient(135deg, #E91E90, #2196F3);
  color: #fff; font-weight: 700; font-size: 1rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-content { padding-right: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid, .journey-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(17,17,17,.98); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center;
    align-items: center; gap: 28px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; }

  .hero-content { padding-top: 140px; padding-bottom: 80px; }
  .hero-content h1 { font-size: 2rem; }

  .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .mobile-cta { display: block; }
  .back-to-top { bottom: 80px; }

  .score-meter { flex-direction: column; text-align: center; }
  .score-text h3, .score-text p { text-align: center; }

  .products-grid, .shop-grid { grid-template-columns: 1fr; }
}
