@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&display=swap');

/* ========================================
   VENDETTA STUDIOS — Global Styles
   ======================================== */

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

:root {
    --bg-primary: #0a0a0a;
    --bg-card: rgba(15, 15, 15, 0.6);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --red-primary: #dc2626;
    --red-dark: #b91c1c;
    --red-glow: rgba(220, 38, 38, 0.4);
    --green: #22c55e;
    --text-white: #ffffff;
    --text-light: #ccc;
    --text-mid: #aaa;
    --text-dim: #888;
    --text-muted: #666;
    --text-dark: #555;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('vendettabg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(180deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

p {
    color: var(--text-mid);
    line-height: 1.8;
    font-size: 0.95rem;
}

a {
    color: var(--red-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ========================================
   Layout
   ======================================== */

.wrapper {
    position: relative;
    z-index: 1;
}

section {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red-primary);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.section-divider {
    width: 40px;
    height: 2px;
    background: var(--red-primary);
    margin: 0 auto 60px;
    opacity: 0.6;
}

/* ========================================
   Navigation
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-brand {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-white);
    text-decoration: none;
}

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

.nav-links a {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--red-primary);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    animation: fadeIn 1s ease;
}

.hero-overline {
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--red-primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    margin-bottom: 16px;
}

.hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-description {
    max-width: 550px;
    margin: 0 auto 50px;
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.9;
}

/* Trust Signals — Above the Fold */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding: 24px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 500;
}

.trust-item .icon {
    color: var(--red-primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ========================================
   Email Form
   ======================================== */

.email-form {
    max-width: 520px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

input[type="email"] {
    flex: 1;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-right: none;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

input[type="email"]::placeholder {
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    font-weight: 500;
}

input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--red-primary);
}

.btn {
    padding: 18px 40px;
    background: var(--red-primary);
    color: #fff;
    border: none;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: var(--font-main);
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: var(--red-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--red-glow);
}

.btn:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--red-primary);
}

/* ========================================
   Status Indicators
   ======================================== */

.status {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 35px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.status-dot.active {
    background: var(--green);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
}

.status-dot.limited {
    background: var(--red-primary);
    box-shadow: 0 0 12px var(--red-glow);
}

/* ========================================
   Manifesto Section
   ======================================== */

.manifesto {
    text-align: center;
    border-top: 1px solid var(--border-subtle);
}

.manifesto-text {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-light);
    font-weight: 300;
}

.manifesto-text strong {
    color: var(--text-white);
    font-weight: 600;
}

.manifesto-text em {
    color: var(--red-primary);
    font-style: normal;
    font-weight: 500;
}

.manifesto-signature {
    margin-top: 40px;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

/* ========================================
   Process Section
   ======================================== */

.process {
    border-top: 1px solid var(--border-subtle);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-card {
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-card:hover::before {
    opacity: 0.6;
}

.process-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.process-number {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--red-primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.process-card h3 {
    color: var(--text-white);
    margin-bottom: 14px;
}

.process-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ========================================
   Collection / Product Grid
   ======================================== */

.collection {
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.product-card:hover .product-image {
    opacity: 0.9;
}

.product-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--red-primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 10px;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 6px;
}

.product-meta {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.product-stock {
    font-size: 0.65rem;
    color: var(--red-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 8px;
}

/* ========================================
   Social Proof
   ======================================== */

.social-proof {
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.review-card {
    padding: 35px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    text-align: left;
}

.review-stars {
    color: var(--red-primary);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 18px;
    font-style: italic;
}

.review-author {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.review-verified {
    font-size: 0.6rem;
    color: var(--green);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 500;
}

/* ========================================
   Authority / Press
   ======================================== */

.authority {
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

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

.authority-item {
    padding: 30px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.authority-item:hover {
    border-color: var(--border-hover);
}

.authority-label {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red-primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.authority-title {
    font-size: 0.8rem;
    color: var(--text-white);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.authority-desc {
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ========================================
   Email / CTA Section
   ======================================== */

.cta-section {
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    position: relative;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
    opacity: 0.5;
}

.cta-promise {
    margin-top: 30px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
    border-top: 1px solid var(--border-subtle);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-copy {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
}

.footer-tagline {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-top: 12px;
}

/* ========================================
   Page Headers (for inner pages)
   ======================================== */

.page-header {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.page-header p {
    max-width: 550px;
    margin: 0 auto;
    color: var(--text-mid);
}

/* ========================================
   Content Blocks (inner pages)
   ======================================== */

.content-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.content-block p {
    margin-bottom: 16px;
}

.timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.06);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red-primary);
    box-shadow: 0 0 10px var(--red-glow);
}

.timeline-step {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red-primary);
    font-weight: 600;
    margin-bottom: 6px;
}

.timeline-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-desc {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* Email updates list */
.updates-list {
    list-style: none;
    margin-top: 20px;
}

.updates-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.85rem;
    color: var(--text-mid);
}

.updates-list .check {
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
}

/* Policy cards */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.policy-card {
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
}

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

.policy-card p {
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ========================================
   Product Detail Page
   ======================================== */

.product-detail {
    padding-top: 120px;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

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

.product-gallery {
    display: grid;
    gap: 12px;
}

.product-gallery-main {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.product-gallery-thumb {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.active {
    border-color: var(--red-primary);
}

.product-details {
    padding-top: 20px;
}

.product-details .product-name {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.product-details .product-price {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.product-details .product-stock {
    margin-bottom: 24px;
    font-size: 0.72rem;
}

.product-description {
    margin-bottom: 30px;
}

.product-description p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
}

/* Specs table */
.specs-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-subtle);
}

.specs-table td {
    padding: 14px 0;
    font-size: 0.82rem;
    vertical-align: top;
}

.specs-table td:first-child {
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    width: 40%;
    font-size: 0.72rem;
}

.specs-table td:last-child {
    color: var(--text-light);
}

/* Size selector */
.size-selector {
    margin: 24px 0;
}

.size-selector label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 600;
    margin-bottom: 10px;
}

.size-options {
    display: flex;
    gap: 8px;
}

.size-option {
    padding: 10px 18px;
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-mid);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.size-option:hover,
.size-option.selected {
    border-color: var(--red-primary);
    color: var(--text-white);
    background: rgba(220, 38, 38, 0.1);
}

.production-notice {
    margin: 24px 0;
    padding: 18px 20px;
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.15);
    font-size: 0.78rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.production-notice strong {
    color: var(--text-white);
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

/* ========================================
   Animations
   ======================================== */

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease both;
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.fade-in-up-delay {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 900px) {
    .process-grid,
    .product-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    h1 {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 16px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border-subtle);
    }

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

    .nav-toggle {
        display: block;
    }

    h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    section {
        padding: 70px 20px;
    }

    .trust-bar {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .input-group {
        flex-direction: column;
    }

    input[type="email"] {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        border-bottom: none;
    }

    .btn {
        width: 100%;
    }

    .status {
        flex-direction: column;
        gap: 16px;
    }

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

@media (max-width: 600px) {
    .process-grid,
    .product-grid,
    .reviews-grid,
    .authority-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 1.8rem;
    }

    .page-header {
        padding-top: 110px;
    }

    .cta-box {
        padding: 40px 24px;
    }
}
