/* =======================================
   LIQUID IV — Design System & Styles
   Brand palette: Cerulean, Lime Green, Clean Whites
   ======================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Brand Colors */
    --cerulean: #00A2DD;
    --cerulean-dark: #0088BB;
    --cerulean-light: #33B5E5;
    --lime: #C7FF41;
    --lime-dark: #A8DD20;
    --christi: #54AE11;
    --christi-dark: #429A0D;

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F6FAFC;
    --light-gray: #EDF3F7;
    --gray-200: #D6E0E8;
    --gray-400: #9AADBC;
    --gray-600: #5A7082;
    --slate: #2E3D4F;
    --dark: #1A2530;

    /* Functional Colors */
    --bg-primary: var(--white);
    --bg-alt: var(--off-white);
    --text-primary: var(--slate);
    --text-secondary: var(--gray-600);
    --accent: var(--cerulean);
    --accent-hover: var(--cerulean-dark);
    --accent-glow: rgba(0, 162, 221, 0.25);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 30px var(--accent-glow);

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --container-max: 1200px;
    --header-height: 72px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-hover);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

strong {
    color: var(--text-primary);
}

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-contained {
    max-width: 1000px;
}

/* ---------- Glass Card ---------- */
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cerulean) 0%, var(--cerulean-dark) 100%);
    color: var(--white);
    border-color: var(--cerulean);
    box-shadow: 0 4px 16px rgba(0, 162, 221, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 162, 221, 0.5);
    color: var(--white);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 1.1rem;
}

/* ================================
   HEADER
   ================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cerulean) 30%, var(--christi) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo:hover {
    opacity: 0.85;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cerulean);
    border-radius: 2px;
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--cerulean);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--slate);
    border-radius: 2px;
    transition: all var(--transition);
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background:
        linear-gradient(165deg,
            #001F33 0%,
            #003A5C 20%,
            var(--cerulean) 50%,
            var(--cerulean-light) 75%,
            #62D1F0 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(199, 255, 65, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 162, 221, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--off-white), transparent);
    pointer-events: none;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: url('hero-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    mix-blend-mode: overlay;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-2xl) 0;
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.45rem 1.2rem;
    background: rgba(199, 255, 65, 0.2);
    border: 1px solid rgba(199, 255, 65, 0.4);
    color: var(--lime);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}

.hero h1 {
    color: var(--white);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

/* Trust Bar */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    margin: 0 auto;
    max-width: 520px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--lime);
}

.trust-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
}

/* ================================
   SECTIONS — Common
   ================================ */
.section {
    padding: var(--space-2xl) 0;
}

.section-alt {
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: linear-gradient(135deg, rgba(0, 162, 221, 0.1), rgba(84, 174, 17, 0.1));
    color: var(--cerulean);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.section-header h2 {
    margin-top: var(--space-xs);
}

.section-intro {
    text-align: center;
    max-width: 750px;
    margin: -1.5rem auto var(--space-xl) auto;
    font-size: 1.05rem;
}

/* ================================
   WHAT IS LIQUID IV
   ================================ */
.content-grid {
    display: grid;
    gap: var(--space-xl);
}

.two-col {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
}

.content-text p {
    font-size: 1.05rem;
    line-height: 1.85;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.info-card {
    padding: var(--space-lg);
}

.info-card h3 {
    margin-bottom: var(--space-md);
    color: var(--cerulean);
    font-size: 1.2rem;
}

.quick-facts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.quick-facts li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.fact-icon {
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ================================
   BENEFITS
   ================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.benefit-card {
    padding: var(--space-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cerulean), var(--lime));
    opacity: 0;
    transition: opacity var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 2.2rem;
    margin-bottom: var(--space-sm);
}

.benefit-card h3 {
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.93rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* ================================
   FLAVORS
   ================================ */
.flavors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.flavor-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-md) var(--space-lg);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.flavor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: hsl(var(--flavor-hue, 200), 70%, 55%);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.flavor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: hsl(var(--flavor-hue, 200), 70%, 75%);
}

.flavor-emoji {
    font-size: 2.8rem;
    margin-bottom: var(--space-sm);
}

.flavor-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.flavor-card p {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.flavor-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(0, 162, 221, 0.1), rgba(199, 255, 65, 0.15));
    color: var(--cerulean-dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 162, 221, 0.2);
}

.flavors-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ================================
   CTT EXPLAINER
   ================================ */
.ctt-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.ctt-step {
    padding: var(--space-lg);
    position: relative;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--cerulean), var(--cerulean-dark));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50%;
    margin-bottom: var(--space-sm);
}

.ctt-step h3 {
    margin-bottom: 0.75rem;
}

.ctt-step p {
    font-size: 0.93rem;
    margin-bottom: 0;
}

.ctt-result {
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(0, 162, 221, 0.08), rgba(84, 174, 17, 0.08));
    border: 1px solid rgba(0, 162, 221, 0.15);
    text-align: center;
}

.ctt-result-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 0;
}

/* ================================
   INGREDIENTS TABLE
   ================================ */
.ingredients-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-md);
}

.ingredients-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.ingredients-table thead {
    background: linear-gradient(135deg, var(--cerulean), var(--cerulean-dark));
}

.ingredients-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ingredients-table td {
    padding: 0.9rem 1.25rem;
    font-size: 0.93rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--light-gray);
}

.ingredients-table tbody tr:hover {
    background: rgba(0, 162, 221, 0.03);
}

.ingredients-table tbody tr:last-child td {
    border-bottom: none;
}

.ingredients-note {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
    padding: 0 var(--space-xs);
}

/* ================================
   FAQ
   ================================ */
.faq-list {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item[open] {
    border-color: rgba(0, 162, 221, 0.3);
    box-shadow: 0 4px 16px rgba(0, 162, 221, 0.08);
}

.faq-question {
    padding: var(--space-md) var(--space-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    transition: color var(--transition);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--cerulean);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item[open] .faq-question {
    color: var(--cerulean);
}

.faq-answer {
    padding: 0 var(--space-md) var(--space-md);
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
    background: linear-gradient(165deg, #001F33 0%, var(--cerulean-dark) 50%, var(--cerulean) 100%);
    padding: var(--space-2xl) 0;
}

.cta-inner {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-inner h2 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto var(--space-lg) auto;
}

/* ================================
   FOOTER
   ================================ */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cerulean-light), var(--lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--lime);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--space-lg);
}

.footer-disclaimer {
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-sm);
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0;
}

/* ================================
   PAGE HERO (Subpages)
   ================================ */
.page-hero {
    position: relative;
    padding-top: calc(var(--header-height) + var(--space-2xl));
    padding-bottom: var(--space-2xl);
    background:
        linear-gradient(165deg,
            #001F33 0%,
            #003A5C 30%,
            var(--cerulean) 60%,
            var(--cerulean-light) 100%);
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 70%, rgba(199, 255, 65, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(0, 162, 221, 0.2) 0%, transparent 50%);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    pointer-events: none;
}

.page-hero-compact {
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
}

.page-hero h1 {
    position: relative;
    z-index: 1;
    color: var(--white);
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.page-hero-sub {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   LEGAL CONTENT (Privacy, Terms, etc.)
   ================================ */
.legal-content {
    max-width: 860px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
    font-size: 1.35rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    margin-top: var(--space-md);
    margin-bottom: 0.5rem;
    color: var(--cerulean-dark);
    font-size: 1.1rem;
}

.legal-content p {
    font-size: 0.97rem;
    line-height: 1.85;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.legal-content a {
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(0, 162, 221, 0.3);
    text-underline-offset: 3px;
}

.legal-content a:hover {
    text-decoration-color: var(--cerulean);
}

/* ================================
   CONTACT PAGE
   ================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-input:focus {
    border-color: var(--cerulean);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235A7082' d='M6 8.825L.375 3.2l.85-.85L6 7.125 10.775 2.35l.85.85z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-error {
    display: none;
    font-size: 0.82rem;
    color: #E74C3C;
    font-weight: 500;
}

.input-error {
    border-color: #E74C3C !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15) !important;
}

.form-success {
    text-align: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(0, 162, 221, 0.05), rgba(84, 174, 17, 0.05));
    border: 1px solid rgba(84, 174, 17, 0.2);
    border-radius: var(--radius-md);
}

.success-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.form-success h3 {
    color: var(--christi);
    margin-bottom: 0.5rem;
}

.form-success p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ================================
   SCROLL ANIMATIONS
   ================================ */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for grid items */
.benefits-grid .animate-in:nth-child(1) {
    transition-delay: 0ms;
}

.benefits-grid .animate-in:nth-child(2) {
    transition-delay: 80ms;
}

.benefits-grid .animate-in:nth-child(3) {
    transition-delay: 160ms;
}

.benefits-grid .animate-in:nth-child(4) {
    transition-delay: 240ms;
}

.benefits-grid .animate-in:nth-child(5) {
    transition-delay: 320ms;
}

.benefits-grid .animate-in:nth-child(6) {
    transition-delay: 400ms;
}

.flavors-grid .animate-in:nth-child(1) {
    transition-delay: 0ms;
}

.flavors-grid .animate-in:nth-child(2) {
    transition-delay: 60ms;
}

.flavors-grid .animate-in:nth-child(3) {
    transition-delay: 120ms;
}

.flavors-grid .animate-in:nth-child(4) {
    transition-delay: 180ms;
}

.flavors-grid .animate-in:nth-child(5) {
    transition-delay: 240ms;
}

.flavors-grid .animate-in:nth-child(6) {
    transition-delay: 300ms;
}

.flavors-grid .animate-in:nth-child(7) {
    transition-delay: 360ms;
}

.flavors-grid .animate-in:nth-child(8) {
    transition-delay: 420ms;
}

.ctt-steps .animate-in:nth-child(1) {
    transition-delay: 0ms;
}

.ctt-steps .animate-in:nth-child(2) {
    transition-delay: 120ms;
}

.ctt-steps .animate-in:nth-child(3) {
    transition-delay: 240ms;
}

/* ================================
   RESPONSIVE — Tablet
   ================================ */
@media (max-width: 992px) {
    .two-col {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flavors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ctt-steps {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* ================================
   RESPONSIVE — Mobile
   ================================ */
@media (max-width: 640px) {
    :root {
        --space-2xl: 3.5rem;
        --space-xl: 2.5rem;
    }

    /* Mobile Nav */
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: var(--space-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 0.85rem 0;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-link::after {
        display: none;
    }

    /* Hero */
    .hero {
        min-height: 80vh;
    }

    .hero-content {
        padding: var(--space-xl) 0;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: var(--space-sm);
        padding: var(--space-md);
    }

    .trust-divider {
        width: 60px;
        height: 1px;
    }

    /* Grids */
    .benefits-grid,
    .flavors-grid {
        grid-template-columns: 1fr;
    }

    .ctt-steps {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    /* Table scroll */
    .ingredients-table th,
    .ingredients-table td {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}