*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg-primary: #0a1628;
  --bg-secondary: #0d1f3c;
  --bg-card: rgba(255,255,255,0.04);
  --blue-accent: #1a73e8;
  --blue-accent-20: rgba(26,115,232,0.15);
  --red-accent: #e84c1a;
  --white: #ffffff;
  --white-70: rgba(255,255,255,0.7);
  --white-50: rgba(255,255,255,0.5);
  --white-10: rgba(255,255,255,0.1);
  --font-body: 'DM Sans', sans-serif;
  --font-heading: 'DM Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--bg-primary); color: var(--white); font-family: var(--font-body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* Navigation og footer styles er flyttet til vv-shared.css,
   så de er ens på hele sitet. */

/* BUTTONS */
.btn-primary { background: var(--blue-accent); color: white; padding: 12px 24px; border-radius: 9999px; text-decoration: none; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { background: #1557b0; }
.btn-outline { background: transparent; color: white; padding: 12px 24px; border-radius: 9999px; border: 1px solid var(--white-10); text-decoration: none; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; }
.btn-outline:hover { background: var(--white-10); }
.btn-red { background: var(--red-accent); color: white; padding: 14px 32px; border-radius: 9999px; text-decoration: none; font-weight: 600; font-size: 16px; display: inline-flex; align-items: center; gap: 8px; }

/* HERO */
.hero { position: relative; padding: 80px 48px 60px; background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%); overflow: hidden; display: flex; align-items: center; gap: 60px; min-height: 80vh; }
.hero-content { flex: 1; position: relative; z-index: 1; max-width: 580px; }
.hero-image { flex: 1; position: relative; z-index: 1; border-radius: 16px; overflow: hidden; min-height: 420px; align-self: stretch; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; display: block; }
.trust-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-card); border: 1px solid var(--white-10); padding: 8px 16px; border-radius: 9999px; font-size: 13px; color: var(--white-70); margin-bottom: 24px; }
.trust-badge .stars { color: #f5a623; }
.hero h1 { font-family: var(--font-heading); font-size: clamp(32px, 5vw, 56px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero h1 .accent { color: var(--blue-accent); }
.hero-sub { font-size: 17px; color: var(--white-70); line-height: 1.7; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* SECTIONS */
section { padding: 80px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--blue-accent-20); color: var(--blue-accent); padding: 6px 16px; border-radius: 9999px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.section-title { font-family: var(--font-heading); font-size: clamp(24px, 4vw, 36px); font-weight: 700; text-align: center; margin-bottom: 12px; }
.section-sub { font-size: 16px; color: var(--white-50); text-align: center; max-width: 600px; margin: 0 auto 48px; }

/* BENEFITS */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit-card { background: var(--bg-card); border: 1px solid var(--white-10); border-radius: 16px; padding: 28px; }
.benefit-icon { width: 44px; height: 44px; background: var(--blue-accent-20); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--blue-accent); font-size: 20px; }
.benefit-card h3 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--white-50); line-height: 1.6; }

/* REVIEWS SLIDER */
.reviews-section { background: var(--bg-primary); padding: 80px 0; overflow: hidden; }
.reviews-header { text-align: center; margin-bottom: 48px; padding: 0 48px; }
.reviews-header .tp-stars { color: #00b67a; font-size: 28px; letter-spacing: 2px; margin-bottom: 8px; }
.reviews-header .tp-score { font-size: 28px; font-weight: 800; color: #00b67a; }
.reviews-header h2 { font-family: var(--font-heading); font-size: clamp(26px, 4vw, 38px); font-weight: 800; margin: 8px 0; }
.reviews-header p { font-size: 15px; color: var(--white-50); }
.reviews-track-wrap { position: relative; }
.reviews-track-wrap::before,
.reviews-track-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.reviews-track-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-primary), transparent); }
.reviews-track-wrap::after { right: 0; background: linear-gradient(to left, var(--bg-primary), transparent); }
.reviews-row { display: flex; gap: 20px; margin-bottom: 20px; }
.reviews-row-1 { animation: scrollLeft 40s linear infinite; }
.reviews-row-2 { animation: scrollRight 45s linear infinite; }
@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.review-card { background: var(--bg-card); border: 1px solid var(--white-10); border-radius: 16px; padding: 24px; min-width: 300px; max-width: 340px; flex-shrink: 0; }
.review-stars { color: #00b67a; font-size: 18px; letter-spacing: 1px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--white-70); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.review-author { font-size: 13px; color: var(--white-50); font-weight: 600; }
.tp-link { display: inline-block; margin-top: 32px; text-align: center; width: 100%; color: #00b67a; text-decoration: none; font-size: 14px; font-weight: 600; }
.tp-link:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .review-card { min-width: 260px; padding: 18px; }
  .reviews-header { padding: 0 20px; }
}

/* PRODUCTS */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { background: #ffffff; border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; padding: 20px; position: relative; display: flex; flex-direction: column; }
.product-img-wrap { background: #ffffff; border-radius: 10px; padding: 16px; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; min-height: 160px; }
.product-img-wrap img { max-width: 100%; max-height: 140px; object-fit: contain; display: block; }
.discount-badge { position: absolute; top: 12px; right: 12px; background: var(--red-accent); color: white; padding: 4px 10px; border-radius: 9999px; font-size: 12px; font-weight: 700; }
.product-brand { font-size: 12px; color: #888; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.product-name { font-family: var(--font-heading); font-size: 15px; font-weight: 700; margin-bottom: 12px; color: #111; }
.product-price { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--blue-accent); }
.product-price .old { color: #aaa; font-size: 14px; text-decoration: line-through; margin-left: 8px; font-weight: 400; }
.product-save { font-size: 13px; color: var(--red-accent); margin-top: 4px; font-weight: 600; }
.product-link { display: block; margin-top: auto; padding-top: 14px; text-align: center; font-size: 13px; color: var(--blue-accent); text-decoration: none; font-weight: 600; border-top: 1px solid rgba(0,0,0,0.07); }
.product-link:hover { text-decoration: underline; }

/* LOCAL TEXT */
.local-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.local-content h2 { font-family: var(--font-heading); font-size: clamp(22px, 3vw, 30px); font-weight: 700; margin-bottom: 20px; grid-column: 1 / -1; text-align: center; }
.local-text p { font-size: 15px; color: var(--white-70); line-height: 1.8; margin-bottom: 16px; }
.local-text strong { color: var(--white); }

/* MONTAGE */
.montage-box { background: var(--bg-card); border: 1px solid var(--white-10); border-radius: 20px; padding: 48px; }
.montage-box h2 { font-family: var(--font-heading); font-size: clamp(22px, 3vw, 28px); font-weight: 700; margin-bottom: 8px; }
.montage-price { font-size: 14px; color: var(--white-50); margin-bottom: 32px; }
.montage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.montage-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--white-70); }
.montage-check { color: var(--blue-accent); font-size: 16px; flex-shrink: 0; }

/* NABORABAT */
.naborabat-card { background: linear-gradient(135deg, var(--blue-accent-20), rgba(26,115,232,0.05)); border: 1px solid rgba(26,115,232,0.3); border-radius: 20px; padding: 48px; text-align: center; }
.naborabat-card h2 { font-family: var(--font-heading); font-size: clamp(22px, 3vw, 28px); font-weight: 700; margin-bottom: 16px; }
.naborabat-card p { font-size: 16px; color: var(--white-70); max-width: 600px; margin: 0 auto 32px; line-height: 1.7; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--white-10); border-radius: 12px; padding: 24px; }
.faq-item h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.faq-item p { font-size: 14px; color: var(--white-70); line-height: 1.7; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary)); padding: 80px 48px; text-align: center; border-top: 1px solid var(--white-10); }
.cta-section h2 { font-family: var(--font-heading); font-size: clamp(24px, 4vw, 36px); font-weight: 700; margin-bottom: 16px; }
.cta-section p { font-size: 16px; color: var(--white-70); margin-bottom: 32px; }
.cta-phone { font-family: var(--font-heading); font-size: clamp(28px, 6vw, 48px); font-weight: 800; color: var(--red-accent); display: block; margin-bottom: 32px; text-decoration: none; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* POPUP */
.vv-popup-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 1000; align-items: center; justify-content: center; padding: 20px; }
.vv-popup-overlay.open { display: flex; }
.vv-popup { background: var(--bg-secondary); border: 1px solid var(--white-10); border-radius: 20px; padding: 40px; max-width: 480px; width: 100%; position: relative; }
.vv-popup-close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: var(--white-50); font-size: 24px; cursor: pointer; line-height: 1; }
.vv-popup h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.vv-popup p { font-size: 14px; color: var(--white-70); margin-bottom: 24px; }
.vv-popup input, .vv-popup textarea { width: 100%; background: var(--bg-card); border: 1px solid var(--white-10); border-radius: 10px; padding: 12px 16px; color: var(--white); font-family: var(--font-body); font-size: 14px; margin-bottom: 12px; outline: none; resize: none; }
.vv-popup input:focus, .vv-popup textarea:focus { border-color: var(--blue-accent); }
.vv-popup input::placeholder, .vv-popup textarea::placeholder { color: var(--white-50); }
.vv-popup-success { display: none; text-align: center; padding: 20px 0; }
.vv-popup-success .check { font-size: 48px; margin-bottom: 16px; }
.vv-popup-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.vv-popup-success p { color: var(--white-70); font-size: 15px; }

/* MOBILE */
@media (max-width: 768px) {

  .hero { flex-direction: column; padding: 60px 20px 40px; min-height: auto; gap: 32px; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(28px, 9vw, 40px); }
  .hero-image { min-height: 240px; width: 100%; }
  .hero-sub { font-size: 15px; }

  section { padding: 48px 20px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .local-content { grid-template-columns: 1fr; gap: 24px; }
  .montage-grid { grid-template-columns: 1fr; }
  .montage-box { padding: 28px 20px; }
  .naborabat-card { padding: 32px 20px; }
  .cta-section { padding: 60px 20px; }
  .vv-popup { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}
