/* ============ CSS VARIABLES ============ */
:root {
    --primary: #1E88E5;
    --primary-light: #29A7F5;
    --primary-dark: #0F2D6B;
    --primary-hover: #1976D2;
    --accent: #e63946;
    --accent-light: #ff6b6b;
    --pink: #1E88E5;
    --pink-dark: #0F2D6B;
    --bg-light: #EAF6FF;
    --bg-white: #ffffff;
    --text-dark: #0F2D6B;
    --text-muted: #5a6c7d;
    --text-light: #ffffff;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 32px;
    --shadow-sm: 0 2px 8px rgba(30, 136, 229, 0.08);
    --shadow-md: 0 8px 30px rgba(30, 136, 229, 0.12);
    --shadow-lg: 0 20px 60px rgba(15, 45, 107, 0.15);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Quicksand', sans-serif;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

input, textarea {
    font-family: var(--font-body);
}

/* ============ CONTAINER ============ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

/* ============ SITE WRAPPER ============ */
.site-wrapper {
    position: relative;
    min-height: 100vh;
}

/* ============ NAVBAR ============ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 20px;
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.logo-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--primary);
    letter-spacing: 2px;
}

.logo-bubble {
    position: absolute;
    top: -10px;
    right: -18px;
    color: var(--pink);
    animation: floatBubble 3s ease-in-out infinite;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

#header.scrolled .logo-img {
    height: 60px;
}

.logo-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--primary);
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    background: rgba(30, 136, 229, 0.18);
    transform: scale(0.92);
    box-shadow: 0 0 0 8px rgba(30, 136, 229, 0.08);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border-radius: 50%;
    transition: var(--transition);
}

.search-btn:hover {
    background: rgba(30, 136, 229, 0.08);
    color: var(--primary-light);
}

/* ============ MENU BUTTON (BUBBLE STYLE) ============ */
.menu-btn {
    position: relative;
    z-index: 1001;
}

.menu-bubble-trigger {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-bubble {
    position: absolute;
    inset: 0;
    color: var(--primary);
    animation: pulseBubble 4s ease-in-out infinite;
}

.menu-bubble svg {
    width: 100%;
    height: 100%;
}

.hamburger {
    position: relative;
    width: 22px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--primary);
    border-radius: 4px;
    transition: var(--transition);
    transform-origin: center;
}

/* ============ OVERLAY MENU ============ */
.overlay-menu {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: var(--primary);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.overlay-menu.open {
    opacity: 1;
    visibility: visible;
}

.overlay-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    animation: morphShape 8s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -80px;
    animation-delay: 2s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 60%;
    animation-delay: 4s;
}

.close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 1002;
    color: var(--text-light);
}

.close-bubble {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-bubble svg {
    position: absolute;
}

.close-bubble .close-x {
    position: relative;
}

.overlay-nav {
    position: relative;
    z-index: 2;
}

.nav-list {
    text-align: center;
}

.nav-list li {
    margin: 8px 0;
    overflow: hidden;
}

.nav-link {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    padding: 8px 24px;
    position: relative;
    transition: var(--transition);
    letter-spacing: -0.5px;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease, color 0.3s ease;
}

.overlay-menu.open .nav-link {
    transform: translateY(0);
    opacity: 1;
}

.overlay-menu.open .nav-link:nth-child(1) { transition-delay: 0.1s; }
.overlay-menu.open .nav-link:nth-child(2) { transition-delay: 0.2s; }
.overlay-menu.open .nav-link:nth-child(3) { transition-delay: 0.3s; }
.overlay-menu.open .nav-link:nth-child(4) { transition-delay: 0.4s; }
.overlay-menu.open .nav-link:nth-child(5) { transition-delay: 0.5s; }

.nav-link:hover {
    color: var(--pink);
}

.nav-text {
    position: relative;
    display: inline-block;
}

.nav-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 100%;
    color: var(--pink);
}

.overlay-social {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.6s ease 0.6s;
}

.overlay-menu.open .overlay-social {
    opacity: 1;
}

.overlay-social a {
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.overlay-social a:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ============ HERO SECTION ============ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('../images/reed-inspire.jpg') center/cover no-repeat;
    z-index: 0;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.45) 0%, transparent 0%);
}

.hero-container {
    display: block;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 100vh;
    padding-right: 20px;
    margin-left: -60vh;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    box-shadow: 0 4px 20px rgba(15, 45, 107, 0.08);
    border: 1px solid rgba(30, 136, 229, 0.12);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #0F2D6B;
    margin-bottom: 36px;
    max-width: 550px;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--pink-dark);
    font-weight: 800;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-features {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(15, 45, 107, 0.1);
    border: 1px solid rgba(30, 136, 229, 0.12);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(30, 136, 229, 0.25);
}

.feature-item span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-img {
    max-height: 500px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(15, 45, 107, 0.2));
    animation: floatContainer 6s ease-in-out infinite;
}

.hero-values-bar {
    background: var(--primary);
    color: white;
    padding: 18px 0;
    position: relative;
    z-index: 2;
}

.values-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
}

.value-item i {
    font-size: 1.1rem;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 60px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 45, 107, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline-pill {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.btn-outline-pill:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============ HERO VISUAL ============ */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-showcase {
    position: relative;
    width: 280px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-bottle {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatContainer 6s ease-in-out infinite;
}

.bottle-body {
    width: 140px;
    height: 260px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px 20px 40px 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(26, 82, 118, 0.35);
    overflow: hidden;
}

.bottle-body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    border-radius: inherit;
}

.bottle-label {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.bottle-brand {
    display: block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: 3px;
}

.bottle-type {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 4px;
    letter-spacing: 1px;
}

.bottle-volume {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    margin-top: 6px;
    opacity: 0.9;
    letter-spacing: 2px;
}

.bottle-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255,255,255,0.08) 50%,
        transparent 70%
    );
    animation: shineSweep 4s ease-in-out infinite;
    pointer-events: none;
}

.bottle-handle {
    position: absolute;
    top: 10px;
    right: -20px;
    opacity: 0.6;
}

.bottle-cap {
    width: 60px;
    height: 24px;
    background: var(--primary-dark);
    border-radius: 8px 8px 4px 4px;
    margin-top: -4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.reusable-badge {
    position: absolute;
    bottom: -10px;
    right: -20px;
    background: var(--pink);
    color: white;
    border-radius: 60px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.4);
}

.reusable-badge svg {
    width: 22px;
    height: 22px;
}

/* ============ SCROLL INDICATOR ============ */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ============ SECTION HEADER ============ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(30, 136, 229, 0.1);
    color: var(--pink-dark);
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    border: 1px solid rgba(30, 136, 229, 0.18);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============ WHY CHOOSE REED SECTION ============ */
.why-choose-section {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--bg-light);
    padding: 32px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(30, 136, 229, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 1.5rem;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--pink);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(30, 136, 229, 0.35);
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-text {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ============ USP SECTION ============ */
.usp-section {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

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

.usp-card {
    background: var(--bg-white);
    padding: 36px 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
}

.usp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(30, 136, 229, 0.15);
}

.usp-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(30, 136, 229, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    transition: var(--transition);
}

.usp-card:hover .usp-icon {
    background: var(--pink);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(30, 136, 229, 0.35);
}

.usp-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.usp-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============ PRODUCTS SECTION ============ */
.products-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.product-img {
    height: 280px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.product-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent 60%);
}

.product-bottle-sm {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatContainer 5s ease-in-out infinite;
}

.bottle-body-sm {
    width: 80px;
    height: 150px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border-radius: 12px 12px 24px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255,255,255,0.25);
}

.bottle-brand-sm {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.9rem;
    color: white;
    letter-spacing: 2px;
}

.bottle-cap-sm {
    width: 35px;
    height: 14px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px 4px 2px 2px;
    margin-top: -2px;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--pink);
    color: white;
    box-shadow: 0 2px 10px rgba(30, 136, 229, 0.3);
}

.product-badge.new {
    background: #27ae60;
    box-shadow: 0 2px 10px rgba(39, 174, 96, 0.3);
}

.product-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    inset: 0;
    padding: 10px;
}

.coming-soon-img {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.coming-soon-photo {
    opacity: 0.35;
    filter: grayscale(30%);
}

.coming-soon-badge {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.coming-soon-badge i {
    font-size: 2rem;
    opacity: 0.5;
    animation: pulseBubble 2s ease-in-out infinite;
}

.product-info {
    padding: 24px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-meta i {
    margin-right: 4px;
    color: var(--pink);
}

/* ============ ABOUT SECTION ============ */
.about-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.about-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 24px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 16px 24px;
    background: white;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    min-width: 100px;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pink);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 600;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-placeholder {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    opacity: 0.6;
}

.about-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--pink);
    color: white;
    padding: 12px 18px;
    border-radius: 60px;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.3;
    box-shadow: 0 4px 20px rgba(30, 136, 229, 0.4);
}

/* ============ PROCESS SECTION ============ */
.process-section {
    padding: 100px 0;
    background: url('../images/reed--.png') center/cover no-repeat fixed;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    padding: 30px 24px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pink);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    margin: 0 auto 16px;
    font-family: var(--font-heading);
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.step-connector {
    flex-shrink: 0;
    color: var(--primary-light);
    opacity: 0.4;
    padding-top: 60px;
}

/* ============ TESTIMONIALS SECTION ============ */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 32px 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--pink);
    font-size: 0.9rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

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

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pink);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-info strong {
    display: block;
    font-size: 0.9rem;
    font-family: var(--font-heading);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    padding: 100px 0;
    background: url('../images/reed-bgg.png') center/cover no-repeat fixed;
}

.contact-inner {
    max-width: 900px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--bg-light);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.12);
    background: white;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item i {
    width: 44px;
    height: 44px;
    background: rgba(233, 30, 140, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.contact-social a {
    width: 44px;
    height: 44px;
    border: 1.5px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: white;
    transform: translateY(-3px);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
    color: white;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: white;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

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

.footer-links ul li a {
    font-size: 0.85rem;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--pink);
    padding-left: 4px;
}

.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.footer-newsletter p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 16px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    font-size: 0.85rem;
    background: rgba(255,255,255,0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255,255,255,0.15);
}

.newsletter-form button {
    padding: 12px 18px;
    background: var(--pink);
    color: var(--primary-dark);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    font-size: 0.9rem;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--pink-dark);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ============ STORES SECTION ============ */
.stores-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.store-card {
    background: var(--bg-light);
    padding: 36px 28px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
}

.store-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.store-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.store-card.featured .store-desc {
    color: rgba(255,255,255,0.8);
}

.store-card.featured .store-list li {
    color: rgba(255,255,255,0.85);
}

.store-card.featured .store-list i {
    color: var(--pink);
}

.store-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(233, 30, 140, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--pink);
}

.store-card.featured .store-icon {
    background: rgba(255,255,255,0.15);
    color: white;
}

.store-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.store-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.store-list {
    text-align: left;
    margin-bottom: 16px;
}

.store-list li {
    font-size: 0.85rem;
    padding: 6px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-list i {
    color: #27ae60;
    font-size: 0.85rem;
}

.store-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--pink);
    color: white;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============ CTA BANNER ============ */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05), transparent 60%);
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-text {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ NEW BUTTON VARIANTS ============ */
.btn-accent {
    background: var(--pink);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.35);
}

.btn-accent:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.45);
}

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

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-2px);
}

/* ============ RIPPLE BUTTON EFFECT ============ */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-ripple:hover::after {
    opacity: 1;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ KEYFRAMES ============ */
@keyframes floatBubble {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

@keyframes pulseBubble {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.08); opacity: 1; }
}

@keyframes floatContainer {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes morphShape {
    0%, 100% { border-radius: 50%; transform: scale(1) rotate(0deg); }
    33% { border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%; transform: scale(1.1) rotate(5deg); }
    66% { border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%; transform: scale(0.95) rotate(-3deg); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.6; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes shineSweep {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ============ MEDIA QUERIES ============ */
@media (max-width: 992px) {
    .hero-container {
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-left: 0;
    }

    .hero-title {
        font-size: 3.4rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

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

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

    .section-title {
        font-size: 2rem;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        display: none;
    }

    .nav-link {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 100vh;
        overflow: hidden;
        padding: 140px 0 40px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 7px 14px;
    }

    .hero-title {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 92vw;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .hero-features {
        gap: 12px;
    }

    .feature-item {
        flex: 1 1 120px;
        max-width: 180px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .feature-item span {
        font-size: 0.78rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

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

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

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

    .about-stats {
        flex-direction: column;
        align-items: center;
    }

    .nav-link {
        font-size: 1.6rem;
    }
}

/* ============ PRODUCTS SECTION ============ */
.products-section-new {
    padding: 100px 0;
    background: url('../images/reed-bgproduct.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

/* Header styles matching the reference image layout */
.prod-header {
    text-align: center;
    margin-bottom: 50px;
}

.prod-tag {
    display: inline-block;
    padding: 6px 18px;
    background: #ffffff;
    color: #0f3067;
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(15, 48, 103, 0.05);
    border: 1px solid rgba(15, 48, 103, 0.1);
}

.prod-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #072a6b;
    letter-spacing: -0.5px;
}

.prod-desc {
    color: #0f3067;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Grid layout matching mockup - 3 columns, featured card full width */
.products-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Featured card spans all 3 columns */
.pcard--featured {
    grid-column: 1 / -1;
}

/* Base Card Styling - vertical stack layout by default (for the bottom 3 cards) */
.pcard {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: #ffffff;
    border-radius: 12px;
    overflow: visible;
    border: 2px solid #ffffff;
    box-shadow: 0 10px 30px rgba(15, 45, 107, 0.06);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(15, 45, 107, 0.1);
}

.pcard--soon {
    background: #fbfdff;
}

/* Featured card is horizontal side-by-side */
.pcard--featured {
    flex-direction: row;
}

/* Image Wrappers take full width by default (for vertical stack cards) */
.pcard__img-wrap {
    width: 100%;
    height: 250px;
    overflow: visible;
    background: #ffffff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 24px;
    border-radius: 12px 12px 0 0;
}

/* Overrides for horizontal featured card image wrap */
.pcard--featured .pcard__img-wrap {
    width: 42%;
    height: auto;
    min-height: 340px;
    border-radius: 12px 0 0 12px;
}

.pcard__img-wrap--bags {
    background: #ffffff;
}

.pcard__img {
    max-width: 95%;
    max-height: 250px;
    object-fit: contain;
}

/* Product medallions overlapping the top left */
.pcard__medallion {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pcard__medallion--gold {
    background: linear-gradient(135deg, #d4af37 0%, #aa8c2c 100%);
    color: #ffffff;
    border: 2px solid #ffffff;
}

.pcard__medallion--silver {
    background: linear-gradient(135deg, #a6a6a6 0%, #808080 100%);
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 0.58rem;
}

.pcard__medallion--soon {
    background: #ffffff;
    color: #072a6b;
    border: 2px solid #072a6b;
    font-size: 0.5rem;
}

.pcard__medallion--soon i {
    font-size: 0.65rem;
    margin-bottom: 2px;
}

/* Body Content takes full width by default (for vertical stack cards) */
.pcard__body {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    width: 100%;
}

/* Overrides for horizontal featured card body */
.pcard--featured .pcard__body {
    width: 58%;
    padding: 40px 48px;
}

.pcard__label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #728197;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.pcard__name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: #072a6b;
    margin-bottom: 12px;
    line-height: 1.2;
}

.pcard--featured .pcard__name {
    font-size: 2.1rem;
    margin-bottom: 16px;
}

.pcard__desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Clean list style with simple checkmarks */
.pcard__features {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pcard__features li {
    font-size: 0.88rem;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.pcard__check {
    color: #072a6b;
    font-weight: 900;
    font-size: 1rem;
}

.pcard__check--muted {
    color: #728197;
}

/* Ocean Blue / Navy Pill Button */
.pcard__btn {
    align-self: flex-start;
    padding: 12px 28px;
    background: #072a6b;
    color: #ffffff;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    transition: background 0.2s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(7, 42, 107, 0.15);
}

.pcard__btn:hover {
    background: #0f3ba0;
    transform: translateY(-1px);
}

/* Outline Notify Me Button */
.pcard__btn--outline {
    background: #ffffff;
    color: #072a6b;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    align-self: flex-start;
}

.pcard__btn--outline:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
}

/* ============ OUR STORY SECTION ============ */

.story-section {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/reed-storybg.jpg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

/* Subtle background pattern overlay */
.story-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(30, 136, 229, 0.04) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(41, 167, 245, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.story-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.story-single {
    max-width: 800px;
    margin: 0 auto;
}

/* ============ LEFT COLUMN - IMAGE ============ */
.story-image-col {
    position: sticky;
    top: 120px;
}

.story-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.story-image-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 3/4;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 
        0 24px 80px rgba(15, 45, 107, 0.1),
        0 8px 24px rgba(30, 136, 229, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: box-shadow 0.5s ease;
}

.story-image-frame:hover {
    box-shadow: 
        0 28px 90px rgba(15, 45, 107, 0.14),
        0 10px 30px rgba(30, 136, 229, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Story image photo */
.story-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-image-frame:hover .story-image-photo {
    transform: scale(1.04);
}

.story-image-glow {
    position: absolute;
    top: -25%;
    left: -15%;
    width: 130%;
    height: 130%;
    background: radial-gradient(ellipse at 35% 25%, rgba(41, 167, 245, 0.18) 0%, transparent 55%);
    pointer-events: none;
    animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.04); }
}

.story-image-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.story-plant-icon {
    position: relative;
    z-index: 3;
    animation: plantSway 7s ease-in-out infinite;
    filter: drop-shadow(0 6px 24px rgba(30, 136, 229, 0.25));
}

@keyframes plantSway {
    0%, 100% { transform: rotate(-1.5deg) translateY(0); }
    25% { transform: rotate(0deg) translateY(-3px); }
    50% { transform: rotate(1.5deg) translateY(0); }
    75% { transform: rotate(0deg) translateY(3px); }
}

/* Water ripples */
.story-water {
    position: absolute;
    bottom: 12%;
    left: 0;
    right: 0;
    height: 45%;
    z-index: 2;
}

.water-ripple {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 1.5px solid rgba(30, 136, 229, 0.12);
    animation: rippleExpand 3.5s ease-out infinite;
}

.water-ripple.r1 {
    width: 100px;
    height: 25px;
    animation-delay: 0s;
}

.water-ripple.r2 {
    width: 160px;
    height: 40px;
    animation-delay: 1.2s;
}

.water-ripple.r3 {
    width: 220px;
    height: 55px;
    animation-delay: 2.4s;
}

@keyframes rippleExpand {
    0% { opacity: 0.5; transform: translateX(-50%) scale(0.7); }
    100% { opacity: 0; transform: translateX(-50%) scale(1.6); }
}

/* Light rays */
.story-light-rays {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.ray {
    position: absolute;
    top: -5%;
    width: 1.5px;
    height: 55%;
    background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
    transform-origin: top center;
    animation: rayGlow 5s ease-in-out infinite;
}

.ray-1 { left: 22%; transform: rotate(-6deg); animation-delay: 0s; }
.ray-2 { left: 48%; transform: rotate(0deg); animation-delay: 1.7s; }
.ray-3 { left: 74%; transform: rotate(6deg); animation-delay: 3.4s; }

@keyframes rayGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.7; }
}

/* Image caption */
.story-image-caption {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(30, 136, 229, 0.08);
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.04em;
    box-shadow: 0 4px 20px rgba(30, 136, 229, 0.06);
    transition: all 0.3s ease;
}

.story-image-caption:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 24px rgba(30, 136, 229, 0.1);
}

.caption-icon {
    color: var(--primary);
    font-size: 0.8rem;
}

/* ============ CONTENT COLUMN ============ */
.story-content-col {
    padding-top: 4px;
    text-align: center;
}

/* Label */
.story-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}

.story-label-line {
    display: block;
    width: 48px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.story-label-text {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--primary);
    text-transform: uppercase;
}

/* Heading */
.story-heading {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.12;
    color: var(--text-dark);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.story-heading-accent {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.story-heading-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), rgba(30, 136, 229, 0.2));
    border-radius: 2px;
    opacity: 0.35;
}

/* Intro paragraph */
.story-intro {
    margin-bottom: 44px;
    text-align: center;
}

.story-intro p {
    font-family: var(--font-body);
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.story-intro p:first-child {
    font-size: 1.18rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.75;
}

.story-intro-strong {
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    border-top: 1px solid rgba(30, 136, 229, 0.08);
    margin-top: 10px;
    padding-top: 18px;
}

/* ============ FEATURE CARDS ============ */
.story-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 52px;
}

.story-card {
    display: flex;
    gap: 20px;
    padding: 26px 28px;
    background: #ffffff;
    border: 1px solid rgba(30, 136, 229, 0.06);
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 4px rgba(30, 136, 229, 0.03);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transform: scaleY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card:hover {
    transform: translateX(8px);
    border-color: rgba(30, 136, 229, 0.18);
    box-shadow: 0 12px 36px rgba(30, 136, 229, 0.1);
}

.story-card:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

.story-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EAF6FF, #D4E8F5);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.story-card:hover .story-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 8px 24px rgba(30, 136, 229, 0.25);
}

.story-card:hover .story-card-icon svg {
    stroke: #ffffff !important;
}

.story-card-body {
    position: relative;
    z-index: 1;
}

.story-card-body h4 {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.story-card-body p {
    font-family: var(--font-body);
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ============ PREMIUM CALLOUT BOX ============ */
.story-callout {
    position: relative;
    padding: 40px 44px;
    background: linear-gradient(135deg, #0B2557 0%, #153670 40%, #0F2D6B 70%, #0B2557 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(15, 45, 107, 0.3),
        0 4px 16px rgba(15, 45, 107, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.callout-glow {
    position: absolute;
    top: -40%;
    right: -25%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(41, 167, 245, 0.12), transparent 70%);
    pointer-events: none;
    animation: calloutGlow 6s ease-in-out infinite;
}

.callout-glow-secondary {
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(41, 167, 245, 0.08), transparent 70%);
    pointer-events: none;
    animation: calloutGlowSecondary 6s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes calloutGlow {
    0%, 100% { opacity: 0.4; transform: translate(0, 0) scale(1); }
    50% { opacity: 0.8; transform: translate(-30px, 30px) scale(1.1); }
}

@keyframes calloutGlowSecondary {
    0%, 100% { opacity: 0.3; transform: translate(0, 0) scale(1); }
    50% { opacity: 0.7; transform: translate(20px, -20px) scale(1.08); }
}

.callout-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.callout-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(41, 167, 245, 0.12);
    border: 1px solid rgba(41, 167, 245, 0.25);
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #29A7F5;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.callout-values {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.callout-values span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.callout-values .callout-separator {
    color: rgba(41, 167, 245, 0.4);
    font-weight: 300;
    font-size: 1.2rem;
}

.callout-values span:nth-child(3) {
    color: #29A7F5;
}

.callout-tagline {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.6;
}

.callout-divider {
    width: 80px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(41, 167, 245, 0.4), transparent);
    margin: 0 auto 24px;
    border-radius: 2px;
}

.callout-brand {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.06em;
}

.callout-sub {
    font-weight: 400;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .story-section {
        padding: 100px 0;
    }

    .story-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 900px) {
    .story-section {
        padding: 80px 0;
    }

    .story-content-col {
        padding-top: 0;
    }

    .story-heading {
        font-size: 2.4rem;
    }

    .story-callout {
        padding: 32px 28px;
    }

    .callout-values span {
        font-size: 1.25rem;
    }

    .callout-brand {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .story-section {
        padding: 60px 0;
    }

    .story-heading {
        font-size: 2rem;
    }

    .story-intro p {
        font-size: 1rem;
    }

    .story-intro p:first-child {
        font-size: 1.05rem;
    }

    .story-card {
        padding: 20px;
        gap: 16px;
    }

    .story-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .story-card-body h4 {
        font-size: 0.95rem;
    }

    .story-card-body p {
        font-size: 0.88rem;
    }

    .story-callout {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .callout-values {
        gap: 14px;
    }

    .callout-values span {
        font-size: 1.1rem;
    }

    .callout-brand {
        font-size: 1.2rem;
    }

    .callout-sub {
        font-size: 0.8rem;
    }
}

/* ============ PRODUCTS RESPONSIVE ============ */
@media (max-width: 768px) {
    .products-grid-new {
        grid-template-columns: 1fr;
    }

    .pcard {
        flex-direction: column;
    }

    .pcard--featured {
        flex-direction: column;
    }

    .pcard__img-wrap {
        width: 100%;
        height: 280px;
        border-radius: 12px 12px 0 0;
    }

    .pcard__body {
        width: 100%;
        padding: 24px 24px;
    }

    .pcard__name {
        font-size: 1.25rem;
    }

    .pcard__btn,
    .pcard__btn--outline {
        align-self: stretch;
    }

    .pcard--featured .pcard__name {
        font-size: 1.25rem;
    }

    .pcard__desc {
        font-size: 0.9rem;
    }

    .pcard__features {
        margin-bottom: 20px;
    }

    .pcard--featured .pcard__body {
        padding: 24px;
        width: 100%;
    }

    .pcard--featured .pcard__img-wrap {
        width: 100%;
        height: 280px;
        min-height: unset;
        border-radius: 12px 12px 0 0;
    }

    .pcard--featured .pcard__medallion {
        display: none;
    }
}
