/* --- CSS Reset & Variables --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --border-radius: 12px;
    --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font);
    color: var(--dark);
    background-color: #ffffff;
    line-height: 1.6;
}

/* --- Navigation --- */
header {
    position: sticky;
    top: 0;
    background: #000000;
    backdrop-filter: blur(5px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0 .25rem 0;
}

.logo {
    max-width: 300px;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    margin-left: 2rem;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--primary);
}

/* --- Hero Section --- */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #64748b;
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.cta-button:hover {
    background-color: #7789a4;
}

/* --- CSS Badge Visualizer Asset --- */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-preview {
    width: 100;
    max-width: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@keyframes zoomInAnimation {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
  
  img.mainbadge {
    animation-name: zoomInAnimation;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: both;
  }

/* --- Specifications Grid --- */
.specs-section {
    background-color: var(--light);
    padding: 5rem 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.spec-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.52);
}

.spec-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.spec-card p {
    color: var(--gray);
}

/* --- Responsive Design Media Queries --- */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 2rem;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .nav-container {
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    nav {
        display: none;
        /* Simplifies layout for mobile devices */
    }

    .badge-preview {
        width: 260px;
        height: 390px;
    }
}

/* --- Gallery Grid --- */
.gal-pics {
    background-color: #c9d8e6;
    padding: 5rem 2rem;
}

/* The gallery wrapper*/
.gal-wrapper {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    align-content: center;
    text-align: center;
}

/* The grid: Four equal columns that floats next to each other */
.gal-column {
    float: left;
    width: 25%;
    padding: 10px;
}


/* Style the images inside the grid */
.gal-column img {
    opacity: 0.8;
    cursor: pointer;
}

.gal-column img:hover {
    opacity: 1;
}

/* Clear floats after the columns */
.gal-row:after {
    content: "";
    display: table;
    clear: both;
}

/* The expanding image container */
.gal-container {
    position: relative;
    display: none;
}

/* Expanding image text */
#imgtext {
    bottom: -20px;
    color: #64748b;
    font-size: 20px;
}

/* Closable button inside the expanded image */
.closebtn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #64748b;
    font-size: 35px;
    cursor: pointer;
}

/* The gallery wrapper*/
.lanyard-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-content: center;
    text-align: center;
}

/* The pricing wrapper*/
.price-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-content: center;
    text-align: center;
}

/* --- Pricing Grid --- */
.price-section {
    background-color: #e7f0f8;
    padding: 5rem 2rem;
}

* {
    box-sizing: border-box;
}

.price-row {
    margin-left: -5px;
    margin-right: -5px;
}

.price-column {
    float: left;
    width: 100%;
    padding: 5px;
}

/* Clearfix (clear floats) */
.price-row::after {
    content: "";
    clear: both;
    display: table;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #fff;
    margin-left: auto;
    margin-right: auto;
}

th,
td {
    text-align: left;
    padding: 16px;
}

tr:nth-child(even) {
    background-color: #fff;
}

footer {
    bottom: 0;
    background: #64748b;
    color: #e7f0f8;
    min-height: 150px;
    padding: 4rem 2rem 2rem 2rem;
}
  
  .site-footer {
    
  }
  
  /* Grid Layout for Desktop */
  .footer-container {
    max-width: 1200px;
    align-content: center;
    text-align: center;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  
  /* Column Elements */
  .footer-column h4 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-weight: 600;
  }
  
  .footer-column p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 0;
  }
  
  /* Navigation Lists */
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-column ul li a {
    color: #a2b6cd
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
  }
  
  .footer-column ul li a:hover {
    color: #cfdfed;
  }
  
  /* Brand Logo & Socials */
  .footer-logo {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
  }
  
  .footer-logo span {
    color: var(--accent);
  }
  
  .social-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.2rem;
    margin-right: 1rem;
    transition: color 0.2s ease;
  }
  
  
  
  /* Bottom Tier Copyright */
  .footer-bottom {
    max-width: 1200px;
    margin: 1rem auto 0 auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
  }
  
  .footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
  }

  hr.icon-break {
    border: none;
    border-top: 1px double #cfdfed;
    color: #cfdfed;
    text-align: center;
    height: 5px;
    overflow: visible;
    margin: 50px 0;
  }
  
  hr.icon-break::after {
    /* You can replace this star with an emoji, text, or a Unicode icon */
    content: "✦";
    display: inline-block;
    position: relative;
    top: -14px;
    font-size: 18px;
    padding: 0 10px;
    background: #64748b; /* Match this to your page background color to mask the line */
  }

  hr.glow-line {
    border: none;
    height: 2px;
    /* Fades from transparent to bright blue/cyan, then back to transparent */
    background: linear-gradient(to right, transparent, #cfdfed, #e7f0f8, #cfdfed, transparent);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.7);
    margin: 40px 0;
  }
  
  /* Responsive Tablet & Mobile Media Queries */
  @media (max-width: 900px) {
    .footer-container {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 500px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .site-footer {
      padding: 3rem 1.5rem 1.5rem 1.5rem;
    }
    
    .newsletter-form form {
      flex-direction: column;
    }
  }
  