/* ===================================================
   RALLY â€” Car Detailing Studio (visual replica)
   Section styles only. Global/base styles (body, headings,
   links, fonts) come from css/style.css which loads first.
   Colors are hardcoded to preserve the original design.
   =================================================== */

/* Base image reset (style.css provides no img rule) */
img {
  max-width: 100%;
  display: block;
}

/* ================= SHARED SECTION UTILITIES ================= */
.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 18px;
}

.section-text {
  color: #8C8C8C;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 24px;
}

.works-section .section-text,
.news-section .section-text {
  color: #6E6E6E;
}

.btn-accent {
  display: inline-block;
  background: #F1441C;
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background .25s ease, transform .25s ease;
}

.btn-accent:hover {
  background: #FF6A3D;
  color: #fff;
  transform: translateY(-2px);
}

.link-underline {
  color: #0A0A0A;
  font-weight: 600;
  font-size: .92rem;
  border-bottom: 2px solid #F1441C;
  padding-bottom: 4px;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0A0A0A;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url('https://picsum.photos/seed/rally-hero-interior/1900/1200') center/cover no-repeat;
  filter: grayscale(15%) brightness(.75);
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, .95) 0%, rgba(10, 10, 10, .15) 55%, rgba(10, 10, 10, .55) 100%);
}

.hero-dock {
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 2px;
  z-index: 5;
}

.dock-btn {
  width: 48px;
  height: 48px;
  background: #F1441C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: background .2s ease;
}

.dock-btn:hover {
  background: #FF6A3D;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 5% 90px;
}

.hero-title {
  color: #fff;
  font-weight: 700;
  line-height: 1.02;
  text-transform: capitalize;
  margin: 0;
}

.hero-title .line {
  display: block;
}

.line-1 {
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
}

.line-2 {
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  text-align: right;
  margin-top: -6px;
}

.hero-text {
  max-width: 420px;
  color: #D6D6D6;
  font-size: .98rem;
  line-height: 1.7;
  margin-top: 24px;
}

/* ================= STATS ================= */
.stats-band {
  background: #0A0A0A;
  padding: 40px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.stat-cell {
  position: relative;
  padding: 18px 10px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.stat-cell.no-line {
  border-right: none;
}

@media(max-width:767px) {
  .stat-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
}

.stat-ghost {
  display: block;
  font-weight: 600;
  font-size: clamp(3.5rem, 6vw, 4rem);
  color: #f07d00a8;
  line-height: 1;
  margin-bottom: 20px;
}

.stat-label {
  display: block;
  margin-top: -14px;
  font-size: .85rem;
  letter-spacing: 1px;
  color: #DADADA;
  font-weight: 500;
}

/* ================= ABOUT / COLLAGE ================= */
.about-section {
  background: #0A0A0A;
  padding: 80px 0;
}

.collage {
  position: relative;
  padding: 0 30px 50px 0;
}

.collage-main {
  width: 100%;
  filter: brightness(.85);
}

.collage-inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  /* border: 6px solid #0A0A0A; */
}

/* ================= CURVV COLOUR (Tata Motors style) ================= */
.curvv-colour {
  background: #0A0A0A;
  padding: 110px 0;
}

.curvv-colour-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.curvv-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.curvv-eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #FF6A3D;
  margin-bottom: 14px;
}

.curvv-title {
  font-size: clamp(2.4rem, 5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1;
  color: #fff;
  margin-bottom: 12px;
}

.curvv-tagline {
  font-size: 1.05rem;
  font-weight: 500;
  color: #E8E8E8;
  margin-bottom: 12px;
}

.curvv-desc {
  font-size: .97rem;
  line-height: 1.75;
  color: #8C8C8C;
  max-width: 430px;
  margin-bottom: 30px;
}

.curvv-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.curvv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 2px;
  transition: background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease;
}

.curvv-btn-solid {
  background: #F1441C;
  color: #fff;
}

.curvv-btn-solid:hover {
  background: #FF6A3D;
  color: #fff;
  transform: translateY(-2px);
}

.curvv-btn-ghost {
  background: transparent;
  color: #E8E8E8;
  border: 1px solid rgba(255, 255, 255, .18);
}

.curvv-btn-ghost:hover {
  border-color: #F1441C;
  color: #fff;
  transform: translateY(-2px);
}

.curvv-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.curvv-price-tag {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #FF6A3D;
}

.curvv-price-note {
  font-size: .78rem;
  color: #8C8C8C;
}

.curvv-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.curvv-colour-band {
  width: 100%;
  max-width: 620px;
  height: 265px;
  border-radius: 33px;
  background: linear-gradient(90deg, #CAAC7C, #FFD98F);
  margin-bottom: 26px;
  opacity: .85;
  transition: background .6s ease;
  position: absolute;
}

.curvv-car-wrap {
  width: 100%;
  max-width: 680px;
  display: flex;
  justify-content: center;
}

.curvv-car {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, .45));
  transition: opacity .45s ease, transform .5s cubic-bezier(.16, 1, .3, 1);
}

.curvv-swatch-bar {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.curvv-swatch {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .22);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--swatch);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.curvv-swatch:hover {
  transform: translateY(-4px);
}

.curvv-swatch.active {
  box-shadow: 0 0 0 2px #0A0A0A, 0 0 0 5px #FF6A3D;
}

.curvv-swatch-tick {
  font-size: .72rem;
  color: #fff;
  opacity: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .8);
  transform: scale(.5);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

.curvv-swatch.active .curvv-swatch-tick {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 900px) {
  .curvv-colour-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .curvv-showcase {
    order: -1;
  }

  .curvv-car {
    max-height: 320px;
  }
}


/* ================= SERVICES STRIP ================= */
.services-strip {
  display: flex;
  width: 100%;
}

.service-tile {
  position: relative;
  flex: 1 1 25%;
  height: 560px;
  overflow: hidden;
}

.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-tile:hover img {
  transform: scale(1.08);
}

.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .85) 10%, rgba(0, 0, 0, 0) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px 28px;
}

.tile-eyebrow {
  color: #FF6A3D;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.tile-overlay h5 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

@media(max-width:900px) {
  .services-strip {
    flex-wrap: wrap;
  }

  .service-tile {
    flex: 1 1 50%;
    height: 360px;
  }
}

@media(max-width:560px) {
  .service-tile {
    flex: 1 1 100%;
    height: 320px;
  }
}

/* ================= MARQUEE ================= */
.marquee-band {
  background: #0A0A0A;
  overflow: hidden;
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 52s linear infinite;
}

.marquee-track span {
  font-weight: 600;
  font-size: 147px;
  white-space: nowrap;
  /* height: 138px; */
  color: #474747;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ================= NEWSLETTER ================= */
.newsletter-band {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: #121212 url('https://s7ap1.scene7.com/is/image/tatamotors/exterior-design-1920x925?wid=1900&hei=1000&fit=crop&fmt=webp-alpha') center/cover no-repeat fixed;
}

.newsletter-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, .72);
}

.newsletter-band .container {
  position: relative;
  z-index: 1;
}

.newsletter-band h3 {
  font-size: 1.9rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  animation: newsletterFloat 6s ease-in-out infinite;
}

@keyframes newsletterFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.newsletter-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.newsletter-fields input {
  min-width: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  padding: 12px 4px;
  font-size: .95rem;
}

.newsletter-fields input::placeholder {
  color: rgba(255, 255, 255, .65);
}

.newsletter-fields input:focus {
  outline: none;
  border-color: #FF6A3D;
}

.newsletter-fields button {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  color: #FF6A3D;
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
  padding: 12px 4px;
  transition: color .2s ease;
}

.newsletter-fields button:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .newsletter-band {
    background-attachment: scroll;
  }

  .newsletter-fields {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .newsletter-fields button {
    justify-self: start;
  }
}

.agree {
  display: block;
  margin-top: 18px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .75);
}

.agree a {
  color: #fff;
  text-decoration: underline;
}

.agree input {
  margin-right: 8px;
}

/* ================= OUR WORKS ================= */
.works-section {
  background: #F6F5F3;
  color: #0A0A0A;
  padding: 110px 0 0;
}

.works-section .section-title {
  color: #0A0A0A;
}

.works-section .section-text {
  text-align: center;
}

.accordion-gallery {
  display: flex;
  height: 520px;
  width: 100%;
  margin: 60px 0 70px;
}

.acc-panel {
  position: relative;
  flex: 1;
  background-size: cover;
  background-position: center;
  transition: flex 0.5s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
}

.acc-panel.wide {
  flex: 3;
}

.acc-panel:hover {
  flex: 3.4;
}

.accordion-gallery:hover .acc-panel {
  flex: 1;
}

.accordion-gallery .acc-panel:hover {
  flex: 3.4;
}

.acc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .75) 20%, rgba(0, 0, 0, 0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: #fff;
}

.acc-eyebrow {
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f07c01;
  font-weight: 700;
  margin-bottom: 8px;
}

.acc-overlay h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.acc-overlay a {
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  border-bottom: 1px solid #F1441C;
  padding-bottom: 3px;
}

@media(max-width:767px) {
  .accordion-gallery {
    flex-direction: column;
    height: auto;
  }

  .acc-panel {
    height: 180px;
  }

  .acc-panel.wide {
    height: 280px;
  }

  .acc-panel:hover,
  .accordion-gallery:hover .acc-panel,
  .accordion-gallery .acc-panel:hover {
    flex: 1;
  }
}

.testimonial-row {
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 60px 0 90px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.avatars-col {
  flex: 0 0 220px;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #F6F5F3;
  margin-left: -16px;
  opacity: .45;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar.active {
  opacity: 1;
  transform: scale(1.08);
}

.person-info {
  margin-top: 16px;
}

.person-info h6 {
  font-weight: 700;
  font-size: .95rem;
  margin: 0;
}

.person-info small {
  color: #6E6E6E;
}

.arrows {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.arrows button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #D8D6D2;
  background: none;
  color: #0A0A0A;
}

.arrows button:hover {
  background: #F1441C;
  color: #fff;
  border-color: #F1441C;
}

.quote-col p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #3A3A3A;
  margin: 0;
}

/* ================= BEST CARE 2x2 GRID ================= */
.care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.care-cell {
  min-height: 340px;
}

.care-text {
  background: #F6F5F3;
  color: #0A0A0A;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 8%;
}

.care-text .section-title,
.care-text .section-text {
  color: #0A0A0A;
}

.care-text .section-text {
  color: #5C5C5C;
}

.care-img {
  background-size: cover;
  background-position: center;
}

.care-dark {
  background-size: cover;
  background-position: center;
  position: relative;
}

.care-dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, .82);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding: 60px 8%;
}

.care-point h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}

.care-point p {
  color: #B9B9B9;
  font-size: .9rem;
  margin: 0;
  max-width: 340px;
}

@media(max-width:767px) {
  .care-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= MADE FOR FAMILY JOURNEYS ================= */
.safari-journey-section {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 110px 0;
}

.safari-journey-bg {
  position: absolute;
  inset: 0;
  background: url('https://s7ap1.scene7.com/is/image/tatamotors/front-comfort-kv?wid=1900&hei=1100&fit=crop&fmt=webp-alpha') center/cover no-repeat;
  transform: scale(1.05);
  animation: safariBgZoom 18s ease-in-out infinite alternate;
}

@keyframes safariBgZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.safari-journey-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.42) 45%, rgba(10, 10, 10, 0.1) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.05) 40%, rgba(10, 10, 10, 0.35) 100%);
}

.safari-journey-container {
  position: relative;
  z-index: 2;
}

.safari-journey-content {
  max-width: 620px;
}

.safari-journey-content .acc-eyebrow {
  color: #FF6A3D;
  margin-bottom: 16px;
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.safari-journey-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  color: #fff;
}

.safari-journey-title em {
  font-style: italic;
  color: #FF6A3D;
  font-weight: inherit;
}

.safari-journey-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}

.safari-journey-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: #D6D6D6;
  max-width: 540px;
  margin-bottom: 18px;
}

.safari-journey-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  background: #F1441C;
  border: 1px solid #F1441C;
}

.safari-journey-cta:hover {
  background: transparent;
  color: #fff;
  border-color: #F1441C;
  transform: translateY(-2px);
}

.safari-journey-cta i {
  transition: transform 0.25s ease;
}

.safari-journey-cta:hover i {
  transform: translateX(4px);
}

/* Safari journey section: Light Theme */
[data-theme="light"] .safari-journey-section {
  min-height: 600px;
}

[data-theme="light"] .safari-journey-content .acc-eyebrow {
  color: #fff;
}

[data-theme="light"] .safari-journey-title {
  color: #fff;
}

[data-theme="light"] .safari-journey-title em {
  color: #FF6A3D;
}

[data-theme="light"] .safari-journey-lead {
  color: #fff;
}

[data-theme="light"] .safari-journey-desc {
  color: #E5E5E5;
}

[data-theme="light"] .safari-journey-overlay {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.42) 45%, rgba(10, 10, 10, 0.1) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.05) 40%, rgba(10, 10, 10, 0.35) 100%);
}

/* Safari journey section: Dark Theme */
[data-theme="dark"] .safari-journey-content .acc-eyebrow {
  color: #FF6A3D;
}

@media(max-width:767px) {
  .safari-journey-section {
    min-height: 540px;
    padding: 80px 0;
  }

  .safari-journey-overlay {
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.45) 60%, rgba(10, 10, 10, 0.2) 100%);
  }
}

/* ================= LATEST NEWS ================= */
.news-section {
  background: #F6F5F3;
  color: #0A0A0A;
  padding: 110px 0;
}

.news-section .section-title {
  color: #0A0A0A;
  text-align: center;
}

.news-section .section-text {
  text-align: center;
}

.news-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  margin-bottom: 20px;
}

.news-cat {
  color: #F1441C;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.news-card h6 {
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.45;
  margin-bottom: 10px;
}

.news-card small {
  color: #6E6E6E;
}

/* ================= SCROLL TOP ================= */
.scroll-top {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  background: #F1441C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: #FF6A3D;
}

/* ================= REVEAL ================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ================= LIGHT THEME COMPATIBILITY ================= */
[data-theme="light"] body {
  background: #F6F5F3;
  color: #1A1A1A;
}

[data-theme="light"] .stats-band,
[data-theme="light"] .about-section,
[data-theme="light"] .marquee-band {
  background: #fff;
}

[data-theme="light"] .stats-band,
[data-theme="light"] .marquee-band {
  border-color: rgba(0, 0, 0, .08);
}

[data-theme="light"] .stat-cell {
  border-right-color: rgba(0, 0, 0, .08);
}

@media (max-width: 767px) {
  [data-theme="light"] .stat-cell {
    border-bottom-color: rgba(0, 0, 0, .08);
  }
}

[data-theme="light"] .stat-ghost {
  color: rgb(235 144 48 / 86%);
}

[data-theme="light"] .stat-label {
  color: #4A4A4A;
}

[data-theme="light"] .about-section .section-title {
  color: #1A1A1A;
}

[data-theme="light"] .collage-inset {
  border-color: #fff;
}

[data-theme="light"] .marquee-track span {
  color: #2e2e2e80
}

[data-theme="light"] .link-underline {
  color: #1A1A1A;
}

[data-theme="light"] .curvv-colour {
  background: #fff;
}

[data-theme="light"] .curvv-title,
[data-theme="light"] .curvv-tagline {
  color: #121318;
}

[data-theme="light"] .curvv-desc {
  color: #5C5C5C;
}

[data-theme="light"] .curvv-btn-ghost {
  color: #121318;
  border-color: rgba(0, 0, 0, .18);
}

[data-theme="light"] .curvv-btn-ghost:hover {
  color: #121318;
  border-color: #F1441C;
}

[data-theme="light"] .curvv-car {
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, .18));
}

[data-theme="light"] .curvv-swatch {
  box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}

[data-theme="light"] .curvv-swatch.active {
  box-shadow: 0 0 0 2px #fff, 0 0 0 5px #F1441C;
}

[data-theme="light"] .curvv-price-note {
  color: #6E6E6E;
}


/* ================= DARK THEME: PAPER SECTIONS -> DARK ================= */
[data-theme="dark"] .works-section,
[data-theme="dark"] .care-text,
[data-theme="dark"] .news-section {
  background: #0A0A0A;
  color: #fff;
}

[data-theme="dark"] .works-section .section-title,
[data-theme="dark"] .care-text .section-title,
[data-theme="dark"] .news-section .section-title {
  color: #fff;
}

[data-theme="dark"] .works-section .section-text,
[data-theme="dark"] .care-text .section-text,
[data-theme="dark"] .news-section .section-text {
  color: #8C8C8C;
}

[data-theme="dark"] .testimonial-row {
  border-top-color: rgba(255, 255, 255, .08);
}

[data-theme="dark"] .arrows button {
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
}

[data-theme="dark"] .arrows button:hover {
  background: #F1441C;
  color: #fff;
  border-color: #F1441C;
}

[data-theme="dark"] .quote-col p {
  color: #D6D6D6;
}

[data-theme="dark"] .news-card small {
  color: #8C8C8C;
}

.nexon-price-amount {
  font-size: clamp(1.7rem, 3.2vw, 1.4rem);
  font-weight: 700;
  color: #ed7d04;
  line-height: 1.15;
  margin: 10px 0 6px;
}

.nexon-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--text-primary);
}

.nexon-intro {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0;
}

.nexon-feature-card {
  background: var(--bg-deep-card);
  border: 1px solid var(--border-glass);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition-luxury);
}

.nexon-feature-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.25rem;
  color: var(--nexon-accent);
  background: rgba(241, 68, 28, .08);
  border: 1px solid rgba(241, 68, 28, .2);
  margin-bottom: 18px;
}

.nexon-feature-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.nexon-feature-card p {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.nexon-eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #ed7d04;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.nexon-tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nexon-tick-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-glass);
}

.nexon-tick-list i {
  color: #ed7d04;
  margin-top: 5px;
}

/* ---------- Shared nexon section styles ---------- */
.nexon-section {
  padding: 90px 0;
}

.nexon-section.dark {
  background: var(--bg-deep-card);
  color: var(--text-primary);
}

.nexon-section.light {
  background: var(--bg-obsidian);
  color: var(--text-primary);
}

.nexon-eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: #ed7d04;
}

.nexon-eyebrow.centered {
  justify-content: center;
}

.nexon-eyebrow.centered::after {
  content: '';
  width: 34px;
  height: 1px;
  background: #ed7d04;
}

.nexon-feature-media img {
  width: 100%;
  border-radius: 4px;
}

/* ---------- Explore tabs ---------- */
.nexon-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 0 auto 56px;
  padding: 6px;
  width: fit-content;
  max-width: 100%;
  background: var(--bg-deep-card);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
}

.nexon-tab-btn {
  font-family: 'Inter', sans-serif;
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 9px;
  padding: 11px 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: color .25s ease, background .25s ease;
}

.nexon-tab-btn i {
  font-size: .9rem;
  opacity: .75;
  transition: opacity .25s ease;
}

.nexon-tab-btn:hover {
  color: var(--text-primary);
}

.nexon-tab-btn.active {
  color: #fff;
  background: #ed7d04;
  box-shadow: 0 6px 18px rgba(237, 125, 4, .35);
}

.nexon-tab-btn.active i {
  opacity: 1;
}

.nexon-tab-panel {
  display: none;
}

.nexon-tab-panel.active {
  display: block;
  animation: nexonTabIn .5s ease;
}

@keyframes nexonTabIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.explore-grid.flip .explore-media {
  order: 2;
}

.explore-media img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}

[data-theme="light"] .explore-media img {
  box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
}

.explore-body {
  max-width: 540px;
}

.explore-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}

.explore-stat {
  background: var(--bg-obsidian);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 22px 20px;
}

.explore-stat strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.explore-stat span {
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nexon-tick-list.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
}

.nexon-tick-list.two-col li {
  font-size: .9rem;
}

/* ---------- Spec table ---------- */
.nexon-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.nexon-spec-table tr {
  border-bottom: 1px solid var(--border-glass);
}

.nexon-spec-table tr:last-child {
  border-bottom: none;
}

.nexon-spec-table td {
  padding: 18px 8px;
  font-size: .95rem;
}

.nexon-spec-table td:first-child {
  color: var(--text-muted);
  font-weight: 500;
}

.nexon-spec-table td:last-child {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
}

[data-theme="light"] .nexon-spec-table tr {
  border-color: rgba(0, 0, 0, .07);
}

[data-theme="light"] .nexon-tab-btn {
  color: #5E6370;
}

[data-theme="light"] .nexon-tab-btn:hover {
  color: #1A1B21;
}

[data-theme="light"] .nexon-tab-btn.active {
  color: #fff;
  background: #ed7d04;
}

@media (max-width: 991px) {

  .explore-grid,
  .explore-grid.flip {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .explore-grid.flip .explore-media {
    order: 0;
  }
}

@media (max-width: 767px) {
  .nexon-tabs-nav {
    gap: 4px;
    padding: 5px;
    margin-bottom: 42px;
  }

  .nexon-tab-btn {
    font-size: .8rem;
    padding: 10px 16px;
  }

  .explore-stats,
  .nexon-tick-list.two-col {
    grid-template-columns: 1fr;
  }
}

.sec-100 {
  padding: 90px 0;
}