@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --navy: #0D1B2A;
  --steel: #1E3A5F;
  --accent: #2E86C1;
  --sky: #5DADE2;
  --mint: #A8D8EA;
  --cream: #F4F8FB;
  --white: #FFFFFF;
  --muted: #5D7A8C;
  --border: #DDE8F0;
  --gradient-hero: linear-gradient(135deg, #EBF5FB 0%, #F4F8FB 60%, #EAF4F4 100%);
  --gradient-dark: linear-gradient(135deg, #0D1B2A 0%, #1E3A5F 100%);
}


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

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

body { font-family: 'Sora', sans-serif; background: var(--cream); color: var(--navy); line-height: 1.6; }


/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(244,248,251,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); padding: 0 24px; }

.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 68px; }

.nav-logo { font-family: 'Lora', serif; font-size: 1.3rem; font-weight: 600; color: var(--navy); text-decoration: none; }

.nav-logo span { color: var(--accent); }

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

.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 0.2s; }

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

.nav-cta { background: var(--accent); color: #fff; padding: 10px 22px; border-radius: 8px; font-size: 0.88rem; font-weight: 600; text-decoration: none; transition: background 0.2s, transform 0.15s; }

.nav-cta:hover { background: var(--steel); transform: translateY(-1px); }


/* DISCLAIMER */
.disclaimer-bar { background: #EBF5FB; border-bottom: 1px solid #AED6F1; padding: 8px 24px; text-align: center; font-size: 0.78rem; color: var(--steel); }


/* BUTTONS */
.btn-primary { display: inline-block; background: var(--accent); color: #fff; padding: 15px 34px; border-radius: 8px; font-weight: 600; font-size: 0.97rem; text-decoration: none; box-shadow: 0 4px 18px rgba(46,134,193,0.3); transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; border: none; font-family: 'Sora', sans-serif; }

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,134,193,0.4); background: var(--steel); }

.btn-secondary { display: inline-block; border: 2px solid var(--accent); color: var(--accent); padding: 13px 30px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: all 0.2s; }

.btn-secondary:hover { background: var(--accent); color: #fff; }


/* SECTION TITLES */
.section-title { font-family: 'Lora', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; text-align: center; margin-bottom: 12px; }

.section-sub { text-align: center; color: var(--muted); font-size: 1rem; max-width: 560px; margin: 0 auto 48px; line-height: 1.7; }


/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 48px 24px 28px; font-size: 0.82rem; line-height: 1.7; }

.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }

footer h4 { font-family: 'Lora', serif; color: #fff; font-size: 1rem; margin-bottom: 14px; }

footer a { color: rgba(255,255,255,0.55); text-decoration: none; display: block; margin-bottom: 8px; transition: color 0.2s; }

footer a:hover { color: var(--sky); }

.footer-bottom { max-width: 1100px; margin: 32px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.35); }


/* LEGAL PAGES */
.page-content { max-width: 800px; margin: 0 auto; padding: 60px 24px 80px; }

.page-content h1 { font-family: 'Lora', serif; font-size: 2.2rem; margin-bottom: 24px; margin-top: 24px; }

.page-content h2 { font-size: 1.15rem; font-weight: 600; margin: 28px 0 10px; color: var(--steel); }

.page-content h3 { font-size: 1rem; font-weight: 600; margin: 18px 0 8px; }

.page-content p, .page-content li { color: var(--muted); margin-bottom: 12px; line-height: 1.75; }

.page-content ul { padding-left: 20px; margin-bottom: 16px; }

.page-content a { color: var(--accent); }

.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-size: 0.88rem; font-weight: 500; text-decoration: none; }


@media (max-width: 768px) {
  .hero-inner, .benefits-inner { grid-template-columns: 1fr; }
  .stats-grid, .how-grid, .reviews-grid, .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}


/* ===== BLOG CARDS ===== */
.blog-card { border-radius: 12px; overflow: hidden; background: var(--cream); border: 1px solid var(--border); text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s; }

.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,27,42,0.1); }

.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }

.blog-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform 0.4s; }

.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.blog-tag { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.09em; color: var(--accent); margin-bottom: 9px; }

.blog-card h3 { font-family: 'Lora', serif; font-size: 1.02rem; font-weight: 600; line-height: 1.4; margin-bottom: 9px; }

.blog-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; flex: 1; }

.blog-read-more { margin-top: 14px; font-size: 0.8rem; font-weight: 600; color: var(--accent); }


/* ===== ARTICLE PAGES ===== */
.article-hero { background: var(--gradient-hero); padding: 60px 24px 0; }

.article-hero-inner { max-width: 780px; margin: 0 auto; }

.article-hero .blog-tag { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.09em; color: var(--accent); margin-bottom: 12px; display: block; }

.article-hero h1 { font-family: 'Lora', serif; font-size: clamp(1.7rem, 3.5vw, 2.4rem); line-height: 1.25; margin-bottom: 16px; }

.article-meta { color: var(--muted); font-size: 0.84rem; margin-bottom: 32px; }

.article-hero-img { border-radius: 14px 14px 0 0; overflow: hidden; max-height: 420px; }

.article-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.article-body { max-width: 780px; margin: 0 auto; padding: 48px 24px 80px; }

.article-body p { font-size: 1rem; line-height: 1.8; color: #374151; margin-bottom: 20px; }

.article-body h2 { font-family: 'Lora', serif; font-size: 1.5rem; margin: 36px 0 14px; color: var(--navy); }

.article-body h3 { font-size: 1.05rem; font-weight: 600; margin: 22px 0 10px; }

.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 20px; }

.article-body li { font-size: 0.97rem; line-height: 1.75; color: #374151; margin-bottom: 8px; }

.info-box { background: rgba(46,134,193,0.07); border-left: 3px solid var(--accent); border-radius: 0 10px 10px 0; padding: 16px 20px; margin: 24px 0; }

.info-box p { margin: 0; font-size: 0.9rem; }

.disclaimer-article { background: #EBF5FB; border: 1px solid #AED6F1; border-radius: 10px; padding: 16px 20px; margin-top: 40px; font-size: 0.8rem; color: var(--steel); line-height: 1.6; }

.article-cta { background: var(--gradient-hero); border: 1px solid var(--border); border-radius: 14px; padding: 34px; text-align: center; margin: 46px 0; }

.article-cta h3 { font-family: 'Lora', serif; font-size: 1.25rem; margin-bottom: 10px; }

.article-cta p { color: var(--muted); font-size: 0.88rem; margin-bottom: 20px; }


/* ===== BLOG LISTING PAGE ===== */
.blog-card-large { border-radius: 14px; overflow: hidden; background: var(--white); border: 1px solid var(--border); text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s; }

.blog-card-large:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,27,42,0.1); }

.blog-card-large .blog-card-img { aspect-ratio: 16/9; overflow: hidden; }

.blog-card-large .blog-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform 0.4s; }

.blog-card-large:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-large .blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.blog-card-large h2 { font-family: 'Lora', serif; font-size: 1.18rem; font-weight: 600; line-height: 1.4; margin-bottom: 10px; }

.blog-card-large p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; flex: 1; }


/* ADVERTORIAL LABEL */
.advertorial-label {
  background: #fff8f0;
  border-bottom: 1px solid #f0e8df;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a7a60;
  padding: 5px 16px;
  font-weight: 700;
}


/* NAV extended — more items */
@media (min-width: 769px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.84rem; }
  .nav-logo { flex-shrink: 0; white-space: nowrap; }
  .nav-cta { flex-shrink: 0; white-space: nowrap; }
}


/* ===== AWARENESS BLOCK ===== */
.awareness-section { padding: 80px 24px; background: var(--gradient-dark); }

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

.section-eyebrow-tag {
  display: inline-block; background: rgba(46,134,193,0.2); color: var(--sky);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 6px; margin-bottom: 16px;
}

.awareness-section .section-title { color: #fff; }

.awareness-section .section-sub { color: rgba(255,255,255,0.6); margin-bottom: 48px; }

.awareness-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; margin-bottom: 48px;
}

.aw-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 28px 20px;
  display: flex; flex-direction: column; gap: 8px;
}

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

.aw-num { font-family: 'Lora', serif; font-size: 2rem; font-weight: 600; color: var(--sky); line-height: 1.1; }

.aw-label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; line-height: 1.4; }

.aw-text { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin: 0; }

.aw-cta-row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 28px 36px;
}

.aw-cta-text { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.85); margin: 0; max-width: 500px; }


/* ===== GIPER TRUST BADGES ===== */
.tp-trust-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 24px;
}

.tp-trust-badge {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px; padding: 8px 14px;
  font-size: 0.8rem; color: rgba(255,255,255,0.75); font-weight: 500;
}


@media(max-width:768px) {
  .awareness-grid { grid-template-columns: 1fr 1fr; }
  .aw-cta-row { flex-direction: column; text-align: center; padding: 24px 20px; }
}

@media(max-width:480px) {
  .awareness-grid { grid-template-columns: 1fr; }
}


/* ===== MOVED FROM index.html inline <style> ===== */

/* HERO */
.hero { background: var(--gradient-hero); padding: 80px 24px 60px; position: relative; overflow: hidden; }

.hero::before { content: ''; position: absolute; top: -120px; right: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(46,134,193,0.08) 0%, transparent 70%); border-radius: 50%; }

.hero::after { content: ''; position: absolute; bottom: -60px; left: -40px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(93,173,226,0.07) 0%, transparent 70%); border-radius: 50%; }

.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }

.hero-eyebrow { display: inline-block; background: rgba(46,134,193,0.1); color: var(--accent); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 4px; margin-bottom: 18px; }

.hero h1 { font-family: 'Lora', serif; font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.2; font-weight: 600; margin-bottom: 20px; }

.hero h1 em { font-style: italic; color: var(--accent); }

.hero-sub { font-size: 1.02rem; color: var(--muted); line-height: 1.75; margin-bottom: 32px; max-width: 460px; }

.hero-badges { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 20px; }

.hero-badge { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; color: var(--muted); font-weight: 500; }

.hero-badge::before { content: '✓'; color: var(--accent); font-weight: 700; }


/* PRODUCT GALLERY */
.product-gallery { position: relative; }

.gallery-main { border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(13,27,42,0.15); aspect-ratio: 1; background: #f0f4f8; display: flex; align-items: center; justify-content: center; }

.gallery-main img { width: 100%; height: 100%; object-fit: contain; background: #f0f4f8; transition: opacity 0.35s; }

.gallery-thumbs { display: flex; gap: 10px; margin-top: 14px; justify-content: center; flex-wrap: wrap; }

.gallery-thumb { width: 58px; height: 58px; border-radius: 8px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; background: #f0f4f8; }

.gallery-thumb.active { border-color: var(--accent); }

.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; background: #f0f4f8; }


/* STATS */
.stats-section { background: var(--white); padding: 64px 24px; }

.stats-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.stat-card { text-align: center; padding: 32px 20px; border-radius: 12px; background: var(--cream); border: 1px solid var(--border); }

.stat-number { font-family: 'Lora', serif; font-size: 2.6rem; font-weight: 600; color: var(--accent); line-height: 1; margin-bottom: 8px; }

.stat-label { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }


/* HOW */
.how-section { padding: 80px 24px; background: var(--cream); }

.how-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.how-card { padding: 32px 24px; border-radius: 12px; background: var(--white); border: 1px solid var(--border); }

.how-number { width: 40px; height: 40px; border-radius: 8px; background: var(--accent); color: #fff; font-weight: 700; font-size: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }

.how-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }

.how-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.7; }


/* BENEFITS */
.benefits-section { padding: 80px 24px; background: var(--white); }

.benefits-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.benefits-img { border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(13,27,42,0.1); background: #f0f4f8; }

.benefits-img img { width: 100%; display: block; object-fit: contain; min-height: 400px; }

.benefit-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }

.benefit-icon { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; background: rgba(46,134,193,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }

.benefit-item h4 { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }

.benefit-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }


/* REVIEWS */
.reviews-section { padding: 80px 24px; background: var(--cream); }

.reviews-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.review-card { padding: 26px 22px; border-radius: 12px; background: var(--white); border: 1px solid var(--border); }

.stars { color: #F4D03F; font-size: 0.95rem; margin-bottom: 12px; }

.review-text { font-size: 0.87rem; color: var(--navy); line-height: 1.7; margin-bottom: 16px; }

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

.reviewer-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gradient-dark); color: #fff; font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; }

.reviewer-name { font-weight: 600; font-size: 0.84rem; }

.reviewer-location { font-size: 0.76rem; color: var(--muted); }


/* ORDER */
.order-section { padding: 80px 24px; background: var(--gradient-dark); }

.order-inner { max-width: 580px; margin: 0 auto; text-align: center; }

.order-section .section-title { color: #fff; }

.order-section .section-sub { color: rgba(255,255,255,0.6); }

.order-form { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 36px; margin-top: 8px; }

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

.form-field { display: flex; flex-direction: column; }

.form-field.full { grid-column: 1/-1; }

.form-field label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-bottom: 6px; font-weight: 500; }

.form-field input { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 12px 14px; color: #fff; font-size: 0.9rem; font-family: 'Sora', sans-serif; transition: border-color 0.2s; }

.form-field input::placeholder { color: rgba(255,255,255,0.28); }

.form-field input:focus { outline: none; border-color: var(--sky); }

.form-privacy { font-size: 0.74rem; color: rgba(255,255,255,0.38); margin-bottom: 20px; text-align: left; line-height: 1.6; }

.form-privacy a { color: rgba(255,255,255,0.5); }


/* BLOG */
.blog-section { padding: 80px 24px; background: var(--white); }

.blog-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.blog-card { border-radius: 12px; overflow: hidden; background: var(--cream); border: 1px solid var(--border); text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s; }


/* ARTICLE */
.article-hero { background: var(--gradient-hero); padding: 60px 24px 0; }


/* from blog.html */

.blog-hero { background: var(--gradient-hero); padding: 70px 24px 50px; text-align: center; }

.blog-hero h1 { font-family: 'Lora', serif; font-size: clamp(2rem, 4vw, 2.7rem); margin-bottom: 14px; }

.blog-hero p { color: var(--muted); font-size: 1.02rem; max-width: 500px; margin: 0 auto; }

.blog-listing { padding: 64px 24px 80px; }

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

.blog-grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.blog-card-large { border-radius: 14px; overflow: hidden; background: var(--white); border: 1px solid var(--border); text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s; }



/* from site2/blog.html */

.blog-hero { background: var(--gradient-hero); padding: 70px 24px 50px; text-align: center; }



/* from site2/index.html */

/* HERO */
.hero { background: var(--gradient-hero); padding: 80px 24px 60px; position: relative; overflow: hidden; }



/* from site2/thank-you.html */

.thanks-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 60px 24px; background: var(--gradient-hero); }

.thanks-box { max-width: 520px; text-align: center; background: var(--white); border-radius: 20px; padding: 52px 44px; box-shadow: 0 20px 60px rgba(13,27,42,0.08); border: 1px solid var(--border); }

.thanks-icon { width: 76px; height: 76px; border-radius: 50%; background: var(--accent); margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #fff; }

.thanks-box h1 { font-family: 'Lora', serif; font-size: 1.9rem; margin-bottom: 16px; }

.thanks-box p { color: var(--muted); line-height: 1.75; margin-bottom: 12px; }



/* from thank-you.html */

.thanks-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 60px 24px; background: var(--gradient-hero); }