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

:root {
  --bg: #fafafa;
  --white: #ffffff;
  --black: #0a0a0a;
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-muted: #999999;
  --border: #e2e2e2;
  --accent: #f5b700;
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text-primary);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 20px;
  background: var(--white);
  letter-spacing: 0.02em;
}

.section-label svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 800px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 580px;
}

/* ========================
   SCROLL ANIMATIONS
   ======================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }

/* ========================
   HEADER
   ======================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #f5b700, #ff9500);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.75rem;
}

.logo-img {
  height: 38px;
  width: auto;
  border-radius: 6px;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
nav a:hover { color: var(--text-primary); }
nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--black);
  transition: width var(--transition);
}
nav a:hover::after { width: 100%; }

.nav-cta {
  padding: 8px 20px;
  background: var(--black);
  color: var(--white) !important;
  border-radius: 30px;
  font-size: 0.85rem !important;
  font-weight: 500;
  transition: background var(--transition);
}
.nav-cta:hover { background: #333; }
.nav-cta::after { display: none; }

.mobile-header-actions {
  display: none;
}
.mobile-call-btn {
  background: var(--black);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.mobile-break { display: none; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-primary);
}
.menu-toggle svg { width: 24px; height: 24px; }

@media (max-width: 768px) {
  header {
    padding: 12px 16px;
  }

  .logo span.logo-text {
    max-width: 150px;
    white-space: normal;
    font-size: 0.85rem;
    line-height: 1.25;
  }
  .mobile-break { display: block; }

  .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }
  
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-height: 80vh;
    overflow-y: auto;
  }
  
  .nav-open nav {
    display: flex;
  }
  
  .menu-toggle {
    display: block;
  }
}

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--font);
}
.btn svg { width: 16px; height: 16px; }

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--black);
}
.btn-light:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* ========================
   HERO
   ======================== */
.hero {
  padding: 100px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
}

.hero .section-heading {
  margin-bottom: 8px;
  max-width: 850px;
}

.hero-motto {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: #555;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero .section-desc {
  max-width: 650px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 1050px;
  height: 440px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .hero { padding: 50px 20px 40px; }
  .hero-image { height: 220px; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 350px; }
  .hero-actions .btn { width: 100%; }
}

/* ========================
   ABOUT
   ======================== */
.about-section {
  background: var(--black);
  color: var(--white);
  padding: 100px 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.about-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about-content p {
  color: #a0a0a0;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 768px) {
  .about-section { padding: 60px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ========================
   SERVICES — ROCKSTAR SCROLL REVEAL
   ======================== */
.services-section {
  padding: 100px 0 0;
  background: var(--white);
  position: relative;
}

.services-header {
  text-align: center;
  padding: 0 24px 60px;
}

.services-header .section-heading {
  margin: 0 auto 16px;
}

.services-header .section-desc {
  margin: 0 auto;
}

.services-scroll-container {
  position: relative;
}

.service-panel {
  position: sticky;
  top: 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  will-change: transform;
}

.service-panel:nth-child(1) { z-index: 1; }
.service-panel:nth-child(2) { z-index: 2; }
.service-panel:nth-child(3) { z-index: 3; }

.service-card-full {
  width: 100%;
  max-width: 1100px;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-panel:nth-child(1) .service-card-full {
  background: #111;
  color: #fff;
}
.service-panel:nth-child(2) .service-card-full {
  background: #1a1a2e;
  color: #fff;
}
.service-panel:nth-child(3) .service-card-full {
  background: #0f2027;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
}

.service-info {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-icon-box {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon-box svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.service-info p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

.service-visual {
  position: relative;
  overflow: hidden;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .service-card-full {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-info { padding: 20px; }
  .service-info h3 { font-size: 1.3rem; margin-bottom: 8px; }
  .service-info p { font-size: 0.85rem; margin-bottom: 12px; line-height: 1.5; }
  .service-icon-box { margin-bottom: 12px; width: 40px; height: 40px; }
  .service-icon-box svg { width: 20px; height: 20px; }
  .service-features { gap: 6px; }
  .service-tag { padding: 4px 10px; font-size: 0.7rem; }
  
  .service-visual { height: 160px; }
  
  .service-panel {
    position: sticky;
    top: 70px;
    height: 85vh;
    display: flex;
    align-items: center;
    padding: 10px 16px;
  }
}

/* ========================
   PRODUCTS — SLIDER
   ======================== */
.products-section {
  padding: 100px 24px;
  background: var(--black);
  color: var(--white);
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.products-header-text .section-label {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #aaa;
}

.products-header-text .section-heading {
  color: var(--white);
  margin-bottom: 12px;
}

.products-header-text .section-desc {
  color: #888;
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.slider-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}
.slider-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.products-track-wrapper {
  overflow: hidden;
  position: relative;
}

.products-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card {
  min-width: 280px;
  max-width: 280px;
  background: var(--white);
  color: var(--text-primary);
  border-radius: 16px;
  padding: 14px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.product-card:hover { transform: translateY(-6px); }

.product-img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 14px;
  background: #eee;
}

.product-category {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  font-weight: 500;
}

.product-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}



.product-rating {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-rating svg {
  width: 13px;
  height: 13px;
  fill: var(--accent);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.slider-dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .products-section { padding: 60px 20px; }
  .product-card { min-width: 240px; max-width: 240px; }
  .products-header { flex-direction: column; align-items: flex-start; }
}

/* ========================
   REVIEWS
   ======================== */
.reviews-section {
  padding: 100px 24px;
  text-align: center;
  background: var(--white);
}

.reviews-section .section-heading {
  margin: 0 auto 16px;
}
.reviews-section .section-desc {
  margin: 0 auto 50px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1050px;
  margin: 0 auto;
  text-align: left;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
}

.review-stars {
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.review-author-info h4 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.review-author-info span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .reviews-section { padding: 60px 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ========================
   MARQUEE
   ======================== */
.marquee-section {
  padding: 80px 24px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}

.marquee-section .section-heading {
  margin: 0 auto 16px;
}
.marquee-section .section-desc {
  margin: 0 auto 50px;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 55s linear infinite;
  gap: 48px;
}

@media (max-width: 768px) {
  .marquee-track {
    animation: marquee-scroll 20s linear infinite;
  }
}

.marquee-item {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}

.marquee-sep {
  color: #ddd;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================
   FAQ
   ======================== */
.faq-section {
  padding: 100px 24px;
  display: flex;
  justify-content: center;
  background: var(--white);
}

.faq-wrapper {
  width: 100%;
  max-width: 720px;
}

.faq-wrapper .section-heading {
  text-align: center;
  margin: 0 auto 12px;
}

.faq-wrapper .section-desc {
  margin: 0 auto 44px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}
.faq-toggle svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 14px;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .faq-section { padding: 60px 20px; }
}

/* ========================
   CTA
   ======================== */
.cta-section {
  padding: 100px 24px;
  text-align: center;
  background: var(--bg);
}

.cta-section .section-heading {
  margin: 0 auto 16px;
}
.cta-section .section-desc {
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-section { padding: 60px 20px; }
  .cta-actions { flex-direction: column; align-items: stretch; max-width: 350px; margin-left: auto; margin-right: auto; }
  .cta-actions .btn { width: 100%; }
}

/* ========================
   FOOTER
   ======================== */
footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 40px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.footer-brand p {
  color: #777;
  font-size: 0.88rem;
  margin-top: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: #bbb;
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  color: #555;
  font-size: 0.8rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  footer { padding: 40px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer-brand p { margin: 14px auto 0; }
  .footer-brand .logo { justify-content: center; }
}

/* ===========================
   COOKIE CONSENT POPUP
   =========================== */
.cookie-popup {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px 0;
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-popup-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--black);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-text p {
  margin: 0;
}

.cookie-text a {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-popup-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .cookie-actions {
    justify-content: flex-end;
  }
}

/* ===========================
   DOCUMENT / LEGAL PAGES STYLING
   ========================== */
main.container h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

main.container p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}

main.container h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

main.container ul {
  margin-bottom: 24px;
  padding-left: 20px;
  list-style: disc;
}

main.container li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
