/* ===================================================
   GUGPOWDER INC. - CORPORATE WEBSITE STYLES
   "Igniting Tomorrow's Solutions Today"
   Stereotypically clean, professional, soulless corporate design
   =================================================== */

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0a1628;
    --dark-blue: #1a2744;
    --accent-blue: #2563eb;
    --accent-light: #60a5fa;
    --gold: #d4a843;
    --gold-light: #f0d78c;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --gray-100: #f1f3f7;
    --gray-200: #e2e6ee;
    --gray-400: #9ca3b4;
    --gray-600: #5a6478;
    --gray-800: #2d3548;
    --danger: #ef4444;
    --success: #22c55e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.2;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--accent-light);
}

img {
    max-width: 100%;
    display: block;
}

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

.section {
    padding: 100px 0;
}

.center {
    text-align: center;
}

.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 16px auto 48px;
}

.disclaimer, .fine-print {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 24px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-blue);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    background: #1d4ed8;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--white);
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 24px;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 150px;
    width: auto;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 700;
}

.logo-text sup {
    font-size: 0.5em;
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    background: var(--accent-blue) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 6px;
}

.nav-cta:hover {
    background: #1d4ed8 !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 168, 67, 0.1) 0%, transparent 50%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('/gugpowder/images/Hero%20Backround.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 120px 24px 80px;
    margin: 0 auto;
    text-align: center;
}

.hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 24px;
}

.hero h1 em {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--gray-400);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- TICKER BAR --- */
.ticker-bar {
    background: var(--accent-blue);
    color: var(--white);
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.ticker-content {
    display: inline-flex;
    gap: 32px;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- ABOUT --- */
.about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 24px;
}

.about-text h2 em {
    color: var(--accent-blue);
    font-style: italic;
}

.about-text p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.about-awards {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.award {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.award img {
    width: 60px;
    height: 60px;
}

.award span {
    font-size: 0.75rem;
    color: var(--gray-600);
    line-height: 1.3;
}

.award-placeholder {
    font-size: 2.5rem;
}

.about-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.image-placeholder {
    background: var(--gray-200);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    gap: 12px;
}

.image-placeholder span {
    font-size: 4rem;
}

.image-placeholder p {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
}

.image-placeholder.green {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

/* --- PRODUCTS --- */
.products {
    background: var(--white);
}

.products h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.product-card.featured {
    border: 2px solid var(--gold);
    box-shadow: 0 8px 32px rgba(212, 168, 67, 0.15);
}

.product-image {
    position: relative;
    background: var(--gray-100);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--gray-100);
    font-size: 4rem;
}

.product-placeholder.premium {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent-blue);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.product-badge.gold {
    background: var(--gold);
    color: var(--navy);
}

.product-badge.green {
    background: var(--success);
}

.product-badge.red {
    background: var(--danger);
}

.product-card h3 {
    padding: 20px 20px 8px;
    font-size: 1.15rem;
    color: var(--navy);
}

.product-card > p {
    padding: 0 20px;
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 20px;
}

.product-specs span {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 4px 10px;
    border-radius: 12px;
}

.product-price {
    display: block;
    padding: 16px 20px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-blue);
}

/* --- VALUES --- */
.values {
    background: var(--navy);
    color: var(--white);
}

.values .section-eyebrow {
    color: var(--gold);
}

.values h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.values h2 small {
    font-size: 0.5em;
    color: var(--gray-400);
    font-weight: 400;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.value-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    transition: background 0.3s, transform 0.3s;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

.value-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* --- TEAM --- */
.team {
    background: var(--off-white);
}

.team h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.team-card {
    text-align: center;
    background: var(--white);
    border-radius: 16px;
    padding: 32px 20px;
    border: 1px solid var(--gray-200);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--gray-200);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    font-size: 3rem;
    border-radius: 50%;
}

.team-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.team-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: var(--accent-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
    font-style: italic;
}

/* --- TESTIMONIALS --- */
.testimonials {
    background: var(--white);
}

.testimonials h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 48px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--off-white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--gray-200);
}

.stars {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* --- SUSTAINABILITY --- */
.sustainability {
    background: var(--off-white);
}

.sustainability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.sustainability-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.sustainability-text h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.sustainability-text p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.green-list {
    list-style: none;
    margin: 20px 0;
}

.green-list li {
    padding: 8px 0;
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* --- CTA / NEWSLETTER --- */
.cta {
    background: var(--navy);
}

.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-box > p {
    color: var(--gray-400);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 240px;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--gray-400);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--accent-blue);
}

.success {
    color: var(--success) !important;
    font-weight: 600;
    padding: 20px 0;
}

/* --- PARTNERS --- */
.partners {
    background: var(--white);
    padding: 48px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.partners-label {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partner-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gray-400);
    font-weight: 700;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.partner-logo:hover {
    opacity: 1;
}

/* --- FOOTER --- */
.footer {
    background: var(--dark-blue);
    color: var(--gray-400);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    padding: 4px 0;
}

.footer-col ul a {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.footer-col ul a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.9rem;
    font-weight: 700;
    transition: background 0.3s, color 0.3s;
}

.social-links a:hover {
    background: var(--accent-blue);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.legal-links a {
    color: var(--gray-400);
    font-size: 0.75rem;
}

.legal-links a:hover {
    color: var(--white);
}

/* --- BACK LINK --- */
.back-to-gugnag {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--navy);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: background 0.3s, transform 0.3s;
}

.back-to-gugnag:hover {
    background: var(--accent-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .about-grid,
    .sustainability-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }

    h2 {
        font-size: 2rem !important;
    }
}
