:root {
    --background-main: #000000;
    --background-alternative: #1a1a1a;
    --background-secondary: #111111;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-link: #ff00ff;
    --text-hover: #0aff00;
    --heading-primary: #0aff00;
    --heading-glow-subtle: rgba(4, 255, 135, 0.4);
    --heading-muted: #888888;
    --border-light: #00d4ff;
    --icon-primary: #04ff87;
    --icon-hover: #0aff00;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Arial", sans-serif;
    background-color: var(--background-main);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5 {
    font-family: "Orbitron", sans-serif;
    color: var(--heading-primary);
    text-shadow: 0 0 5px var(--heading-glow), 0 0 10px var(--heading-primary);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 20px;
    background-color: var(--background-main);
    color: var(--text-primary);
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.5);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 5px;
}
.logo-static {
    position: relative;
    width: 12px;
    height: 50px;
    max-width: 20px;
    max-height: 80px;
    background: linear-gradient(180deg, #0aff00, #04ff87);
    border-radius: 5px;
    box-shadow: 0 0 5px #0aff00, 0 0 10px #04ff87;
}
.logo-static::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    width: 30px;
    height: 8px;
    background: linear-gradient(90deg, #0aff00, #04ff87);
    border-radius: 5px;
    box-shadow: 0 0 5px #0aff00, 0 0 10px #04ff87;
}
.logo-text-static {
    display: flex;
    font-family: "Orbitron", sans-serif;
    font-size: 32px;
    color: #fff;
    text-shadow: 0 0 5px rgb(0 212 255);
    text-transform: uppercase;
    margin-left: 5px;
    max-width: 100%;
}
@media (max-width: 768px) {
    .logo-static {
        width: 12px;
        height: 50px;
    }
    .logo-static::before {
        top: 0;
        left: -10px;
        width: 30px;
        height: 8px;
    }
    .logo-text-static {
        font-size: 32px;
    }
}
@media (max-width: 480px) {
    .logo-static {
        width: 10px;
        height: 40px;
    }
    .logo-static::before {
        top: 0;
        left: -8px;
        width: 25px;
        height: 6px;
    }
    .logo-text-static {
        font-size: 24px;
    }
}
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: var(--text-hover);
}
.hidden {
    transform: translateY(-100%);
}
.burger-menu {
    display: none;
    font-size: 1.5em;
    color: var(--text-primary);
    cursor: pointer;
}
.burger-menu:hover {
    color: var(--text-hover);
}
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--background-main);
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 10px;
    z-index: 9999;
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}
.mobile-menu.show {
    display: flex;
    transform: translateY(0);
    background: rgb(0 0 0 / 0.9);
    opacity: 1;
}
.mobile-menu a {
    padding: 10px;
    color: var(--text-primary);
    text-decoration: none;
    text-align: left;
}
.mobile-menu a + a {
    border-top: 1px solid var(--border-light);
}
.mobile-menu a:hover {
    color: var(--text-hover);
}
.burger-menu {
    display: none;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .burger-menu {
        display: block;
    }
    .mobile-menu.show {
        display: flex;
    }
}
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 20px;
    background-color: #000;
    color: #fff;
}
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
.logo {
    position: relative;
    width: 20px;
    height: 80px;
    background: linear-gradient(180deg, #0aff00, #04ff87);
    border-radius: 5px;
    box-shadow: 0 0 10px #0aff00, 0 0 20px #04ff87;
    animation: obeliskGlow 2s infinite alternate;
}
.logo::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -15px;
    width: 50px;
    height: 20px;
    background: linear-gradient(90deg, #0aff00, #04ff87);
    border-radius: 5px;
    box-shadow: 0 0 10px #0aff00, 0 0 20px #04ff87;
}
.logo-text {
    display: flex;
    font-family: "Orbitron", sans-serif;
    font-size: 80px;
    color: #fff;
    text-shadow: 0 0 5px rgb(0 212 255);
    text-transform: uppercase;
    margin-left: 10px;
}
.logo-text span {
    display: inline-block;
    animation: fadeOut 3s infinite alternate;
}
.logo-text span:nth-child(1) {
    animation-delay: 0.1s;
}
.logo-text span:nth-child(2) {
    animation-delay: 0.3s;
}
.logo-text span:nth-child(3) {
    animation-delay: 0.5s;
}
.logo-text span:nth-child(4) {
    animation-delay: 0.7s;
}
.logo-text span:nth-child(5) {
    animation-delay: 0.9s;
}
.logo-text span:nth-child(6) {
    animation-delay: 1.1s;
}
@media (max-width: 375px) {
    .logo {
        width: 15px;
        height: 60px;
    }
    .logo-text {
        font-size: 48px;
    }
    .logo-container {
        margin-bottom: 20px;
    }
}
@media (min-width: 376px) and (max-width: 450px) {
    .logo {
        width: 18px;
        height: 70px;
    }
    .logo-text {
        font-size: 64px;
    }
    .logo-container {
        margin-bottom: 30px;
    }
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    text-align: left;
}

@media (max-width: 768px) {
  .hero-content {
    text-align: center;
  }
}

h1,
h2,
h3 {
    font-family: "Orbitron", sans-serif;
}
@keyframes obeliskGlow {
    0% {
        box-shadow: 0 0 10px #0aff00, 0 0 20px #04ff87;
    }
    100% {
        box-shadow: 0 0 20px #0aff00, 0 0 40px #04ff87;
    }
}
@keyframes fadeOut {
    0%,
    100% {
        color: #fff;
        text-shadow: 0 0 5px rgb(0 212 255), 0 0 10px rgb(0 212 255 / 0.9), 0 0 20px rgb(0 212 255 / 0.8), 0 0 40px rgb(255 0 255 / 0.8), 0 0 60px rgb(255 0 255 / 0.7);
    }
    50% {
        color: #f0f;
        text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #f0f;
    }
    80% {
        color: #000;
        text-shadow: none;
    }
}

.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.cta-button {
    padding: 10px 18px;
    font-weight: bold;
    color: #000;
    background-color: var(--icon-primary);
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    box-shadow: 0 0 5px var(--icon-primary), 0 0 10px var(--icon-primary);
}

.cta-button:hover {
    background-color: var(--icon-hover);
    box-shadow: 0 0 8px var(--icon-hover), 0 0 15px var(--icon-hover);
    color: #000;
}

.cta-button.primary {
    background-color: var(--text-link);
    color: #fff;
    box-shadow: 0 0 5px var(--text-link), 0 0 10px var(--text-link);
}

.cta-button.primary:hover {
    background-color: var(--text-hover);
    color: #000;
    box-shadow: 0 0 8px var(--text-hover), 0 0 15px var(--text-hover);
}

@media (max-width: 600px) {
    .hero-cta-buttons {
        justify-content: flex-start;
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }
}


.mission-statement {
  position: relative;
  background-image: url('../images/parallax.webp');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;

  /* Dark overlay for readability */
  background-color: rgba(0, 0, 0, 0.1);
  background-blend-mode: overlay;

  padding: 60px 20px;
  border-top: 1px solid var(--border-light);
}



.mission-statement h2 {
    font-size: 2.4em;
    color: var(--heading-primary);
    margin-bottom: 30px;
    text-shadow: 0 0 3px var(--heading-glow-subtle), 0 0 6px var(--heading-primary);
}
.columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.column {
    width: 45%;
}
.about h3,
.services h3 {
    font-size: 1.4em;
    color: var(--heading-muted);
    background: linear-gradient(to right, var(--text-secondary), var(--heading-muted));
    -webkit-background-clip: text;
    color: #fff0;
    margin-bottom: 20px;
}
.about p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
}
.personal-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-link);
    font-weight: 700;
    font-size: 1em;
    text-decoration: none;
    position: relative;
    padding-right: 30px;
}
.personal-link i {
    position: relative;
    right: 0;
    opacity: 1;
    transition: transform 0.3s ease, color 0.3s ease;
    padding-left: 10px;
}
.personal-link:hover i {
    transform: translateX(10px);
    color: var(--text-hover);
}
.personal-link span {
    transition: color 0.3s ease;
}
.personal-link:hover span {
    color: var(--text-hover);
}
.services ul {
    list-style: none;
    padding: 0;
}
.services li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.service-icon {
    color: var(--icon-primary);
    margin-right: 10px;
    font-size: 1.5em;
}
.service-text {
    position: relative;
    padding-bottom: 2px;
    border-bottom: 2px solid var(--text-primary);
}
.services li:hover .service-text {
    text-decoration: none;
    color: var(--text-hover);
    border-bottom-color: var(--text-hover);
    text-shadow: 0 0 5px var(--icon-hover), 0 0 10px var(--text-hover);
}
ul li a.service-text {
    color: inherit;
    text-decoration: none;
    display: inline;
}
ul li a.service-text:hover {
    color: var(--text-hover);
    text-shadow: 0 0 5px var(--icon-hover), 0 0 10px var(--text-hover);
}
@media (max-width: 768px) {
    .mission-statement h2 {
        font-size: 1.8em;
    }
    .columns {
        flex-direction: column;
    }
    .about,
    .services {
        width: 100%;
    }
    .services ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .services li {
        display: flex;
        align-items: center;
    }
}
.approach-section {
  padding: 60px 20px;
  background-color: var(--background-main);
  border-top: 1px solid var(--border-light);
}

.approach-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.approach-intro h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: var(--heading-primary);
  text-shadow: 0 0 4px var(--heading-primary), 0 0 10px var(--heading-glow-subtle);
  margin-bottom: 20px;
}

.approach-intro p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Timeline styling */
.timeline {
  position: relative;
  border-left: 2px solid var(--border-light);
  padding-left: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-marker {
  position: absolute;
  left: -30px;
  top: 20px;
  width: 16px;
  height: 16px;
  background-color: var(--border-light);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--border-light);
}

.timeline-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-left: 20px;
  flex-wrap: nowrap;
}

.timeline-content {
  flex: 1 1 auto;
  min-width: 0;
}

.timeline-content h3 {
  margin: 0 0 5px 0;
  color: var(--heading-primary);
}

.timeline-content p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.5;
}

.timeline-row img {
  flex-shrink: 0;
  width: 120px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 0 6px var(--border-light);
}

/* Mobile override: keep layout tight, image still right-aligned */
@media (max-width: 768px) {
  .timeline-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  .timeline-content {
    flex: 1 1 70%;
  }

  .timeline-row img {
    width: 100px;
    height: 80px;
  }
}


footer {
    background-color: var(--background-alternative);
    color: var(--text-primary);
    padding: 15px;
    text-align: center;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background-color: var(--background-main);
    color: var(--text-primary);
}
.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--heading-primary);
}
.footer-section p {
    font-size: 1rem;
    margin: 5px 0;
    color: var(--text-secondary);
}
.email-link {
    color: var(--text-link);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.email-link:hover {
    color: var(--text-hover);
    text-shadow: 0 0 5px var(--text-hover), 0 0 10px var(--text-hover);
}
.clipboard-icon {
    background: none;
    border: none;
    margin-left: 10px;
    cursor: pointer;
    color: var(--icon-primary);
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}
.clipboard-icon:hover {
    color: var(--icon-hover);
    transform: scale(1.2);
}
.social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}
.social-icons a {
    color: var(--icon-primary);
    font-size: 1.5em;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}
.social-icons a:hover {
    color: var(--text-link);
    transform: scale(1.2);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-around;
        text-align: left;
    }
    .footer-section {
        text-align: left;
    }
    footer {
        padding: 20px 15px;
    }
    .footer-section h3 {
        font-size: 1.2em;
    }
    .footer-section p {
        font-size: 1em;
    }
    .social-icons a {
        font-size: 1.5em;
        margin: 0 10px;
    }
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-section {
        margin-bottom: 20px;
    }
    .social-icons {
        justify-content: center;
    }
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal-content {
    background-color: var(--background-main);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: var(--text-primary);
    width: 80%;
    max-width: 400px;
}
.close-btn {
    background-color: var(--icon-primary);
    color: var(--background-main);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}
.close-btn:hover {
    background-color: var(--icon-hover);
}
.custom-hero-section {
  background-image: url('../images/custom-hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.custom-hero-content {
  max-width: 800px;
}

.custom-hero-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  color: var(--heading-primary);
  text-shadow: 0 0 8px #000;
  margin-bottom: 20px;
}

.custom-hero-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 0 0 5px #000;
  margin-bottom: 30px;
}


@media (max-width: 768px) {
  .custom-hero-content h1 {
    font-size: 1.8rem;
  }

  .custom-hero-content p {
    font-size: 1rem;
  }
}

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

/* Mobile tweaks */
@media (max-width: 600px) {
  .custom-hero-content .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .custom-hero-content .cta-button {
    width: 100%;
    max-width: 300px;
  }
}


.intro-section {
  position: relative;
  background-image: url('../images/parallax.webp');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.1);
  background-blend-mode: overlay;

  padding: 60px 20px;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.intro-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.intro-wrapper h2 {
  font-size: 2rem;
  color: var(--heading-primary);
  text-shadow: 0 0 4px var(--heading-glow-subtle);
  margin-bottom: 20px;
}
.intro-wrapper p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}
.solutions-section {
  padding: 60px 20px;
  background-color: var(--background-alternative);
  border-top: 1px solid var(--border-light);
}

.solutions-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.solutions-intro h2 {
  font-size: 2rem;
  color: var(--heading-primary);
  text-shadow: 0 0 4px var(--heading-primary), 0 0 10px var(--heading-glow-subtle);
  margin-bottom: 20px;
}

.solutions-intro p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.solution-card {
  background-color: var(--background-main);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 0 5px var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 10px var(--text-hover);
}

.solution-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
  box-shadow: 0 0 4px rgba(0, 212, 255, 0.1);
}

.solution-card h3 {
  color: var(--heading-primary);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.solution-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}


.testimonials-section {
  background-color: var(--background-secondary);
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid var(--border-light);
}
.testimonials-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--heading-primary);
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.testimonial-card {
  background-color: var(--background-alternative);
  border-left: 4px solid var(--icon-primary);
  padding: 20px;
  max-width: 360px;
  border-radius: 6px;
  color: var(--text-secondary);
  font-style: italic;
}
.testimonial-card span {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-style: normal;
}
.pricing-section {
  padding: 80px 20px;
  background-image: url('../images/texture-background.webp'); /* your textured background */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-blend-mode: overlay;
  border-top: 1px solid var(--border-light);
}

.pricing-intro {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-intro h2 {
  font-size: 2.2rem;
  color: var(--heading-primary);
  text-shadow: 0 0 4px var(--heading-glow-subtle);
  margin-bottom: 15px;
}

.pricing-intro p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--background-main);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 0 5px var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 10px var(--text-hover);
}

.pricing-card img {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
}

.pricing-card h3 {
  font-size: 1.4rem;
  color: var(--heading-primary);
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 10px 0 20px;
  color: var(--text-link);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-card ul li {
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--icon-primary);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-btn:hover {
  background-color: var(--icon-hover);
  box-shadow: 0 0 10px var(--icon-hover);
  color: #000;
}

.pricing-card.highlighted {
  border: 2px solid var(--text-link);
  background-color: var(--background-secondary);
  box-shadow: 0 0 10px var(--text-link);
}


.cta-section {
  padding: 60px 20px;
  background-color: var(--background-secondary);
  text-align: center;
  border-top: 1px solid var(--border-light);
}
.cta-section h2 {
  font-size: 2rem;
  color: var(--heading-primary);
  margin-bottom: 20px;
}
.cta-section p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Hero Section */
.products-hero-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 20px 60px;
  background-color: var(--background-main);
}

.products-hero-content {
  flex: 1 1 480px;
  max-width: 600px;
}

.products-hero-content h1 {
  font-size: 2.5rem;
  color: var(--heading-primary);
  text-shadow: 0 0 5px var(--heading-glow-subtle), 0 0 10px var(--heading-primary);
  margin-bottom: 20px;
}

.products-hero-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.products-hero-image {
  flex: 1 1 400px;
  max-width: 600px;
  text-align: center;
}

.products-hero-image img {
  width: 100%;
  height: auto;
  max-width: 500px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .products-hero-split {
    flex-direction: column;
    text-align: center;
  }

  .products-hero-content,
  .products-hero-image {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }
}


/* Filter Buttons */
.product-filters {
  padding: 30px 20px;
  text-align: center;
  background-color: var(--background-alternative);
}

.filter-button {
  background-color: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  padding: 10px 16px;
  margin: 5px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-button:hover {
  background-color: var(--text-hover);
  color: #000;
}

/* Product Grid */
.product-grid-section {
  padding: 60px 20px;
  background-color: var(--background-main);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background-color: var(--background-alternative);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 5px var(--border-light);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 10px var(--text-hover);
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
  box-shadow: 0 0 4px var(--border-light);
}

.product-card h3 {
  font-size: 1.2rem;
  color: var(--heading-primary);
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-size: 0.85rem;
  background-color: var(--text-secondary);
  color: #000;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
}

.tag.price {
  background-color: var(--icon-primary);
}

.coming-soon .tag:last-child {
  background-color: var(--text-link);
  color: #fff;
}

/* Subscribe Banner */
.subscribe-banner {
  background-color: var(--background-secondary);
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid var(--border-light);
}

.subscribe-content {
  max-width: 700px;
  margin: 0 auto;
}

.subscribe-content h2 {
  font-size: 2rem;
  color: var(--heading-primary);
  margin-bottom: 16px;
  text-shadow: 0 0 4px var(--heading-glow-subtle);
}

.subscribe-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

/* --- Tech Insights Page --- */

.tech-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 80px 20px;
  background: linear-gradient(to right, #0e0e0e, #1c1c1c);
}

.tech-hero .hero-content {
  flex: 1;
}

.tech-hero h1 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.tech-hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
}

.tech-hero img {
  max-width: 400px;
  height: auto;
  flex-shrink: 0;
}

/* Featured article */
.featured-article {
  padding: 60px 20px;
  background-color: var(--background-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.featured-article h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.featured-article p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
}

/* Article Grid */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 20px;
}

.article-card {
  background-color: var(--background-alternative);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 10px var(--accent);
}

.article-card h3 {
  font-size: 1.2rem;
  color: var(--heading-primary);
  margin-bottom: 10px;
}

.article-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}

/* CTA Section */
.newsletter-cta {
  background: radial-gradient(ellipse at center, #111 0%, #000 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid var(--border-light);
}

.newsletter-cta h3 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.newsletter-cta p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.newsletter-cta button {
  background-color: var(--accent);
  color: #000;
  border: none;
  padding: 12px 24px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-cta button:hover {
  background-color: var(--accent-light);
}

/* Responsive Hero */
@media (max-width: 768px) {
  .tech-hero {
    flex-direction: column;
    text-align: center;
  }

  .tech-hero img {
    max-width: 100%;
    margin-top: 30px;
  }
}
