/* ==========================================================================
   1. DESIGN TOKENS & VARIABLES
   ========================================================================== */
:root {
  /* Brand Palette */
  --primary: #6754E9;
  --primary-hover: #5341d6;
  --secondary: #DEE1FF;
  --accent: #000000;
  
  /* Neutral Palette */
  --bg-main: #ffffff;
  --bg-alt: #F7F7FA;
  --text-main: #000000;
  --text-muted: #555566;
  --border-color: #E2E4ED;
  
  /* Typography Tokens */
  --font-heading: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Figtree', system-ui, -apple-system, sans-serif;
  
  /* Layout & Spacing */
  --max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   2. ACCESSIBLE RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--accent);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

/* 1. Hide off-screen by default */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: #6366f1; /* Matches your purple brand color */
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 0.375rem 0.375rem;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s ease-in-out;
}

/* 2. Slide into view ONLY when focused via Tab key */
.skip-link:focus {
  top: 0;
  outline: 3px solid #38bdf8;
}

/* ==========================================================================
   3. CONTAINERS & SECTION HEADERS
   ========================================================================== */
body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh; 
  min-height: 100dvh; 
}

main,
#main-content {
  flex-grow: 1;
}

img{
    aspect-ratio: 1.5;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: 5rem;
  width: 100%;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}

.section-header .badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background-color: var(--secondary);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* ==========================================================================
   4. HEADER & NAVIGATION (DESKTOP DEFAULT)
   ========================================================================== */
#site-header-container, .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  height: 80px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-dot {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 0.5rem;
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  color: #ffffff;
  background-color: var(--primary);
  border: none;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--accent);
  background-color: var(--bg-alt);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.btn-block {
  width: 100%;
  margin-top: 1.5rem;
}

/* ==========================================================================
   6. HOME- HERO SECTION
   ========================================================================== */
.hero-section {
  background: linear-gradient(180deg, var(--secondary) 0%, var(--bg-main) 100%);
  padding: 4rem 0;
  min-height: 500px;
  width: 100%;
  overflow: hidden;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.hero-subheading {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

a.hero-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: #ffffff;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}

a.hero-btn-dark:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.hero-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   OTHER PAGE HERO & BREADCRUMBS
   ========================================================================== */
section.page-hero-section {
  background-color: var(--secondary);
  padding: 4.5rem 0 3.5rem;
  min-height: 270px;
  text-align: center;
}

section.page-hero-section .hero-content {
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

section.page-hero-section h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  text-align: center;
}

section.page-hero-section .hero-subheading {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Specs Grid Layout Setup */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ==========================================================================
   7. TRUST & STATS BANNER
   ========================================================================== */
section.trust-banner {
  background-color: var(--secondary);
  padding: 3.5rem 0;
  width: 100%;
}

section.trust-banner .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

section.trust-banner .stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

section.trust-banner .stat-number {
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-main);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  display: block;
}

section.trust-banner .stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-muted);
  display: block;
}

/* ==========================================================================
   8. ABOUT SECTION
   ========================================================================== */
section.about-section {
  background-color: var(--bg-main);
  padding-top: 4rem;
  width: 100%;
}

section.about-section .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

section.about-section .about-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

section.about-section .about-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

section.about-section .about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

section.about-section .about-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.25;
}

section.about-section .about-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.25rem; 
}

/* ==========================================================================
   9. CARDS & PRODUCTS GRID
   ========================================================================== */
.card {
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(103, 84, 233, 0.08);
}

.card .badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.3rem 0.85rem;
  background-color: var(--secondary);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background-color: var(--primary);
  color: var(--bg-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.icon-badge svg {
  width: 26px;
  height: 26px;
}

.grid-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.product-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-features {
  list-style: none;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.4;
}

.product-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 600;
  flex-shrink: 0;
}

/* ==========================================================================
   10. PRICING CARDS
   ========================================================================== */
.grid-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  background-color: var(--bg-main);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--accent);
  margin: 1rem 0 0.25rem;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   11. CLIENT MARQUEE SLIDER
   ========================================================================== */
section.clients-section {
  background-color: var(--bg-main);
  padding: 3.5rem 0;
  width: 100%;
}

section.clients-section .slider-control {
  display: none !important;
}

section.clients-section .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

section.clients-section .clients-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

section.clients-section .clients-slider {
  display: flex !important;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: logoMarquee 12s linear infinite;
}

section.clients-section .clients-slider:hover {
  animation-play-state: paused;
}

@keyframes logoMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

section.clients-section .client-slide {
  flex: 0 0 auto;
  padding-inline: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.clients-section .client-slide img {
  max-width: 140px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

section.clients-section .client-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ==========================================================================
   12. FAQ ACCORDION
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-main);
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
  background-color: var(--bg-alt, #f8fafc);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--primary);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: none;
}

.faq-item.active .faq-content {
  display: block;
}

/* ==========================================================================
   13. SITE FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--accent);
  color: #ffffff;
  padding-top: 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .logo {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: #a0a0b0;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 0.85rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a,
.footer-contact-item {
  color: #a0a0b0;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-bottom {
  padding-block: 1.5rem;
  text-align: center;
  background-color: #050508;
}

.footer-credit {
  font-size: 0.875rem;
  color: #808090;
}

.footer-credit a {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: var(--transition);
}

.footer-credit a:hover {
  color: #ffffff;
}

/* ==========================================================================
   CONTACT PAGE MODULE
   ========================================================================== */

.contact-page {
  padding-block: 4rem;
}

/* --- Section 1: Main Grid --- */
.contact-grid {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  margin-bottom: 4rem;
}

/* Left Column (60%) */
.contact-info-col {
  flex: 1 1 calc(60% - 1.25rem);
  min-width: 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.contact-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Cards Grid */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.contact-card {
  background-color: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}

.contact-card-full {
  grid-column: 1 / -1;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.contact-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-card-link {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.contact-card-link:hover {
  color: var(--primary-hover);
}

/* Right Column (40%) */
.contact-form-col {
  flex: 1 1 calc(40% - 1.25rem);
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.contact-form-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.contact-form-subtext {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

/* Form Alert Banner */
.contact-alert {
  display: none;
  background-color: #E6F4EA;
  border: 1px solid #34A853;
  color: #137333;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-alert.is-visible {
  display: block;
}

/* Form Controls */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(103, 84, 233, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.btn-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  background-color: var(--primary);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background-color: var(--primary-hover);
}

/* --- Section 2: Map Container --- */
.contact-map-wrapper {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
    BACK to TOP
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 25px;
  background-color: var(--primary);
  color: var(--bg-main);
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  
  /* Hide by default using opacity and transform for smooth transition */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}

/* ==========================================================================
   14. TABLET BREAKPOINT (UP TO 1024PX)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  section.trust-banner .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem; 
  }

  section.about-section .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .grid-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .grid-pricing {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

/* --- Responsive Breakpoint for *contact page only* --- */
@media (max-width: 900px) {
  .contact-grid {
    flex-direction: column;
    gap: 3rem;
  }

  .contact-info-col,
  .contact-form-col {
    width: 100%;
    flex: 1 1 100%;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   15. MOBILE BREAKPOINT (UP TO 768PX)
   ========================================================================== */
@media (max-width: 768px) {
  .section {
    padding-block: 3.5rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-container {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }

  .nav-container.is-active .nav-links {
    display: flex;
  }

  .hero-section {
    padding: 3rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  section.trust-banner .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem; 
  }
  
  section.about-section {
    padding-top: 3rem;
  }

  section.about-section .about-title {
    font-size: 1.75rem;
  }

  .grid-products,
  .grid-pricing {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: span 1;
  }
}