/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #fff;
}

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

/* Advertorial Notice */
.advertorial-notice {
    background-color: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 0;
    text-align: center;
}

.advertorial-notice p {
    font-size: 11px;
    font-weight: 700;
    color: #718096;
    letter-spacing: 1.5px;
}

/* Header */
.header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: #1a365d;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.home-btn {
    background-color: #1a365d;
    color: #fff;
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.2);
}

.home-btn:hover {
    background-color: #2d3748;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #e6f7ff 0%, #ffffff 100%);
    padding: 100px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 52px;
    color: #1a365d;
    margin-bottom: 24px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-features {
    list-style: none;
    margin-bottom: 40px;
}

.hero-features li {
    font-size: 17px;
    color: #2d3748;
    margin-bottom: 14px;
    padding-left: 0;
    font-weight: 500;
}

.hero-price {
    display: inline-block;
    background-color: #1a365d;
    color: #fff;
    padding: 20px 48px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 24px;
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.2);
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

a.hero-price:hover {
    background-color: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(26, 54, 93, 0.3);
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    opacity: 1 !important; /* Ensure hero image is always visible */
    display: block;
}

/* Lead Form Section */
.lead-form-section {
    background-color: #f7fafc;
    padding: 80px 0;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
}

.form-wrapper h2 {
    color: #1a365d;
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.form-wrapper > p {
    color: #718096;
    margin-bottom: 36px;
    font-size: 17px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-group input {
    width: 100%;
    padding: 16px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #00b8d4;
    box-shadow: 0 0 0 3px rgba(0, 184, 212, 0.1);
}

.form-group input.invalid {
    border-color: #e53e3e;
    background-color: #fff5f5;
}

.form-group input.invalid:focus {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15);
}

.form-group .error-message {
    display: block;
    color: #e53e3e;
    font-size: 13px;
    margin-top: 6px;
    text-align: left;
    min-height: 18px;
}

.form-group .error-message:empty {
    display: none;
}

.cta-button {
    background-color: #1a365d;
    color: #fff;
    padding: 16px 48px;
    border: none;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(26, 54, 93, 0.3);
}

.cta-button:hover {
    background-color: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.4);
}

/* Product Info Section */
.product-info {
    padding: 100px 0;
    background-color: #fff;
}

.product-info ul{
    list-style: none !important;
    margin-left: 0 !important; /* inline styles on some legal pages */
    padding-left: 0 !important;
}

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

.info-card {
    text-align: center;
    padding: 40px 32px;
    border-radius: 20px;
    background: #f7fafc;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: #00b8d4;
}

.info-icon {
    font-size: 56px;
    margin-bottom: 24px;
}

.info-card h3 {
    color: #1a365d;
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}

.info-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 15px;
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, #00b8d4 0%, #0097a7 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.why-choose h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 19px;
    margin-bottom: 60px;
    opacity: 0.95;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.feature-item {
    background: rgba(255,255,255,0.15);
    padding: 36px 28px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-4px);
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-item p {
    opacity: 0.95;
    font-size: 15px;
}

/* Ingredients Section */
.ingredients {
    padding: 100px 0;
    background-color: #f7fafc;
}

.ingredients h2 {
    text-align: center;
    color: #1a365d;
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.ingredients .section-subtitle {
    text-align: center;
    color: #718096;
    margin-bottom: 70px;
    font-size: 19px;
}

.ingredient-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
}

.ingredient-card.reverse {
    direction: rtl;
}

.ingredient-card.reverse .ingredient-content {
    direction: ltr;
}

.ingredient-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.ingredient-content h3 {
    color: #1a365d;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.ingredient-content p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 16px;
}

/* Product Features */
.product-features {
    padding: 100px 0;
    background-color: #fff;
}

.product-features h2 {
    text-align: center;
    color: #1a365d;
    font-size: 44px;
    margin-bottom: 60px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.feature-box {
    background: linear-gradient(135deg, #e6f7ff 0%, #f7fafc 100%);
    padding: 36px 32px;
    border-radius: 20px;
    border-left: 5px solid #00b8d4;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.feature-box:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.feature-box h4 {
    color: #1a365d;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-box p {
    color: #4a5568;
    font-size: 15px;
}

/* How to Use Section */
.how-to-use {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #e6f7ff 100%);
}

.how-to-use h2 {
    text-align: center;
    color: #1a365d;
    font-size: 44px;
    margin-bottom: 70px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.step {
    background: #fff;
    padding: 48px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.step:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00b8d4 0%, #0097a7 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 6px 20px rgba(0, 184, 212, 0.3);
}

.step h3 {
    color: #1a365d;
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.step p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 15px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    padding: 100px 0;
    color: #fff;
}

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

.cta-content h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cta-content > p {
    font-size: 19px;
    margin-bottom: 48px;
    opacity: 0.95;
}

.final-cta .lead-form {
    background: rgba(255,255,255,0.1);
    padding: 48px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

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

.final-cta .form-group input {
    background: #fff;
}

.final-cta .cta-button {
    width: 100%;
    background-color: #00b8d4;
}

.final-cta .cta-button:hover {
    background-color: #0097a7;
}

/* Footer */
.footer {
    background-color: #1a365d;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-contact h4,
.footer-links h4,
.footer-legal h4 {
    color: #00b8d4;
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-contact p,
.footer-legal p {
    margin-bottom: 12px;
    color: #cbd5e0;
    font-size: 15px;
}

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

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

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: #00b8d4;
}

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

.footer-disclosures h4 {
    color: #00b8d4;
    font-size: 18px;
    margin-bottom: 28px;
    font-weight: 700;
}

.disclosure {
    background: rgba(255,255,255,0.05);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 20px;
    border-left: 4px solid #00b8d4;
}

.disclosure p {
    font-size: 13px;
    line-height: 1.7;
    color: #cbd5e0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #a0aec0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-text h1 {
        font-size: 38px;
    }
    
    .hero-image {
        text-align: center;
    }
    
    .ingredient-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }
    
    .ingredient-card.reverse {
        direction: ltr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .info-grid,
    .features-grid,
    .features-list,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: 36px 28px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .why-choose h2,
    .ingredients h2,
    .product-features h2,
    .how-to-use h2,
    .cta-content h2 {
        font-size: 32px;
    }
    
    .ingredient-content h3 {
        font-size: 26px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f7fafc;
}

::-webkit-scrollbar-thumb {
    background: #00b8d4;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0097a7;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #00b8d4 #f7fafc;
}

/* ===== Orinova Dark Aurora Theme (Overrides) ===== */
:root{
    --bg0:#060816;
    --bg1:#071225;
    --surface:rgba(255,255,255,0.06);
    --surface2:rgba(255,255,255,0.09);
    --border:rgba(255,255,255,0.14);
    --text:#EAF2FF;
    --muted:#A9B3C7;
    --muted2:#7E8AA5;
    --accent:#22D3EE;
    --accent2:#7C3AED;
    --accent3:#34D399;
    --danger:#FB7185;
    --shadow:rgba(0,0,0,0.45);
    --radius:22px;
    --container:1200px;
}

/* Base */
html { scroll-behavior:smooth; }
body{
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
    background:
        radial-gradient(1200px 800px at 10% -10%, rgba(124,58,237,0.35), transparent 55%),
        radial-gradient(900px 700px at 90% 0%, rgba(34,211,238,0.25), transparent 50%),
        radial-gradient(700px 500px at 30% 90%, rgba(52,211,153,0.14), transparent 55%),
        linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 100%) !important;
    color:var(--text) !important;
    line-height:1.65 !important;
}

.container{
    max-width: var(--container) !important;
}

/* Links */
a{ color:var(--accent) !important; }
a:hover{ color:var(--accent2) !important; }

/* Focus ring */
:focus-visible{
    outline: 3px solid rgba(34,211,238,0.55) !important;
    outline-offset: 2px !important;
}

/* Advertorial */
.advertorial-notice{
    background: rgba(0,0,0,0.25) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    backdrop-filter: blur(10px) !important;
}
.advertorial-notice p{
    color: rgba(234,242,255,0.65) !important;
    letter-spacing: 2px !important;
}

/* Header */
.header{
    background: rgba(6,8,22,0.72) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 10px 35px rgba(0,0,0,0.25) !important;
    backdrop-filter: blur(16px) !important;
    position: sticky !important;
}

.logo h2{
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif !important;
    color: var(--text) !important;
    letter-spacing: -0.4px !important;
    font-size: 24px !important;
    font-weight: 800 !important;
}

.home-btn{
    background: linear-gradient(135deg, rgba(34,211,238,0.95), rgba(124,58,237,0.95)) !important;
    box-shadow: 0 12px 35px rgba(124,58,237,0.25) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
}
.home-btn:hover{
    transform: translateY(-1px) !important;
    box-shadow: 0 16px 45px rgba(34,211,238,0.18) !important;
}

/* Hero */
.hero{
    position: relative !important;
    overflow: hidden !important;
    padding: 92px 0 !important;
    background:
        radial-gradient(900px 520px at 15% 20%, rgba(124,58,237,0.35), transparent 55%),
        radial-gradient(800px 520px at 80% 30%, rgba(34,211,238,0.28), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0) 70%) !important;
}
.hero::after{
    content:"";
    position:absolute;
    inset:-2px;
    background-image:
        repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 9px);
    opacity:0.25;
    pointer-events:none;
    mix-blend-mode: overlay;
}

.hero-content{
    position: relative !important;
    z-index: 1 !important;
}

.hero-text h1{
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif !important;
    color: var(--text) !important;
    font-size: 56px !important;
    letter-spacing: -0.9px !important;
}

.hero-subtitle{
    color: rgba(234,242,255,0.74) !important;
    font-size: 20px !important;
}

.hero-features li{
    color: rgba(234,242,255,0.78) !important;
}
.hero-features li::marker{
    color: rgba(34,211,238,0.75) !important;
}

.hero-price{
    background: linear-gradient(135deg, rgba(34,211,238,0.98), rgba(124,58,237,0.98)) !important;
    box-shadow: 0 16px 55px rgba(34,211,238,0.16) !important;
    border: 1px solid rgba(255,255,255,0.22) !important;
}
.hero-price:hover{
    transform: translateY(-2px) !important;
    box-shadow: 0 20px 65px rgba(124,58,237,0.22) !important;
}

.hero-image img{
    border-radius: 28px !important;
    box-shadow: 0 28px 90px rgba(0,0,0,0.45) !important;
}

/* Sections base */
.lead-form-section{
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%) !important;
    padding: 88px 0 !important;
}

.form-wrapper{
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    backdrop-filter: blur(16px) !important;
    box-shadow: 0 22px 70px rgba(0,0,0,0.35) !important;
    border-radius: var(--radius) !important;
}
.form-wrapper h2{
    color: var(--text) !important;
}
.form-wrapper > p{
    color: rgba(234,242,255,0.68) !important;
}

.lead-form .form-group input{
    background: rgba(0,0,0,0.18) !important;
    color: var(--text) !important;
    border-color: rgba(255,255,255,0.18) !important;
}
.lead-form .form-group input::placeholder{
    color: rgba(234,242,255,0.45) !important;
}
.lead-form .form-group input:focus{
    border-color: rgba(34,211,238,0.65) !important;
    box-shadow: 0 0 0 4px rgba(34,211,238,0.14) !important;
}
.lead-form .form-group input.invalid{
    border-color: rgba(251,113,133,0.7) !important;
    background-color: rgba(251,113,133,0.08) !important;
}

.cta-button{
    background: linear-gradient(135deg, rgba(124,58,237,0.98), rgba(34,211,238,0.95)) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    box-shadow: 0 16px 50px rgba(124,58,237,0.18) !important;
}
.cta-button:hover{
    transform: translateY(-2px) !important;
    box-shadow: 0 22px 70px rgba(34,211,238,0.16) !important;
}

/* Product info */
.product-info{
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%) !important;
    color: var(--text) !important;
}
.product-info *{
    box-sizing: border-box;
}
.product-info h2, .product-info h1, .product-info h3{
    color: var(--text) !important;
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif !important;
}
.product-info p, .product-info li, .product-info ul{
    color: var(--muted) !important;
}
.product-info a{
    color: var(--accent) !important;
}

.info-grid{
    margin-top: 52px !important;
}
.info-card{
    text-align: center !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.22) !important;
    border-radius: 26px !important;
}
.info-card:hover{
    transform: translateY(-8px) !important;
    border-color: rgba(34,211,238,0.5) !important;
    box-shadow: 0 26px 75px rgba(0,0,0,0.35) !important;
}
.info-card h3{
    color: var(--text) !important;
}
.info-card p{
    color: rgba(234,242,255,0.72) !important;
}
.info-icon{
    filter: drop-shadow(0 8px 20px rgba(34,211,238,0.2));
}

/* Why choose */
.why-choose{
    background: linear-gradient(135deg, rgba(34,211,238,0.95) 0%, rgba(124,58,237,0.98) 50%, rgba(52,211,153,0.55) 100%) !important;
    color: #06121a !important;
}
.why-choose h2{
    color: rgba(6,18,26,0.95) !important;
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif !important;
}
.section-subtitle{
    color: rgba(6,18,26,0.78) !important;
}
.feature-item{
    background: rgba(255,255,255,0.16) !important;
    border: 1px solid rgba(255,255,255,0.22) !important;
}
.feature-item:hover{
    background: rgba(255,255,255,0.22) !important;
}
.feature-item h4, .feature-item p{
    color: rgba(6,18,26,0.92) !important;
}

/* Ingredients */
.ingredients{
    background: rgba(255,255,255,0.015) !important;
}
.ingredients h2{
    color: var(--text) !important;
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif !important;
}
.ingredients .section-subtitle{
    color: rgba(234,242,255,0.7) !important;
}

.ingredient-card{
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    box-shadow: 0 22px 70px rgba(0,0,0,0.28) !important;
}
.ingredient-image img{
    border-radius: 26px !important;
    box-shadow: 0 24px 70px rgba(0,0,0,0.35) !important;
}
.ingredient-content h3{
    color: var(--text) !important;
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif !important;
}
.ingredient-content p{
    color: rgba(234,242,255,0.72) !important;
}

/* Product features */
.product-features{
    background: transparent !important;
}
.product-features h2{
    color: var(--text) !important;
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif !important;
}
.feature-box{
    background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%) !important;
    border-left: 5px solid rgba(34,211,238,0.9) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    box-shadow: 0 18px 55px rgba(0,0,0,0.24) !important;
}
.feature-box h4{
    color: var(--text) !important;
}
.feature-box p{
    color: rgba(234,242,255,0.72) !important;
}
.feature-box:hover{
    transform: translateX(8px) !important;
}

/* How to use */
.how-to-use{
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.00) 100%) !important;
}
.how-to-use h2{
    color: var(--text) !important;
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif !important;
}
.step{
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    box-shadow: 0 22px 70px rgba(0,0,0,0.22) !important;
}
.step-number{
    background: linear-gradient(135deg, rgba(34,211,238,0.95), rgba(124,58,237,0.95)) !important;
}
.step h3{
    color: var(--text) !important;
}
.step p{
    color: rgba(234,242,255,0.72) !important;
}

/* Final CTA */
.final-cta{
    background: radial-gradient(1000px 500px at 20% 0%, rgba(34,211,238,0.25), transparent 60%),
                linear-gradient(135deg, rgba(124,58,237,0.95) 0%, rgba(34,211,238,0.70) 100%) !important;
}
.final-cta .cta-content h2,
.final-cta .cta-content > p{
    color: var(--text) !important;
}
.final-cta .lead-form{
    background: rgba(0,0,0,0.2) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
}
.final-cta .form-row{
    gap: 18px !important;
}
.final-cta .form-group input{
    background: rgba(0,0,0,0.18) !important;
    color: var(--text) !important;
    border-color: rgba(255,255,255,0.18) !important;
}
.final-cta .cta-button{
    background: linear-gradient(135deg, rgba(52,211,153,0.95), rgba(34,211,238,0.95)) !important;
}

/* Footer */
.footer{
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.35) 100%) !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
}
.footer-content{
    margin-bottom: 40px !important;
}
.footer-contact h4,
.footer-links h4,
.footer-legal h4{
    color: rgba(34,211,238,0.95) !important;
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif !important;
}
.footer-contact p,
.footer-legal p{
    color: rgba(234,242,255,0.70) !important;
}
.footer-links a{
    color: rgba(234,242,255,0.75) !important;
}
.footer-links a:hover{
    color: rgba(34,211,238,0.95) !important;
}
.footer-disclosures{
    border-top: 1px solid rgba(255,255,255,0.10) !important;
}
.disclosure{
    background: rgba(255,255,255,0.06) !important;
    border-left: 4px solid rgba(124,58,237,0.95) !important;
}
.disclosure p{
    color: rgba(234,242,255,0.68) !important;
}
.footer-bottom{
    color: rgba(234,242,255,0.55) !important;
}

/* Contact/legal pages forms: override inline-ish controls */
.product-info input,
.product-info select,
.product-info textarea{
    background: rgba(0,0,0,0.18) !important;
    color: var(--text) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    border-radius: 18px !important;
    padding: 14px 18px !important;
    font-family: inherit !important;
}
.product-info textarea{
    resize: vertical !important;
}
.product-info input::placeholder,
.product-info textarea::placeholder{
    color: rgba(234,242,255,0.45) !important;
}
.product-info label{
    color: rgba(234,242,255,0.78) !important;
}
.product-info option{
    background: #081023 !important;
    color: var(--text) !important;
}

/* Scrollbars */
::-webkit-scrollbar{ width: 12px; }
::-webkit-scrollbar-track{ background: rgba(255,255,255,0.04); }
::-webkit-scrollbar-thumb{
    background: linear-gradient(180deg, rgba(34,211,238,0.95), rgba(124,58,237,0.95));
    border-radius: 7px;
    border: 2px solid rgba(6,8,22,0.6);
}
::-webkit-scrollbar-thumb:hover{ filter: brightness(1.05); }
*{
    scrollbar-width: thin !important;
    scrollbar-color: rgba(34,211,238,0.85) rgba(255,255,255,0.06) !important;
}

@media (max-width: 768px){
    .hero-text h1{ font-size: 40px !important; }
    .hero-content{ gap: 46px !important; }
}

@media (max-width: 480px){
    .hero-text h1{ font-size: 32px !important; }
    .hero-subtitle{ font-size: 18px !important; }
}

/* ===== Orinova Light Premium Blue-Green Theme (App Overrides) ===== */
:root{
    --bg0:#F6FBFF;
    --bg1:#F2FFF6;
    --surface:rgba(255,255,255,0.78);
    --surface2:rgba(255,255,255,0.92);
    --border:rgba(8,145,178,0.18);
    --text:#072A3F;
    --muted:rgba(7,42,63,0.70);
    --muted2:rgba(7,42,63,0.55);
    --accent:#0EA5E9;
    --accent2:#22C55E;
    --accent3:#3B82F6;
    --danger:#EF4444;
    --shadow:rgba(2,14,28,0.12);
    --radius:22px;
    --container:1200px;
}

body{
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
    background:
        radial-gradient(1200px 800px at 10% -10%, rgba(34,197,94,0.18), transparent 55%),
        radial-gradient(900px 700px at 90% 0%, rgba(14,165,233,0.22), transparent 50%),
        radial-gradient(700px 500px at 30% 90%, rgba(16,185,129,0.12), transparent 55%),
        linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 100%) !important;
    color: var(--text) !important;
    line-height: 1.65 !important;
}

.container{ max-width: var(--container) !important; }

a{ color: var(--accent) !important; }
a:hover{ color: var(--accent2) !important; }

:focus-visible{
    outline: 3px solid rgba(34,197,94,0.55) !important;
    outline-offset: 2px !important;
}

/* Advertorial */
.advertorial-notice{
    background: rgba(255,255,255,0.68) !important;
    border-bottom: 1px solid rgba(14,165,233,0.12) !important;
    backdrop-filter: blur(14px) !important;
}
.advertorial-notice p{
    color: rgba(7,42,63,0.55) !important;
    letter-spacing: 2px !important;
}

/* Header */
.header{
    background: rgba(255,255,255,0.70) !important;
    border-bottom: 1px solid rgba(14,165,233,0.14) !important;
    box-shadow: 0 10px 35px rgba(2,14,28,0.08) !important;
    backdrop-filter: blur(16px) !important;
}
.logo h2{
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif !important;
    color: var(--text) !important;
    letter-spacing: -0.35px !important;
    font-size: 24px !important;
}
.home-btn{
    background: linear-gradient(135deg, rgba(14,165,233,0.98), rgba(34,197,94,0.95)) !important;
    border: 1px solid rgba(14,165,233,0.22) !important;
    box-shadow: 0 12px 35px rgba(14,165,233,0.18) !important;
    color: #fff !important;
}
.home-btn:hover{
    transform: translateY(-1px) !important;
    box-shadow: 0 16px 45px rgba(34,197,94,0.18) !important;
}

/* Layout changes: hero swap */
.hero-content{
    gap: 76px !important;
    align-items: center !important;
}
.hero-text{ grid-column: 2 !important; }
.hero-image{ grid-column: 1 !important; }

.hero-image{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.hero-image img{
    align-self: center !important;
}

/* Hero */
.hero{
    position: relative !important;
    overflow: hidden !important;
    padding: 92px 0 !important;
    background:
        radial-gradient(900px 520px at 15% 20%, rgba(14,165,233,0.20), transparent 55%),
        radial-gradient(800px 520px at 80% 30%, rgba(34,197,94,0.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.0) 75%) !important;
}
.hero::after{
    content:"";
    position:absolute;
    inset:-2px;
    background-image:
        repeating-linear-gradient(135deg, rgba(14,165,233,0.08) 0 1px, transparent 1px 10px);
    opacity:0.30;
    pointer-events:none;
    mix-blend-mode: multiply;
}
.hero-content{ position: relative !important; z-index: 1 !important; }
.hero-text h1{
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif !important;
    color: var(--text) !important;
    font-size: 56px !important;
    letter-spacing: -0.9px !important;
}
.hero-subtitle{
    color: rgba(7,42,63,0.78) !important;
}
.hero-features li{
    color: rgba(7,42,63,0.78) !important;
}
.hero-price{
    background: linear-gradient(135deg, rgba(14,165,233,0.98), rgba(34,197,94,0.95)) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.45) !important;
    box-shadow: 0 16px 55px rgba(14,165,233,0.16) !important;
}
.hero-price:hover{
    transform: translateY(-2px) !important;
    box-shadow: 0 20px 65px rgba(34,197,94,0.18) !important;
}
.hero-image img{
    border-radius: 28px !important;
    border: 1px solid rgba(14,165,233,0.18) !important;
    box-shadow: 0 28px 90px rgba(2,14,28,0.12) !important;
}

/* Form section */
.lead-form-section{
    background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(242,255,246,0.35) 100%) !important;
}
.form-wrapper{
    background: rgba(255,255,255,0.78) !important;
    border: 1px solid rgba(14,165,233,0.16) !important;
    backdrop-filter: blur(16px) !important;
    box-shadow: 0 22px 70px rgba(2,14,28,0.10) !important;
    border-radius: var(--radius) !important;
}
.form-wrapper h2{ color: var(--text) !important; }
.form-wrapper > p{ color: rgba(7,42,63,0.66) !important; }
.lead-form .form-group input{
    background: #fff !important;
    color: var(--text) !important;
    border-color: rgba(14,165,233,0.22) !important;
}
.lead-form .form-group input::placeholder{ color: rgba(7,42,63,0.45) !important; }
.lead-form .form-group input:focus{
    border-color: rgba(34,197,94,0.65) !important;
    box-shadow: 0 0 0 4px rgba(34,197,94,0.14) !important;
}
.lead-form .form-group input.invalid{
    border-color: rgba(239,68,68,0.7) !important;
    background-color: rgba(239,68,68,0.08) !important;
}
.cta-button{
    background: linear-gradient(135deg, rgba(14,165,233,0.98), rgba(34,197,94,0.95)) !important;
    border: 1px solid rgba(14,165,233,0.22) !important;
    box-shadow: 0 16px 50px rgba(14,165,233,0.14) !important;
    color: #fff !important;
}
.cta-button:hover{
    transform: translateY(-2px) !important;
    box-shadow: 0 22px 70px rgba(34,197,94,0.16) !important;
}

/* Product blocks */
.product-info{
    background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.0) 70%) !important;
    color: var(--text) !important;
}
.product-info h2, .product-info h1, .product-info h3{
    color: var(--text) !important;
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif !important;
}
.product-info p, .product-info li, .product-info ul{
    color: var(--muted) !important;
}
.product-info a{ color: var(--accent) !important; }

.info-grid{
    margin-top: 52px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
.info-card{
    text-align: center !important;
    background: rgba(255,255,255,0.84) !important;
    border: 1px solid rgba(14,165,233,0.16) !important;
    box-shadow: 0 20px 60px rgba(2,14,28,0.08) !important;
    border-radius: 26px !important;
}
.info-card:hover{
    transform: translateY(-8px) !important;
    border-color: rgba(34,197,94,0.45) !important;
    box-shadow: 0 26px 75px rgba(2,14,28,0.12) !important;
}
.info-card p{ color: rgba(7,42,63,0.70) !important; }
.info-icon{ filter: drop-shadow(0 8px 18px rgba(14,165,233,0.18)); }

/* Placement tweaks: premium asymmetry via 12-col grid */
.info-grid{
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    grid-auto-flow: dense !important;
    gap: 22px !important;
}
.info-grid .info-card--1{
    grid-column: 1 / span 7 !important;
    grid-row: 1 !important;
}
.info-grid .info-card--2{
    grid-column: 8 / span 5 !important;
    grid-row: 1 !important;
}
.info-grid .info-card--3{
    grid-column: 1 / span 5 !important;
    grid-row: 2 !important;
}
.info-grid .info-card--4{
    grid-column: 6 / span 7 !important;
    grid-row: 2 !important;
}

.why-choose{
    background: linear-gradient(135deg, rgba(14,165,233,0.98) 0%, rgba(34,197,94,0.92) 100%) !important;
    color: #fff !important;
}
.why-choose h2{
    color: #fff !important;
}
.section-subtitle{
    color: rgba(255,255,255,0.92) !important;
}
.feature-item{
    background: rgba(255,255,255,0.16) !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
}
.feature-item:hover{ background: rgba(255,255,255,0.22) !important; }
.feature-item h4, .feature-item p{ color: rgba(255,255,255,0.95) !important; }

.why-choose .features-grid{
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    grid-auto-flow: dense !important;
    gap: 22px !important;
}
.why-choose .feature-item--1{
    grid-column: 1 / span 7 !important;
    grid-row: 1 !important;
}
.why-choose .feature-item--2{
    grid-column: 8 / span 5 !important;
    grid-row: 1 !important;
}
.why-choose .feature-item--3{
    grid-column: 1 / span 5 !important;
    grid-row: 2 !important;
}
.why-choose .feature-item--4{
    grid-column: 6 / span 7 !important;
    grid-row: 2 !important;
}

.ingredients{
    background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(242,255,246,0.35) 100%) !important;
}
.ingredients h2{
    color: var(--text) !important;
}
.ingredients .section-subtitle{ color: rgba(7,42,63,0.62) !important; }

.ingredient-card{
    background: rgba(255,255,255,0.86) !important;
    border: 1px solid rgba(14,165,233,0.16) !important;
    box-shadow: 0 22px 70px rgba(2,14,28,0.10) !important;
    border-radius: 26px !important;
    grid-template-columns: 1.05fr 0.95fr !important;
    gap: 52px !important;
    align-items: center !important;
}
.ingredient-content{
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}
.ingredient-content h3{
    color: var(--text) !important;
}
.ingredient-content p{
    color: rgba(7,42,63,0.72) !important;
}
.ingredient-card.reverse{
    direction: ltr !important;
}
.ingredients .ingredient-card.reverse .ingredient-image{
    grid-column: 2 !important;
}
.ingredients .ingredient-card.reverse .ingredient-content{
    grid-column: 1 !important;
}
.ingredient-image img{
    border-radius: 26px !important;
    border: 1px solid rgba(14,165,233,0.12) !important;
    box-shadow: 0 24px 70px rgba(2,14,28,0.10) !important;
}

.product-features{
    background: rgba(255,255,255,0.55) !important;
}
.product-features h2{ color: var(--text) !important; }
.feature-box{
    background: rgba(255,255,255,0.85) !important;
    border-left: 5px solid rgba(14,165,233,0.95) !important;
    border: 1px solid rgba(14,165,233,0.16) !important;
    box-shadow: 0 4px 12px rgba(2,14,28,0.05) !important;
}
.feature-box h4{ color: var(--text) !important; }
.feature-box p{ color: rgba(7,42,63,0.70) !important; }
.feature-box:hover{ transform: translateX(8px) !important; }

.how-to-use{
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(242,255,246,0.35) 100%) !important;
}
.how-to-use h2{ color: var(--text) !important; }
.step{
    background: rgba(255,255,255,0.86) !important;
    border: 1px solid rgba(14,165,233,0.16) !important;
    box-shadow: 0 18px 55px rgba(2,14,28,0.08) !important;
}
.step-number{
    background: linear-gradient(135deg, rgba(14,165,233,0.98), rgba(34,197,94,0.95)) !important;
}
.step h3{ color: var(--text) !important; }
.step p{ color: rgba(7,42,63,0.72) !important; }

.how-to-use .steps-grid{
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    grid-auto-flow: dense !important;
    gap: 22px !important;
}
.how-to-use .step--1{
    grid-column: 1 / span 6 !important;
    grid-row: 1 !important;
}
.how-to-use .step--2{
    grid-column: 7 / span 6 !important;
    grid-row: 1 !important;
}
.how-to-use .step--3{
    grid-column: 1 / span 12 !important;
    grid-row: 2 !important;
}

.final-cta{
    background: radial-gradient(1000px 500px at 20% 0%, rgba(14,165,233,0.22), transparent 60%),
                linear-gradient(135deg, rgba(14,165,233,0.95) 0%, rgba(34,197,94,0.85) 100%) !important;
    color: #fff !important;
}
.final-cta .cta-content h2,
.final-cta .cta-content > p{ color: #fff !important; }
.final-cta .lead-form{
    background: rgba(255,255,255,0.16) !important;
    border: 1px solid rgba(255,255,255,0.26) !important;
}
.final-cta .form-row{ gap: 18px !important; }
.final-cta .form-group input{
    background: rgba(255,255,255,0.95) !important;
    color: var(--text) !important;
    border-color: rgba(255,255,255,0.55) !important;
}
.final-cta .cta-button{
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,255,255,0.82)) !important;
    color: rgba(7,42,63,0.95) !important;
    border: 1px solid rgba(255,255,255,0.55) !important;
}

/* Footer */
.footer{
    background: linear-gradient(180deg, rgba(255,255,255,0.75) 0%, rgba(242,255,246,0.55) 100%) !important;
    color: var(--text) !important;
    border-top: 1px solid rgba(14,165,233,0.14) !important;
}
.footer-content{
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 48px !important;
    margin-bottom: 40px !important;
}
.footer-legal{ grid-column: 1 !important; }
.footer-contact{ grid-column: 2 !important; }
.footer-links{ grid-column: 1 / -1 !important; }
.footer-contact h4,
.footer-links h4,
.footer-legal h4{
    color: rgba(14,165,233,0.95) !important;
}
.footer-contact p,
.footer-legal p{
    color: rgba(7,42,63,0.70) !important;
}
.footer-links a{
    color: rgba(7,42,63,0.72) !important;
}
.footer-links a:hover{ color: rgba(34,197,94,0.98) !important; }
.footer-disclosures{ border-top: 1px solid rgba(14,165,233,0.14) !important; }
.disclosure{
    background: rgba(14,165,233,0.05) !important;
    border-left: 4px solid rgba(34,197,94,0.9) !important;
}
.disclosure p{ color: rgba(7,42,63,0.72) !important; }
.footer-bottom{ color: rgba(7,42,63,0.55) !important; }

/* Contact/legal page inputs: keep light */
.product-info input,
.product-info select,
.product-info textarea{
    background: #fff !important;
    color: var(--text) !important;
    border: 1px solid rgba(14,165,233,0.18) !important;
    border-radius: 18px !important;
    padding: 14px 18px !important;
    font-family: inherit !important;
}
.product-info textarea{ resize: vertical !important; }
.product-info input::placeholder,
.product-info textarea::placeholder{ color: rgba(7,42,63,0.45) !important; }
.product-info label{ color: rgba(7,42,63,0.78) !important; }
.product-info option{
    background: #F1FAFF !important;
    color: var(--text) !important;
}
.product-info h1,
.product-info h2,
.product-info h3,
.product-info p,
.product-info li{
    color: var(--text) !important;
}
.product-info p,
.product-info li{
    color: var(--muted) !important;
}

/* Scrollbars (light) */
::-webkit-scrollbar{ width: 12px; }
::-webkit-scrollbar-track{ background: rgba(14,165,233,0.08); }
::-webkit-scrollbar-thumb{
    background: linear-gradient(180deg, rgba(14,165,233,0.95), rgba(34,197,94,0.95));
    border-radius: 7px;
    border: 2px solid rgba(246,251,255,0.9);
}
::-webkit-scrollbar-thumb:hover{ filter: brightness(1.05); }
*{
    scrollbar-width: thin !important;
    scrollbar-color: rgba(14,165,233,0.75) rgba(14,165,233,0.08) !important;
}

@media (max-width: 768px){
    .hero-content{ grid-template-columns: 1fr !important; gap: 46px !important; }
    .hero-image{ grid-row: 1 !important; grid-column: auto !important; }
    .hero-text{ grid-row: 2 !important; grid-column: auto !important; }
    .hero-image{
        justify-content: center !important;
        text-align: center !important;
    }
    .hero-content{ align-items: flex-start !important; }
    .info-grid{
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
    }
    .info-grid .info-card{
        width: 100% !important;
        transform: none !important;
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }
    .why-choose .features-grid{ grid-template-columns: 1fr !important; }
    .why-choose .feature-item{ grid-column: auto !important; grid-row: auto !important; }
    .how-to-use .steps-grid{ grid-template-columns: 1fr !important; }
    .how-to-use .step{ grid-column: auto !important; grid-row: auto !important; transform: none !important; }
    .how-to-use .step{ align-self: stretch !important; }
    .ingredient-card{
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        align-items: flex-start !important;
    }
    .ingredients .ingredient-card.reverse .ingredient-image{
        grid-column: auto !important;
    }
    .ingredients .ingredient-card.reverse .ingredient-content{
        grid-column: auto !important;
    }
    .ingredient-image img{
        height: auto !important;
    }
    .ingredient-content{
        justify-content: flex-start !important;
    }
    .footer-content{ grid-template-columns: 1fr !important; }
    .footer-legal, .footer-contact, .footer-links{ grid-column: auto !important; }
}

@media (max-width: 480px){
    .hero-text h1{ font-size: 34px !important; }
    .hero-subtitle{ font-size: 18px !important; }
}

/* Hero CTA: price outline + details button */
.hero-cta-group{
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
}
.hero-price-pill{
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 14px 28px !important;
    border-radius: 30px !important;
    border: 2px solid rgba(14,165,233,0.85) !important;
    background: transparent !important;
    color: var(--text) !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    letter-spacing: 0.3px !important;
}
.hero-more-btn{
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 14px 28px !important;
    border-radius: 30px !important;
    background: linear-gradient(135deg, rgba(14,165,233,0.98), rgba(34,197,94,0.95)) !important;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    border: 1px solid rgba(14,165,233,0.22) !important;
    box-shadow: 0 12px 35px rgba(14,165,233,0.18) !important;
    transition: all 0.25s ease !important;
}
.hero-more-btn:hover{
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 16px 45px rgba(34,197,94,0.18) !important;
}

@media (max-width: 768px){
    .hero-cta-group{
        gap: 10px !important;
    }
    .hero-price-pill,
    .hero-more-btn{
        width: 100% !important;
        font-size: 20px !important;
    }
}


/* Contact pages: keep regular aligned columns */
.info-grid.info-grid--contact{
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    grid-auto-flow: row !important;
    gap: 32px !important;
}

