/* ==========================================================================
   CSS Variables & Reset (Mobile First based on Best Practices)
   ========================================================================== */
:root {
  /* Colors */
  --bg-main: #0B0B0B;
  --bg-mesh: #141414;
  --bg-card: #121212;
  --text-primary: #FFFFFF;
  --text-secondary: #B3B3B3;
  --brand-blue: #1EA7FD;
  --glow-blue: #00C2FF;

  /* Layout */
  --container-max-width: 1200px;
  --spacing-sm: 0.5rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 3rem;

  /* Header & Floating */
  --header-height: 80px;
  --floating-z: 999;
}

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

html {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  /* Base 1rem = 16px */
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-primary);
  overflow-x: clip;
  max-width: 100vw;
}

body {
  line-height: 1.6;
  overflow-x: clip;
  position: relative;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
}

/* ==========================================================================
   Typography 
   ========================================================================== */
h1,
.hero-title {
  font-weight: 700;
  line-height: 1.1;
}

h2,
.section-title {
  font-weight: 700;
  line-height: 1.2;
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
}

h3,
.subtitle {
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.5rem;
}

p {
  font-weight: 400;
  color: var(--text-secondary);
}

/* Utility */
.text-center {
  text-align: center;
}

.container {
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}

/* ==========================================================================
   Global Background: Hex Mesh & Subtle Glow
   ========================================================================== */
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  background-color: var(--bg-main);
  /* Hexagonal pattern */
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='69.28203230275509' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 17.3205081L20 28.8675135 0 17.3205081V-5.7735027L20 -17.3205081 40 -5.7735027V17.3205081zm0 46.1880215L20 75.0555349 0 63.5085295V40.4155241L20 28.8685187 40 40.4155241V63.5085296zM20 51.9615242L0 63.5085296V40.4155242L20 28.8685188 40 40.4155242V63.5085296L20 51.9615242z' fill='%23141414' fill-opacity='0.6' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-attachment: fixed;
}

.background-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(30, 167, 253, 0.12) 0%, rgba(11, 11, 11, 0.9) 70%, rgba(11, 11, 11, 1) 100%);
  pointer-events: none;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--brand-blue);
  color: #fff;
  box-shadow: 0 4px 15px rgba(30, 167, 253, 0.4);
}

.btn-primary:hover {
  background-color: var(--glow-blue);
  box-shadow: 0 6px 20px rgba(0, 194, 255, 0.6);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* ==========================================================================
   Floating Elements (Quote, WhatsApp, Phone)
   ========================================================================== */
.floating-icons {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  z-index: var(--floating-z);
}

.floating-quote {
  background: var(--brand-blue);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(30, 167, 253, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.floating-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 194, 255, 0.6);
  background: var(--glow-blue);
  color: #fff;
}

.floating-icons-row {
  display: flex;
  gap: 0.8rem;
}

.floating-whatsapp,
.floating-phone {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp {
  background-color: #25D366;
}

.floating-phone {
  background-color: var(--brand-blue);
}

.floating-whatsapp:hover,
.floating-phone:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   Global Spacing
   ========================================================================== */
section {
  padding: 4rem 0;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 2rem;
}

.hero-content {
  text-align: center;
  z-index: 2;
  margin-bottom: 3rem;
  pointer-events: none;
}

/* Hero Top Nav */
.hero-top-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  border-radius: 50px;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  pointer-events: auto;
  /* Since hero-content is none */
  position: relative;
  z-index: 100;
}

.htn-menu-container {
  position: relative;
  display: flex;
  justify-content: flex-start;
}

.htn-menu {
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  transition: background 0.3s;
  font-weight: 500;
  font-size: 0.95rem;
}

.htn-menu:hover {
  background: rgba(255, 255, 255, 0.1);
}

.htn-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.5rem 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.htn-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.htn-dropdown li {
  padding: 0;
}

.htn-dropdown a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: left;
}

.htn-dropdown a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.htn-logo {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  color: #fff;
  text-align: center;
}

.htn-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.btn-lang-htn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 30px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-lang-htn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.htn-social {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--brand-blue);
  border-radius: 30px;
  padding: 0.25rem;
}

.htn-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  transition: transform 0.3s;
}

.htn-social a:hover {
  transform: scale(1.1);
}

/* Hero Ticker */
.hero-ticker-wrapper {
  background: rgba(30, 167, 253, 0.1);
  border-top: 1px solid rgba(30, 167, 253, 0.2);
  border-bottom: 1px solid rgba(30, 167, 253, 0.2);
  color: var(--brand-blue);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto 3rem auto;
  border-radius: 12px;
  pointer-events: auto;
}

.hero-ticker {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 15s linear infinite;
  will-change: transform;
}

.hero-ticker:hover {
  animation-play-state: paused;
}

.hero-ticker span {
  padding-right: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.hero-ticker span i {
  font-size: 0.6rem;
  color: var(--glow-blue);
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0) translateZ(0);
  }

  100% {
    transform: translateX(-50%) translateZ(0);
  }
}

.hero-title {
  font-size: 3.5rem;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
}

.hero-cr {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-logo {
  max-width: 80px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(30, 167, 253, 0.3);
  margin-bottom: 2rem;
}

.hero-cta-wrapper {
  margin-top: 1rem;
  margin-bottom: 2rem;
  pointer-events: auto;
  /* Fixes the click block from hero-content */
}

.hero-cta-btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 40px;
  background: transparent;
  color: #fff;
  border: 2px solid var(--brand-blue);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.hero-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--brand-blue);
  z-index: -1;
  transition: width 0.4s ease;
}

.hero-cta-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 194, 255, 0.4);
  background: transparent;
  /* Override primary btn hover */
}

.hero-cta-btn:hover::before {
  width: 100%;
}

.hero-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  z-index: 2;
  position: relative;
  height: 300px;
  /* fixed height to hold absolutely positioned track */
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 2rem 0 6rem 0;
  /* Padding for arched down effect */
  animation: scrollInfinite 70s linear infinite;
  will-change: transform;
}

.hero-track:hover {
  animation-play-state: paused;
}

@keyframes scrollInfinite {
  0% {
    transform: translateX(0) translateZ(0);
  }

  100% {
    transform: translateX(calc(-100% / 3)) translateZ(0);
  }

  /* Move exactly one third (one original array length) */
}

.h-card {
  width: 250px;
  background-color: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.h-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-blue);
}

.h-card-video {
  width: 100%;
  height: 140px;
  position: relative;
  background: #000;
}

.h-card-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  /* Disable interaction with video playing loop */
}

.h-card-body {
  padding: 1rem;
}

.h-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

/* ==========================================================================
   Showcase Section
   ========================================================================== */
.showcase-section {
  position: relative;
  z-index: 2;
}

.showcase-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.showcase-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.showcase-subtitle {
  font-size: 1.5rem;
  color: var(--brand-blue);
  margin-bottom: 2rem;
}

/* Scroll Interactive Area */
.showcase-interactive {
  position: relative;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-bg-container {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background-color: #000;
}

.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-main) 0%, rgba(11, 11, 11, 0.8) 50%, rgba(11, 11, 11, 0.3) 100%);
  pointer-events: none;
}

.showcase-content {
  position: relative;
  z-index: 2;
  /* Use negative margin to pullcontent over the sticky bg */
  margin-top: -100vh;
}

.showcase-column {
  width: 100%;
  max-width: 400px;
  background: rgba(18, 18, 18, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  min-height: 100vh;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.column-title {
  color: var(--text-secondary);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.showcase-item {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.5;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.showcase-item.active {
  opacity: 1;
  transform: scale(1.05);
}

.showcase-item h4 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.showcase-item .btn {
  margin-top: 1rem;
}

/* ==========================================================================
   Tools Section 
   ========================================================================== */
.tools-section {
  position: relative;
  z-index: 2;
  background-color: var(--bg-main);
  /* Added a smooth shadow transition from the dark interactive section and to the hosting section */
  box-shadow: inset 0 100px 100px -50px rgba(0, 0, 0, 0.9),
    inset 0 -100px 100px -50px rgba(0, 0, 0, 0.9);
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-radius: 40px;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.tool-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
  border-color: rgba(30, 167, 253, 0.4);
}

.tool-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  /* Since images are logos/illustrations */
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
}

.tool-info {
  padding: 1.5rem;
}

.tool-info h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.tool-info p {
  font-size: 0.95rem;
}

/* ==========================================================================
   Hosting Section 
   ========================================================================== */
.hosting-section {
  position: relative;
  z-index: 2;
  margin-top: 4rem;
  background: linear-gradient(180deg, transparent 0%, rgba(30, 167, 253, 0.05) 50%, transparent 100%);
}

.hosting-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(30, 167, 253, 0.2);
  position: relative;
}

.hosting-logo {
  max-width: 250px;
  margin-bottom: 2rem;
}

.hosting-desc {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ==========================================================================
   Quotation Section 
   ========================================================================== */
.quote-section {
  position: relative;
  z-index: 2;
  margin-top: 5rem;
}

.quote-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.quote-subtitle {
  color: var(--brand-blue);
  margin-bottom: 3rem;
}

.quote-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.quote-steps li {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.1rem;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--brand-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Reviews Section 
   ========================================================================== */
.reviews-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 4rem 0;
}

.reviews-videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.review-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-video iframe {
  width: 100%;
  height: 100%;
}

.text-reviews-carousel {
  position: relative;
  width: 100%;
  padding: 2rem 0;
  background: rgba(30, 167, 253, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.text-reviews-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  /* Double the duration to make it significantly slower and readable */
  animation: scrollReviews 120s linear infinite;
}

.text-reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.r-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  width: 300px;
  white-space: normal;
}

.r-stars {
  color: #FFD700;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.r-name {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.r-text {
  font-size: 0.9rem;
  font-style: italic;
}

/* ==========================================================================
   FAQ Section 
   ========================================================================== */
.faq-section {
  position: relative;
  z-index: 2;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-btn i {
  transition: transform 0.3s ease;
  color: var(--brand-blue);
}

.faq-btn[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.faq-content p {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

/* ==========================================================================
   Contact Section 
   ========================================================================== */
.contact-section {
  position: relative;
  z-index: 2;
  margin-top: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-form-wrapper {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #fff;
}

.form-group .required::after {
  content: " *";
  color: var(--brand-blue);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  background: rgba(30, 167, 253, 0.05);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.field-error {
  display: block;
  margin-top: 5px;
  color: #e74c3c;
  font-size: 0.85rem;
}

.field-error.hidden {
  display: none;
}

.form-status {
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
  padding: 1rem;
  border-radius: 8px;
}

.form-status:empty {
  display: none;
}

.form-status.success {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  border: 1px solid #2ecc71;
}

.form-status.error {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid #e74c3c;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.info-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
}

.contact-logo-text {
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.info-list {
  margin-bottom: 2rem;
}

.info-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-list i {
  color: var(--brand-blue);
  font-size: 1.25rem;
}

.schedule {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
}

.schedule h4 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--brand-blue);
  transform: translateY(-3px);
}

/* ==========================================================================
   Footer 
   ========================================================================== */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* ==========================================================================
   Media Queries (Desktop First fallback -> adapting for larger)
   Above is naturally mobile-first responsive 
   We will enhance for tablet / desktop
   ========================================================================== */

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  .hero-title {
    font-size: 5rem;
  }

  .hero-cr {
    font-size: 2rem;
  }

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

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

@media (max-width: 768px) {

  /* Fix Showcase Mobile View Visibility */
  .showcase-bg-container {
    height: 45vh;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  }

  .showcase-content {
    margin-top: 0;
    z-index: 1;
    padding-bottom: 55vh;
    /* Allows the last item to reach the active zone */
  }

  .showcase-column {
    max-width: 100%;
    margin: 0;
    background: transparent;
    border-right: none;
    min-height: auto;
    padding: 2rem 1.5rem;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .showcase-item {
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    opacity: 0.5;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Overriding cascade */
  }

  .showcase-item.active {
    opacity: 1;
    border-color: var(--brand-blue);
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(30, 167, 253, 0.3);
  }

  /* Center Contact Section on Mobile */
  .contact-form-wrapper {
    text-align: center;
    padding: 2rem 1rem;
    /* Prevent horizontal overflow */
  }

  .form-group label {
    text-align: left;
    /* Keep form labels logical */
  }

  .info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    /* Prevent horizontal overflow */
  }

  .info-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .info-list li {
    justify-content: center;
    font-size: 0.95rem;
    /* Shrink to fit long emails */
    word-break: break-word;
    /* Allow wrapping securely */
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-top-nav {
    display: grid;
    /* Maintain the grid layout from desktop */
    grid-template-columns: 1fr auto 1fr;
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
    border-radius: 40px;
    width: 95%;
    /* Use most available width without touching edges */
  }

  .htn-logo {
    order: 0;
    /* Keep it in the middle */
    width: auto;
    margin-bottom: 0;
    font-size: 1.25rem;
    /* Slightly smaller for mobile if needed */
  }

  .htn-menu {
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
  }

  .btn-lang-htn.desktop-lang-btn {
    display: none;
  }

  .mobile-lang-item {
    display: block !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
    padding-top: 1rem !important;
  }

  .htn-social a {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .htn-dropdown {
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
  }

  .htn-dropdown.show {
    transform: translateX(-50%) translateY(0);
  }

  .hero-ticker-wrapper {
    max-width: 90%;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: var(--container-max-width);
  }

  .tools-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }

  .reviews-videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .showcase-interactive {
    min-height: 100vh;
  }

  .showcase-bg-container {
    padding-left: 400px;
    /* Space for the column */
  }

  .showcase-overlay {
    background: linear-gradient(to right, rgba(11, 11, 11, 1) 0%, rgba(11, 11, 11, 0.6) 30%, rgba(11, 11, 11, 0.1) 100%);
  }
}