/* === UH normalize (safe) — 2025-08-15 === */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
a { text-decoration: none; color: inherit; }

/* === CSS Custom Properties (Design Tokens) === */
:root{
  --uh-radius-lg: 20px;
  --uh-radius: 14px;
  --uh-radius-sm: 10px;

  --uh-shadow-soft: 0 6px 18px rgba(22,36,79,.08);
  --uh-shadow-med: 0 12px 28px rgba(22,36,79,.12);

  --uh-border: #e7eef7;
  --uh-bg: #f6f9ff;
  --uh-card: #ffffff;
  --uh-text: #0f1d2e;
  --uh-sub: #4b5b6e;

  --uh-blue-50: #eef4ff;
  --uh-blue: #2563eb;
  --uh-blue-600: #1e56d6;
  --uh-accent: #0ea5e9; /* אופציונלי */
}

/* === UH form base === */
.input, .enhanced-order-form input, .enhanced-order-form textarea, .enhanced-order-form select {
  width:100%;
  border:1px solid var(--uh-border);
  border-radius:12px;
  background:#fff;
  padding:12px 14px;
  transition:border .15s ease, box-shadow .15s ease;
  outline:0;
}
.input:focus,
.enhanced-order-form input:focus,
.enhanced-order-form textarea:focus,
.enhanced-order-form select:focus{
  border-color:#16a34a;
  box-shadow:0 0 0 3px rgba(22,163,74,.18);
}

/* === UH button base === */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:44px;padding:12px 18px;border-radius:12px;border:0;cursor:pointer;
  font-weight:700;
}
.btn-primary{background:#16a34a;color:#fff}
.btn-primary:hover{background:#15803d}
.btn-ghost{background:#fff;border:1px solid var(--uh-border);color:var(--uh-text)}

/* === UH payment card (single source) === */
.payment-card, .paypal-wrapper-main{
  background:linear-gradient(180deg,#f7fbff,#eef4ff);
  border:1px solid #dbe7ff;
  border-radius:18px;
  padding:18px;
  box-shadow:var(--uh-shadow-soft);
}
.payment-card h4, .paypal-wrapper-main h4{margin:0 0 6px;color:var(--uh-text)}
.payment-card p, .paypal-wrapper-main p{margin:0 0 10px;color:var(--uh-sub)}

/* === UH conflict breaker === */
:where(.order-section) :where(input, textarea, select){all: revert-layer;}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Assistant', 'Rubik', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    direction: rtl;
    text-align: right;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', 'Assistant', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.flex { display: flex; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-10 { gap: 10px; }
.gap-15 { gap: 15px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.margin-10 { margin: 10px; }
.margin-20 { margin: 20px; }
.margin-bottom-10 { margin-bottom: 10px; }
.margin-bottom-20 { margin-bottom: 20px; }
.margin-bottom-30 { margin-bottom: 30px; }

/* Navigation Specific */
.nav-brand-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-comparison-link {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px;
    background-color: var(--primary-color, #3182ce);
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.nav-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2dd4bf 0%, #0891b2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Hero Section Specific */
.hero-pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color, #3182ce);
}

.hero-cta-icon {
    margin-left: 10px;
}

/* Payment Section */
.payment-divider-enhanced {
    margin: 20px 0;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}



/* Trust Indicators */
.trust-indicators-enhanced {
    margin-bottom: 1.5rem;
}

.trust-item-enhanced {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.trust-icon-enhanced {
    margin-right: 10px;
}

/* Pain Points */
.pain-points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.pain-point {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 220px;
}

.pain-icon {
    font-size: 24px;
}

/* Emotional Content */
.hero-emotional-content {
    margin: 30px 0;
}

.emotional-headline {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color, #1a202c);
    margin-bottom: 20px;
    text-align: right;
}

.solution-intro h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: right;
}

.solution-text {
    font-size: 16px;
    color: var(--gray-700, #4a5568);
    text-align: right;
}

/* Comparison Section */
.comparison-inline-links {
    text-align: center;
    margin-bottom: 30px;
}

.comparison-link {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px;
    background-color: var(--primary-color, #3182ce);
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Direct PayPal Link */
.direct-paypal-link {
    text-align: center;
    margin: 1rem 0;
}

/* Link Styles */
.video-link {
    color: #3182ce;
    text-decoration: underline;
}

.instagram-link {
    color: #E4405F;
}

/* Bottom Comparison Section */
.bottom-comparison-section {
    padding: 40px 0;
    background-color: var(--gray-100, #f5f3f0);
}

.bottom-comparison-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--heading-color, #1a202c);
}

.bottom-comparison-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bottom-comparison-btn {
    display: inline-block;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.bottom-comparison-btn-primary {
    background-color: var(--primary-color, #3182ce);
}

.bottom-comparison-btn-secondary {
    background-color: var(--secondary-color, #2c5282);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Rubik', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #2dd4bf 0%, #0891b2 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 212, 191, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 12px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.nav-brand a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.3s ease;
}

.nav-brand a:hover {
    opacity: 0.8;
}

.nav-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0891b2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0891b2;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-phone {
    color: #0891b2;
    font-weight: 600;
    text-decoration: none;
}

.nav-instagram {
    font-size: 24px;
    color: #E4405F;
    text-decoration: none;
}

.nav-instagram:hover {
    color: #C13584;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0fdfa 0%, #e6fffa 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-benefits {
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.benefit-icon {
    font-size: 1.2rem;
}

.hero-cta {
    text-align: center;
    margin-top: 2rem;
}

.cta-button-enhanced {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    max-width: 400px;
    margin: 0 auto;
}

.cta-button-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.cta-main-text {
    font-size: 1.2rem;
    font-weight: 800;
}

.cta-sub-text {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.savings-highlight {
    text-align: center;
    margin: 1rem 0;
    padding: 0.8rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.hero-trust-indicators {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.trust-indicator {
    font-size: 0.9rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-guarantee {
    margin-top: 1rem;
    color: #059669;
    font-weight: 600;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(45, 212, 191, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Trust Indicators */
.trust-indicators {
    background: white;
    padding: 2rem 0;
    border-top: 1px solid #e2e8f0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    color: #475569;
}

.trust-icon {
    font-size: 1.5rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Problem Section */
.problem {
    background: #f8fafc;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-conclusion {
    text-align: center;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    padding: 2rem;
    border-radius: 16px;
    border-right: 4px solid #ef4444;
}

/* Solution Section */
.solution {
    background: white;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-benefits {
    margin-top: 2rem;
}

.benefit {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f0fdfa;
    border-radius: 12px;
    border-right: 4px solid #2dd4bf;
}

.benefit h4 {
    color: #0891b2;
    margin-bottom: 0.5rem;
}

.solution-image {
    position: relative;
}

.solution-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.solution-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(8, 145, 178, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Cost Comparison */
.cost-comparison { background: linear-gradient(180deg, #e0f2fe 0%, #bae6fd 100%); border-top:1px solid #c7d2fe; border-bottom:1px solid #c7d2fe; }

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.comparison-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: relative;
}

.comparison-item.expensive {
    border-top: 4px solid #ef4444;
}

.comparison-item.recommended {
    border-top: 4px solid #10b981;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 1rem 0;
}

.price-details {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.comparison-features {
    list-style: none;
    text-align: right;
}

.comparison-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.savings {
    margin-top: 1rem;
    color: #10b981;
    font-weight: 600;
}

/* How It Works */
.how-it-works { background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%); border-top:1px solid #c7d2fe; border-bottom:1px solid #c7d2fe; }

.steps-container {
    margin-top: 3rem;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    position: relative;
}

.step:nth-child(even) {
    grid-template-columns: 80px 1fr 80px;
    direction: ltr;
}

.step:nth-child(even) .step-content {
    text-align: left;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2dd4bf 0%, #0891b2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-icon {
    font-size: 3rem;
}

.step-content h3 {
    color: #0891b2;
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials { background: linear-gradient(135deg, #eaf6ff 0%, #dbeafe 100%); border-top:1px solid #c7d2fe; border-bottom:1px solid #c7d2fe; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: #0f172a;
}

.author-info span {
    color: #64748b;
    font-size: 0.9rem;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0891b2;
}

.stat-label {
    color: #64748b;
    font-weight: 600;
}

/* FAQ */
.faq { background: linear-gradient(135deg, #edf2ff 0%, #e9efff 100%); border-top:1px solid #c7d2fe; border-bottom:1px solid #c7d2fe; }

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #0891b2;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0891b2;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

/* Pricing */
.pricing { background: linear-gradient(180deg, #e0f2fe 0%, #dbeafe 100%); border-top:1px solid #c7d2fe; border-bottom:1px solid #c7d2fe; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.recommended {
    border: 2px solid #10b981;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.pricing-card h3 {
    color: #0f172a;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.currency {
    font-size: 1.5rem;
    color: #64748b;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #0891b2;
}

.features {
    list-style: none;
    text-align: right;
    margin: 2rem 0;
}

.features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.delivery-time {
    background: #f0fdfa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    color: #0891b2;
    font-weight: 600;
}

.savings-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ef4444;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-guarantee {
    margin-top: 4rem;
    text-align: center;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #10b981;
}

.guarantee-icon {
    font-size: 3rem;
}

.guarantee-text h4 {
    color: #10b981;
    margin-bottom: 0.5rem;
}

/* Urgency */
.urgency {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    text-align: center;
}

.urgency-content h2 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.urgency-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.timer {
    display: flex;
    gap: 1rem;
}

.timer-item {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    min-width: 80px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.timer-item span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
}

.timer-item label {
    font-size: 0.9rem;
    color: #64748b;
}

/* Legal */
.legal { background: linear-gradient(180deg, #f7fbff 0%, #eef7ff 100%); }

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.cta-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
}

.contact-options {
    margin-top: 3rem;
}

.contact-options h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-method:hover {
    background: rgba(255,255,255,0.2);
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #2dd4bf;
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2dd4bf;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

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

.close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #64748b;
    transition: color 0.3s ease;
}

.close:hover {
    color: #dc2626;
}

/* Form Styles */
.order-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    direction: rtl;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2dd4bf;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 4px;
}

.form-group.checkbox label {
    margin-bottom: 0;
    line-height: 1.5;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .step:nth-child(even) {
        grid-template-columns: 1fr;
        direction: rtl;
    }
    
    .step:nth-child(even) .step-content {
        text-align: center;
    }
    
    .comparison-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.recommended {
        transform: none;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .timer {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .testimonials-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Smart Disclaimer Styles */
.smart-disclaimer {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: #f9fafb;
    padding: 3rem 0;
    border-top: 1px solid #4b5563;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-main {
    background: #374151;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.disclaimer-icon {
    font-size: 1.5rem;
}

.disclaimer-header h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
}

.disclaimer-text {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.6;
}

.disclaimer-text p {
    margin-bottom: 1rem;
}

.disclaimer-text strong {
    color: #ffffff;
}

.disclaimer-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.disclaimer-box {
    background: #374151;
    border-radius: 8px;
    padding: 1.5rem;
}

.box-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.box-icon {
    font-size: 1.25rem;
}

.box-header h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.disclaimer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disclaimer-box li {
    color: #d1d5db;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
    padding-right: 1rem;
    position: relative;
}

.disclaimer-box li:before {
    content: "•";
    position: absolute;
    right: 0;
    color: #10b981;
}

.disclaimer-contact {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #4b5563;
}

.disclaimer-contact p {
    color: #9ca3af;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.disclaimer-contact a {
    color: #14b8a6;
    text-decoration: underline;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.disclaimer-contact a:hover {
    color: #0d9488;
}

/* Responsive Design */
@media (max-width: 768px) {
    .disclaimer-details {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-main {
        padding: 1.5rem;
    }
    
    .disclaimer-box {
        padding: 1rem;
    }
    
    /* Mobile Navigation */
    .nav {
        padding: 1rem 0;
        position: relative;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 12px 12px;
        padding: 1rem 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        margin: 0;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-contact {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #f0f0f0;
    }
    
    .nav-phone {
        font-size: 0.9rem;
    }
    
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        gap: 4px;
        padding: 8px;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: #333;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile Hero Section */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .emotional-headline {
        font-size: 1.5rem;
    }
    
    .pain-points {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pain-point {
        justify-content: center;
        text-align: center;
    }
    
    /* Mobile Images */
    .hero-img,
    .solution-img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }
    
    /* Mobile Grid Layouts */
    .problem-grid,
    .comparison-grid,
    .testimonials-grid,
    .steps-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Mobile Order Form */
    .order-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .enhanced-order-form input,
    .enhanced-order-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    

    
    /* Mobile Pricing */
    .pricing-card {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    /* Mobile FAQ */
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Mobile Typography */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Mobile Buttons */
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
    
    /* Mobile Comparison Links */
    .comparison-inline-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .comparison-link {
        display: block;
        margin: 0;
        padding: 1rem;
        text-align: center;
    }
    
    .bottom-comparison-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bottom-comparison-btn {
        padding: 1rem;
        font-size: 0.95rem;
        text-align: center;
    }
    
    /* Mobile Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Mobile Specific Utilities */
    .mobile-center {
        text-align: center;
    }
    
    .mobile-full-width {
        width: 100%;
    }
    
    /* Mobile Image Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .before-after-item img {
        height: 250px;
    }
    
    .before-after-gallery .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .before-after-item {
        border-radius: 12px;
    }
    
    .before-after-item .image-caption {
        padding: 1rem;
    }
    
    .before-after-item .before-label,
    .before-after-item .after-label {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    

    
    /* Mobile Footer */
    .footer {
        padding: 3rem 0;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    /* Mobile Trust Indicators */
    .trust-indicators-enhanced {
        margin-bottom: 1rem;
    }
    
    .trust-item-enhanced {
        justify-content: center;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    /* Mobile Research Grid */
    .research-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Mobile How It Works */
    .science-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-number {
        justify-self: center;
        margin-bottom: 1rem;
    }
    
    /* Mobile Comparison Pages */
    .process-comparison,
    .safety-comparison,
    .effectiveness-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .price {
        font-size: 2rem !important;
    }
    
    /* Mobile Calculator */
    .calculator-page {
        padding: 100px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .calculator-card {
        padding: 25px;
        margin: 0 10px 20px;
    }
    
    .savings {
        font-size: 2rem;
    }
    
    /* Mobile Benefit Cards */
    .benefit-card {
        padding: 1.5rem;
    }
    
    /* Mobile Scientific Note */
    .scientific-note {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .scientific-note h3 {
        font-size: 1.3rem;
    }
    
    /* Mobile Specific Spacing */
    .hero-emotional-content {
        margin: 2rem 0;
    }
    
    .solution-intro h3 {
        font-size: 1.2rem;
    }
    
    /* Mobile Order Benefits */
    .order-benefits {
        gap: 1rem;
    }
    
    /* Mobile Payment Note */
    .payment-note {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    /* Mobile Testimonials */
    .testimonial {
        padding: 1.5rem;
    }
    
    .stars {
        font-size: 1.2rem;
    }
}

/* Tablet Responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-container,
    .solution-content,
    .order-content {
        gap: 3rem;
    }
    
    .problem-grid,
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Large Mobile / Small Tablet */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .pricing-card {
        margin: 0 0.5rem;
        padding: 1.5rem 1rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .nav-logo {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .nav-title {
        font-size: 1.2rem;
    }
    
    .nav-phone {
        font-size: 0.8rem;
    }
    
    .btn-large,
    .cta-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}


/* Single Price Layout */
.pricing-single {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pricing-card.single-price {
    max-width: 500px;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    transform: scale(1.05);
}

.pricing-card.single-price h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pricing-card.single-price h4 {
    color: #f0f0f0;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
    text-align: center;
}

.pricing-card.single-price .price .amount {
    font-size: 3.5rem;
    font-weight: 800;
}

.pricing-card.single-price .features {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.pricing-card.single-price .features li {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.pricing-card.single-price .btn {
    background: white;
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border: none;
    transition: all 0.3s ease;
}

.pricing-card.single-price .btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.security-badges {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.security-badges span {
    font-size: 0.9rem;
    color: #f0f0f0;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-card.single-price {
        transform: none;
        margin: 0 1rem;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* How It Works Page Specific Styles */
.science-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.steps-container {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.step-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-right: 4px solid #0891b2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.step-content h3 {
    color: #0891b2;
    margin-bottom: 10px;
}

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

.benefit-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.usage-guide {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    border: 2px solid rgba(8, 145, 178, 0.2);
}

.usage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.usage-step {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
}

/* Comparison Pages Specific Styles */
.comparison-card {
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.growband-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.transplant-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.prp-card {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(245, 101, 101, 0.1));
    border: 2px solid rgba(251, 146, 60, 0.3);
}

.growband-price {
    color: #10b981;
}

.transplant-price {
    color: #ef4444;
}

.prp-price {
    color: #f59e0b;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.features-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.features-list li:last-child {
    border-bottom: none;
}

.process-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.process-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.safety-comparison,
.effectiveness-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0;
}

.price-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 20px;
}

.conclusion-section {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    border: 2px solid rgba(8, 145, 178, 0.2);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
}

/* Cost Calculator Page Specific Styles */
.calculator-page {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f0fdfa 0%, #e6fffa 100%);
    min-height: 100vh;
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    font-size: 2.5rem;
    color: #0f172a;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 800;
}

.calculator-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 30px;
}

.calculator-form h2 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 25px;
    text-align: center;
}

.treatment-options {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.treatment-option {
    position: relative;
}

.treatment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.treatment-option label {
    display: block;
    padding: 20px 25px;
    background: rgba(248, 250, 252, 0.8);
    border: 2px solid rgba(8, 145, 178, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
}

.treatment-option input[type="radio"]:checked + label {
    background: rgba(8, 145, 178, 0.1);
    border-color: #0891b2;
    color: #0891b2;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.2);
}

.treatment-option label:hover {
    background: rgba(8, 145, 178, 0.05);
    border-color: rgba(8, 145, 178, 0.4);
    transform: translateY(-1px);
}

.treatment-option input[type="radio"]:checked + label::before {
    content: '✓';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #0891b2;
    font-weight: bold;
    font-size: 1.2rem;
}

.time-frame {
    margin-bottom: 30px;
}

.time-frame h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 15px;
    text-align: center;
}

.time-frame select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(8, 145, 178, 0.2);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    background: white;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-frame select:focus {
    outline: none;
    border-color: #0891b2;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.calculate-button {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.3);
}

.calculate-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(8, 145, 178, 0.4);
}

.calculate-button:active {
    transform: translateY(0);
}

.results {
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.05), rgba(6, 182, 212, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(8, 145, 178, 0.2);
}

.results h2 {
    color: #0891b2;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 25px;
}

.treatment-cost, .growband-cost {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.treatment-cost h3, .growband-cost h3 {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 10px;
}

.total-savings {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 20px;
    margin-bottom: 25px;
}

.total-savings h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.savings {
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.additional-benefits {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.additional-benefits h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

.additional-benefits ul {
    list-style: none;
    padding: 0;
}

.additional-benefits li {
    padding: 8px 0;
    font-size: 1.1rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
}

.cta-section h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ff6b35, #f59e0b);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

/* Before After Gallery Styles */
.before-after-gallery {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.before-after-gallery .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.before-after-gallery .section-title {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.before-after-gallery .section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.before-after-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.before-after-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.before-after-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
}

.before-after-item:hover img {
    transform: scale(1.05);
}

.before-after-item .image-caption {
    padding: 1.5rem;
    text-align: center;
}

.before-after-item .image-caption h4 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.before-after-item .image-caption p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.before-after-item .before-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.before-after-item .after-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(16, 185, 129, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Desktop Navigation Fix */
@media (min-width: 1024px) {
    .header .container {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .nav {
        justify-content: flex-start;
        gap: 4rem;
    }
    
    .nav-menu {
        display: flex !important;
        gap: 3rem;
        font-size: 1rem;
        flex: 1 1 auto;
    }
    
    .nav-brand {
        flex: 0 0 auto;
    }
    
    .nav-contact {
        display: flex;
        align-items: center;
        gap: 2rem;
        flex: 0 0 auto;
    }
    
    .nav-phone {
        font-size: 1.1rem;
        font-weight: 600;
        color: #0891b2;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .nav-phone:hover {
        color: #0369a1;
    }
    
    .header-cta-desktop {
        background: linear-gradient(135deg, #f97316, #ea580c);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
        display: block;
    }
    
    .header-cta-desktop:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
        color: white;
    }
    
    .mobile-header-cta {
        display: none;
    }
}

/* Hide desktop CTA on mobile */
.header-cta-desktop {
    display: none;
}

/* Enhanced Order Form Styles */
.order-form-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    margin: 2rem 0;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.security-badges span {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.enhanced-order-form {
    max-width: 100%;
}

.form-progress {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

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

.trust-indicators-enhanced {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.trust-item-enhanced {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #0c4a6e;
}

.trust-item-enhanced:last-child {
    margin-bottom: 0;
}

.trust-icon-enhanced {
    background: #10b981;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.payment-options {
    margin-top: 2rem;
}

.payment-divider-enhanced {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.payment-divider-enhanced::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
    z-index: 1;
}

.payment-divider-enhanced span {
    background: white;
    padding: 0 1rem;
    color: #6b7280;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}



.payment-note {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.payment-note p {
    margin-bottom: 1rem;
    color: #92400e;
    font-weight: 500;
}

.payment-note ul {
    list-style: none;
    padding: 0;
}

.payment-note li {
    margin-bottom: 0.5rem;
    color: #92400e;
    padding-right: 1.5rem;
    position: relative;
}

.payment-note li:before {
    content: '•';
    position: absolute;
    right: 0;
    color: #f59e0b;
    font-weight: bold;
}

.direct-paypal-link {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
}

.direct-paypal-link p {
    margin: 0;
    color: #0c4a6e;
}

.direct-paypal-link a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 8px;
    display: inline-block;
    margin-top: 0.5rem;
    border: 1px solid #3b82f6;
    transition: all 0.3s ease;
}

.direct-paypal-link a:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Mobile Responsive for Form */
@media (max-width: 768px) {
    .order-form-container {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .security-badges {
        gap: 0.5rem;
    }
    
    .security-badges span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .trust-indicators-enhanced {
        padding: 1rem;
    }
    
    .payment-note {
        padding: 1rem;
    }
}

/* Form validation styles */
.form-group input:invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input:valid {
    border-color: #10b981;
}

.form-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.form-submit-btn:disabled:hover {
    background: #3b82f6;
    transform: none !important;
}

/* Loading animation for submit button */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-submit-btn:disabled .submit-icon {
    animation: spin 1s linear infinite;
}



/* Sticky CTA for Desktop */
.sticky-cta-desktop {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid #f59e0b;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

.sticky-cta-desktop.visible {
    transform: translateY(0);
    display: block;
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.sticky-cta-text {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sticky-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f59e0b;
}

.sticky-savings {
    font-size: 1rem;
    color: #10b981;
    font-weight: 600;
}

.sticky-cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.sticky-cta-icon {
    font-size: 1.2rem;
}

/* Hide sticky CTA on mobile */
@media (max-width: 768px) {
    .sticky-cta-desktop {
        display: none !important;
    }
}

/* Form improvements */
.form-note {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #0c4a6e;
}

.enhanced-order-form {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid #f1f5f9;
}

.form-progress {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.final-benefit {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.final-cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 200px;
}

.final-cta-button.primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.final-cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.final-cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.final-cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.final-cta-button .cta-subtext {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

@media (max-width: 768px) {
    .final-cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
}

/* Centered Payment Options */
.payment-options-centered {
    text-align: center;
    margin-top: 2rem;
}

.payment-main-title {
    margin-bottom: 2rem;
}

.payment-main-title h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.payment-main-title p {
    color: #64748b;
    font-size: 1.1rem;
}



.alternative-payments {
    margin: 2rem 0;
}

.alternative-payment-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 350px;
    margin: 0 auto;
    font-family: inherit;
}

.alternative-payment-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.alt-payment-icon {
    font-size: 1.5rem;
}

.alt-payment-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.alt-payment-note {
    font-size: 0.9rem;
    color: #64748b;
}

@media (max-width: 768px) {

    
    .alternative-payment-btn {
        max-width: 100%;
        margin: 0;
    }
}

/* Navigation Brand Link */
.nav-brand-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Results Container */
.results-container-hidden {
    display: none;
}

.results-container-visible {
    display: block;
}

/* Calculator Actions */
.calculator-actions {
    margin-top: 2rem;
}

.calculator-cta-button {
    background: white !important;
    color: #ff6b35 !important;
}

/* Form Test Container */
.form-test-instructions {
    margin-top: 30px;
    padding: 20px;
    background: #f3f4f6;
    border-radius: 8px;
}

/* Admin Action Buttons */
.admin-actions {
    text-align: center;
    margin-top: 30px;
}

/* Alert and Status Messages */
.alert-visible {
    display: block !important;
}

.alert-hidden {
    display: none !important;
}

.status-visible {
    display: block !important;
}

.status-hidden {
    display: none !important;
}

/* Gallery Items */
.gallery-item-visible {
    display: block !important;
}

.gallery-item-hidden {
    display: none !important;
}

/* =============================
   UH 2025-08-15 — Stabilizing overrides
   Scope: order form, PayPal card, videos grid, small utilities
   Note: purely additive; no destructive global resets
   ============================= */


/* ---------- Utilities ---------- */
.container{max-width:1100px;}
.uh-center{margin-inline:auto;}
.uh-muted{color:var(--uh-sub)}

/* ---------- Video tutorials grid ---------- */
.video-tutorials {
  padding: 4rem 0;
  background: linear-gradient(180deg, #fafcff 0%, #f8faff 100%);
}

.video-tutorials .section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--uh-text);
  margin-bottom: 0.5rem;
}

.video-tutorials .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--uh-sub);
  margin-bottom: 3rem;
}

.video-tutorials .videos-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
  max-width:1100px;
  margin:0 auto;
}
@media (min-width:768px){
  .video-tutorials .videos-grid{grid-template-columns:1fr 1fr; gap:24px;}
}
@media (min-width:1024px){
  .video-tutorials .videos-grid{grid-template-columns:repeat(3,1fr); gap:24px;}
}
.video-tutorials .video-card{
  background:var(--uh-card);
  border:1px solid var(--uh-border);
  border-radius:var(--uh-radius);
  box-shadow:var(--uh-shadow-soft);
  padding:18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.video-tutorials .video-card:hover{
  transform: translateY(-4px);
  box-shadow:var(--uh-shadow-med);
}
.video-tutorials .video-thumbnail {
  margin-bottom: 12px;
  border-radius: var(--uh-radius-sm);
  overflow: hidden;
}
.video-tutorials .video-thumbnail iframe{
  width:100%;
  aspect-ratio:16/9;
  border:0;
  display: block;
}
.video-tutorials .video-info h3{
  margin:0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--uh-text);
  line-height: 1.3;
}
.video-tutorials .video-info p{
  margin:0;
  color:var(--uh-sub);
  font-size: 0.95rem;
  line-height: 1.4;
}

.video-tutorials .show-more-videos {
  display: block;
  text-align: center;
  margin-top: 2.5rem;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--uh-blue) 0%, var(--uh-blue-600) 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.2s ease;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.video-tutorials .show-more-videos:hover {
  transform: translateY(-2px);
}

/* ---------- Order form container polish ---------- */
.order-section { background: linear-gradient(180deg, #a7f3d0 0%, #93c5fd 100%); border-top:1px solid #34d399; border-bottom:1px solid #60a5fa; }
.order-section .order-wrapper{
  background:linear-gradient(180deg,#fafcff, #f2f7ff);
  border:1px solid var(--uh-border);
  border-radius:20px;
  box-shadow:var(--uh-shadow-med);
  padding:28px;
}
@media (max-width:768px){
  .order-section .order-wrapper{padding:20px}
}
.enhanced-order-form{
  background:var(--uh-card);
  border:1px solid var(--uh-border);
  border-radius:18px;
  padding:22px
}
.enhanced-order-form .form-row{display:grid;gap:16px}
@media (min-width:768px){
  .enhanced-order-form .form-row{grid-template-columns:1fr 1fr}
}
.enhanced-order-form label{font-weight:600;color:var(--uh-text)}
.enhanced-order-form input,
.enhanced-order-form textarea{
  width:100%;
  height:48px;
  padding:12px 14px;
  border:1px solid var(--uh-border);
  border-radius:12px;
  background:#fff;
  outline:0;
  transition:border .15s ease, box-shadow .15s ease;
}
.enhanced-order-form textarea{min-height:88px;resize:vertical}
.enhanced-order-form input:focus,
.enhanced-order-form textarea:focus{
  border-color:var(--uh-blue-600);
  box-shadow:0 0 0 3px rgba(37,99,235,.12)
}
.enhanced-order-form .form-progress{
  background:linear-gradient(90deg, var(--uh-blue), var(--uh-blue-600));
  color:#fff;
  text-align:center;
  padding:12px 16px;
  border-radius:12px;
  font-weight:700;
  margin-bottom:18px;
}

/* ---------- PayPal card (wrapper outside the iframe) ---------- */
.payment-options-centered{display:flex;flex-direction:column;align-items:center}
.paypal-wrapper-main{
  width:100%;
  max-width:440px;
  background:linear-gradient(180deg,#f7fbff, #eef4ff);
  border:1px solid #dbe7ff;
  border-radius:18px;
  padding:18px 18px 16px;
  box-shadow:var(--uh-shadow-soft);
  margin:14px auto 0;
}
.paypal-wrapper-main .paypal-header h4{margin:0 0 4px;color:var(--uh-text)}
.paypal-wrapper-main .paypal-header p{margin:0 0 10px;color:var(--uh-sub)}
.paypal-button-container{width:100%;min-height:48px}
.paypal-button-main{margin-top:6px}
.paypal-benefits{display:flex;flex-direction:column;gap:6px;margin-top:12px;color:var(--uh-sub);font-size:.95rem}
.paypal-benefit{display:flex;align-items:center;gap:6px}
/* give the embedded button a decent height */
.paypal-button-container iframe{min-height:44px;border-radius:10px}

/* ---------- Section titles/subtitles ---------- */
.section-title{color:var(--uh-text)}
.section-subtitle{color:var(--uh-sub)}

/* ---------- Gallery toggle helpers used by JS ---------- */
.gallery-item-hidden{display:none}
.gallery-item-visible{display:block}

/* === UH utilities (non-invasive) === */
.mt-8{margin-top:8px}.mt-12{margin-top:12px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}
.mb-8{margin-bottom:8px}.mb-12{margin-bottom:12px}.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}
.p-12{padding:12px}.p-16{padding:16px}.p-20{padding:20px}.p-24{padding:24px}
.round{border-radius:var(--uh-radius)} .round-sm{border-radius:var(--uh-radius-sm)} .round-lg{border-radius:var(--uh-radius-lg)}
.card{background:var(--uh-card);border:1px solid var(--uh-border);border-radius:var(--uh-radius);box-shadow:var(--uh-shadow-soft)}
.text-sub{color:var(--uh-sub)} .text-main{color:var(--uh-text)}
.shadow-soft{box-shadow:var(--uh-shadow-soft)} .shadow-med{box-shadow:var(--uh-shadow-med)}
.bg-card{background:var(--uh-card)} .bg-soft{background:linear-gradient(180deg,#fafcff,#f2f7ff)}
/* === Shared Site Header (matches homepage) === */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-container {max-width: 1100px; margin: 0 auto; padding: 12px 16px; display: flex; align-items: center; gap: 16px;}
.brand {display: flex; align-items: center; gap: 10px; text-decoration: none;}
.brand-logo {width: 28px; height: 28px; border-radius: 6px; background: linear-gradient(135deg,#0891b2,#0ea5e9); display: inline-block;}
.brand-name {font-family: 'Rubik', system-ui, sans-serif; font-weight: 700; color: #1e293b; font-size: 18px;}
nav.primary-nav {margin-inline-start: auto;}
.nav-list {list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; align-items: center;}
.nav-link {color: #475569; text-decoration: none; font-weight: 500; font-size: 14px; padding: 8px 10px; border-radius: 8px; transition: background .2s ease, color .2s ease;}
.nav-link:hover, .nav-link:focus {background: rgba(8,145,178,.08); color: #0891b2; outline: none;}
.has-sub { position: relative; }
.has-sub > .nav-link { display: inline-flex; align-items: center; gap: 6px; }
.has-sub > .nav-link:after { content: "▾"; font-size: 10px; color: #64748b; }
.subnav { display: none; position: absolute; right: 0; top: 100%; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; box-shadow: 0 10px 24px rgba(2,8,23,.12); padding: 8px; min-width: 240px; z-index: 1100; padding-top: 12px; margin-top: -4px; }
.subnav li { list-style: none; }
.subnav .nav-link { display: block; padding: 8px 10px; border-radius: 8px; }
.has-sub:hover .subnav { display: block; }
.nav-cta {background: linear-gradient(135deg, #0891b2 0%, #0ea5e9 100%); color: #ffffff; padding: 10px 14px; border-radius: 10px; font-weight: 700; box-shadow: 0 4px 12px rgba(8,145,178,0.3);} 
.nav-cta:hover, .nav-cta:focus {background: linear-gradient(135deg, #0ea5e9 0%, #0891b2 100%); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(8,145,178,0.4);} 
.nav-toggle {display: none; margin-inline-start: auto; background: none; border: 1px solid #cbd5e1; color: #475569; padding: 8px 10px; border-radius: 8px; cursor: pointer;}
.nav-toggle span {display: inline-block;}
@media (max-width: 1200px) {
  nav.primary-nav {position: fixed; inset-inline: 0; top: 56px; background: #ffffff; border-bottom: 1px solid #e2e8f0; box-shadow: 0 2px 20px rgba(0,0,0,0.08);} 
  .nav-list {flex-direction: column; align-items: stretch; padding: 12px 16px; display: none;}
  .nav-list.active, nav.primary-nav.active .nav-list {display: flex;}
  .subnav { position: static; display: block; border: none; box-shadow: none; padding: 4px 0 0; }
  .has-sub > .nav-link:after { content: ""; }
  .nav-toggle {display: inline-flex; align-items: center; gap: 8px;}
}
.nav-link:focus-visible, .nav-toggle:focus-visible {outline: 2px solid #0891b2; outline-offset: 2px;}

/* === Comparison Pages: Heroes & Sections === */
.compare-hero { background: linear-gradient(135deg, #f0fdfa 0%, #e6fffa 100%); padding: 48px 0; border-bottom: 1px solid #e2e8f0; }
.compare-hero h1 { margin: 0; font-size: 2rem; }

.detailed-comparison { background:#ffffff; padding:48px 0; }
.detailed-comparison .section-title { font-size:1.75rem; margin:0 0 16px; }
.detailed-comparison .comparison-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 18px; margin-top: 18px; }
.comparison-aspect { background:#fff; border-radius:16px; padding:20px; box-shadow:0 6px 18px rgba(2,8,23,0.06); border:1px solid #e2e8f0; }
.comparison-aspect h3 { margin:0 0 12px; color:#0f172a; font-size:1.2rem; }
.aspect-comparison { display:grid; grid-template-columns:1fr 1fr; gap:12px; align-items:start; }
.growband-side, .prp-side, .transplant-side { border-radius:12px; padding:14px; }
.growband-side { background:linear-gradient(135deg, rgba(16,185,129,.08), rgba(5,150,105,.06)); border:1px solid rgba(16,185,129,.25); }
.prp-side, .transplant-side { background:linear-gradient(135deg, rgba(244,63,94,.06), rgba(251,146,60,.07)); border:1px solid rgba(244,63,94,.25); }
.growband-side h4 { margin:0 0 6px; color:#059669; }
.prp-side h4, .transplant-side h4 { margin:0 0 6px; color:#dc2626; }
.growband-side p, .prp-side p, .transplant-side p { margin:0; color:#334155; line-height:1.6; }
@media (max-width: 800px){ .aspect-comparison { grid-template-columns: 1fr; } }

.timeline-comparison { background:#f8fafc; padding:48px 0; border-top:1px solid #e2e8f0; }
.timeline-comparison .section-title { font-size:1.75rem; margin:0 0 16px; }
.timeline-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap:18px; }
.timeline-method { background:#fff; border:1px solid #e2e8f0; border-radius:16px; padding:20px; box-shadow:0 6px 18px rgba(2,8,23,0.06); }
.timeline-method h3 { margin:0 0 12px; color:#0f172a; }
.timeline-steps { display:grid; gap:10px; }
.timeline-step { display:grid; grid-template-columns:120px 1fr; gap:12px; align-items:start; background:#f9fafb; border:1px solid #e5e7eb; border-radius:10px; padding:10px 12px; }
.timeline-step .step-time { font-weight:700; color:#0891b2; }
.timeline-step .step-desc { color:#334155; }
@media (max-width: 560px){ .timeline-step { grid-template-columns: 1fr; } }

.testimonials-section { background:#ffffff; padding:48px 0; }
.testimonial-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap:18px; }
.testimonial-card { background:#fff; border:1px solid #e2e8f0; border-radius:16px; padding:18px; box-shadow:0 6px 18px rgba(2,8,23,0.06); }
.testimonial-author { display:flex; justify-content:space-between; align-items:center; border-top:1px solid #e5e7eb; padding-top:10px; margin-top:10px; color:#475569; }
.pillar-section { background: linear-gradient(135deg, #f0fdfa 0%, #e6fffa 100%); padding: 48px 0; border-top:1px solid #c7d2fe; }
.pillar-grid { display:grid; grid-template-columns: 260px 1fr; gap: 24px; align-items:start; }
@media (max-width: 992px){ .pillar-grid { grid-template-columns: 1fr; } }
.pillar-toc { position: sticky; top:90px; background:#fff; border:1px solid #e2e8f0; border-radius:12px; box-shadow:0 6px 18px rgba(2,8,23,.06); padding:14px; }
.pillar-toc h4 { margin:0 0 8px; font-size: 0.95rem; color:#0f172a; }
.pillar-toc a { display:block; text-decoration:none; color:#475569; padding:8px 6px; border-radius:8px; }
.pillar-toc a:hover { background:#f1f5f9; color:#0f172a; }
.pillar-card { background:#fff; border:1px solid #e2e8f0; border-radius:16px; box-shadow:0 8px 24px rgba(2,8,23,.08); padding:28px; max-width: 900px; }
.pillar-article { margin-inline:auto; }
.pillar-card h2 { margin-top: 0; color:#0f172a; }
.pillar-card ul { margin: 0 0 1rem; padding-inline-start: 1.25rem; }
.pillar-card li { margin: .4rem 0; color:#334155; }
.pillar-card p { color:#334155; line-height: 1.7; }
.pillar-card .note { background:#f1f5f9; border:1px solid #e2e8f0; border-radius:10px; padding:10px 12px; color:#475569; }
.pillar-card details { background:#f8fafc; border:1px solid #e5e7eb; border-radius:10px; padding:10px 12px; margin:10px 0; }
.pillar-card summary { cursor:pointer; font-weight:700; color:#0891b2; }
.pillar-card section { margin: 28px 0; }
.pillar-card h2 { font-size: 1.65rem; margin: 0 0 8px; }
.pillar-card h3 { font-size: 1.25rem; margin: 0 0 8px; color:#0f172a; }

/* Blog post: meta + callouts */
.post-meta { background:#ffffff; border:1px solid #e2e8f0; border-radius:12px; box-shadow:0 6px 18px rgba(2,8,23,.06); padding:10px 14px; margin:16px auto; max-width:900px; }
.post-meta .meta-list { display:flex; flex-wrap:wrap; gap:12px 18px; align-items:center; color:#475569; font-size:.95rem; }
.post-meta .meta-item { display:flex; align-items:center; gap:6px; }
.post-meta .meta-sep { width:1px; height:18px; background:#e2e8f0; }
.featured-figure { margin:0 0 16px; border-radius:12px; overflow:hidden; box-shadow:0 10px 24px rgba(2,8,23,.08); border:1px solid #e2e8f0; }
.featured-figure img{ display:block; width:100%; height:auto; }

.key-takeaways { background:#ecfeff; border:1px solid #bae6fd; border-radius:12px; padding:16px; margin:16px 0; }
.key-takeaways h3 { margin:0 0 8px; color:#0f172a; font-size:1.1rem; }
.key-takeaways ul { margin:0; padding-inline-start: 1.25rem; color:#334155; }
.key-takeaways li { margin:.35rem 0; }

.pros-cons { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap:14px; margin:18px 0; }
.pros, .cons { background:#fff; border:1px solid #e2e8f0; border-radius:12px; padding:14px; box-shadow:0 6px 18px rgba(2,8,23,.06); }
.pros h4 { margin:0 0 8px; color:#059669; }
.cons h4 { margin:0 0 8px; color:#dc2626; }
.pros ul, .cons ul { margin:0; padding-inline-start: 1.2rem; color:#334155; }

.cta-inline { display:flex; gap:12px; flex-wrap:wrap; align-items:center; justify-content:center; background:linear-gradient(135deg, #10b981 0%, #059669 100%); color:#fff; border-radius:12px; padding:14px; box-shadow:0 8px 22px rgba(5,150,105,.28); }
.cta-inline a { color:#fff; text-decoration:none; font-weight:700; background:rgba(255,255,255,.15); padding:10px 14px; border-radius:10px; }
.cta-inline a:hover{ background:rgba(255,255,255,.25); }

.source-list { background:#fff; border:1px solid #e2e8f0; border-radius:12px; padding:14px; box-shadow:0 6px 18px rgba(2,8,23,.06); }
.source-list h3 { margin:0 0 8px; }
.source-list ul { margin:0; padding-inline-start: 1.25rem; }
.source-list a { color:#2563eb; text-decoration:none; }
.source-list a:hover { text-decoration:underline; }
