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

:root {
    --color-text: #1b1b1b;
    --color-text-muted: #4a4a4a;
    --color-text-light: #777;
    --color-bg: #fff;
    --color-bg-alt: #f9f9f9;
    --color-bg-dark: #1b1b1b;
    --color-yellow: #ffdc2b;
    --color-yellow-hover: #f0cd00;
    --color-orange: #ff7511;
    --color-border: #ddd;
    --color-white: #fff;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1100px;
    --radius: 10px;
    --radius-sm: 6px;
    --radius-pill: 50px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

#main > section {
    padding: 60px 4%;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 0 4%;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo img {
    display: block;
    height: 40px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Buttons */

.btn {
    display: inline-block;
    padding: 11px 28px;
    background: transparent;
    color: var(--color-text);
    text-decoration: none;
    border-radius: var(--radius-pill);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 2px solid var(--color-text);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
    font-family: var(--font-family);
}

.btn:hover {
    background: var(--color-text);
    color: var(--color-white);
}

.btn:active {
    transform: scale(0.98);
}

.btn-light {
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-light:hover {
    background: var(--color-white);
    color: var(--color-text);
}

/* Hero */

.hero {
    position: relative;
    padding-top: 90px !important;
    padding-bottom: 90px !important;
    text-align: center;
    background: linear-gradient(
      -45deg,
      #ff7511,
      #f0cd00
    );
    background-size: 400% 400%;
    animation: hero-ambient 20s ease infinite;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

/* About */

.about {
    padding: 80px 0;
}

.about h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

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

.about-text p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value {
    display: flex;
    align-items: stretch;
    padding: 0;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    overflow: hidden;
}

.value-icon {
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
}

.value-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.value-copy {
    padding: 20px;
    width: calc(100% - 150px);
}

.value-copy h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text);
}

.value-copy p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.value--creative-control .value-icon img {
    width: 100px;
    height: 100px;
}

/* Products */

.products {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.products h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
    text-align: center;
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: var(--color-white);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}

.product-image {
    flex-shrink: 0;
    width: 100%;
    height: 0;
    padding-bottom: 61%;
    background: #faf5ef;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-info h3 img {
    width: 32px;
    height: auto;
}

.product-tagline {
    font-size: 1.05rem;
    color: var(--color-text-light);
    font-weight: 500;
    margin-bottom: 16px;
}

.product-info > p:not(.product-tagline) {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
}

.product-features {
    list-style: none;
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}

.product-features li {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    padding-left: 20px;
    position: relative;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-yellow);
}

/* Contact */

.contact {
    padding: 80px 0;
    background: var(--color-bg);
}
.contact .container {
    background: #fff;
    /* padding: 40px; */
    /* box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1); */
}   

.contact h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.contact-intro {
    color: var(--color-text-muted);
    margin-bottom: 36px;
    font-size: 1rem;
}

.contact-form {
    max-width: 640px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-family: var(--font-family);
    color: var(--color-text);
    background: var(--color-bg);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-text);
    box-shadow: 0 0 0 3px rgba(27, 27, 27, 0.08);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #d93025;
}

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

.field-error {
    font-size: 0.8125rem;
    color: #d93025;
    margin-top: 4px;
    display: none;
}

.field-error.visible {
    display: block;
}

.form-status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    display: none;
}

.form-status.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.form-status.error {
    display: block;
    background: #fdecea;
    color: #d93025;
    border: 1px solid #f5c6cb;
}

.recaptcha-terms {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: 16px;
    line-height: 1.5;
}

.recaptcha-terms a {
    color: var(--color-text-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.recaptcha-terms a:hover {
    color: var(--color-text);
}

/* Company Info */

.company-info {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.company-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

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

.info-item h3 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.info-item p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.6;
}

/* Footer */

.site-footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.7);
    border-top: 6px solid var(--color-yellow);
    padding: 60px 4%;
}

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

.footer-brand img {
    height: 48px;
    width: auto;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Legal / Privacy page */

.legal-page {
    padding: 80px 0;
}

.legal-page .container {
    max-width: 740px;
}

.legal-page h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 48px;
}

.legal-page section {
    margin-bottom: 36px;
}

.legal-page section:last-child {
    margin-bottom: 0;
}

.legal-page h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.legal-page h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-page p {
    color: var(--color-text-muted);
    margin-bottom: 12px;
    font-size: 1rem;
}

.legal-page ul {
    color: var(--color-text-muted);
    margin: 12px 0;
    padding-left: 24px;
}

.legal-page li {
    margin-bottom: 6px;
    font-size: 1rem;
}

.legal-page a {
    color: var(--color-text);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-page a:hover {
    color: var(--color-text-muted);
}

/* Hide reCAPTCHA badge */
.grecaptcha-badge {
    visibility: hidden !important;
}

/* Responsive */

@media (max-width: 768px) {
    .site-header .container {
        height: 56px;
    }

    nav ul {
        gap: 20px;
    }

    nav a {
        font-size: 0.875rem;
    }

    .logo img {
        height: 32px;
    }

    .hero {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .about,
    .products,
    .contact,
    .company-info {
        padding: 60px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .product-card {
        flex-direction: column;
    }

    .product-image {
        width: 100%;
        height: 220px;
    }

    .product-info {
        padding: 28px;
    }

    .about-text p {
        font-size: 1rem;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

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

  
@keyframes hero-ambient {
0%, 100% { background-position: 0% 50%; }
25% { background-position: 100% 0%; }
50% { background-position: 100% 100%; }
75% { background-position: 0% 100%; }
}