:root {
  --navy: #0f1d45;
  --navy-deep: #0a1230;
  --navy-dark: #070d20;
  --navy-mid: #162556;
  --navy-light: #1e3270;
  --red: #c4282a;
  --red-bright: #e03234;
  --red-dark: #9e1e20;
  --blue: #5bb8e8;
  --blue-light: #8ad0f0;
  --blue-dim: #3a8ab8;
  --white: #ffffff;
  --cream: #f0ece4;
  --silver: #8a96b0;
  --gold: #f0c850;
  --green: #34a853;
  --section-pad: 80px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family:'Source Sans 3',sans-serif; background:var(--navy-dark); color:var(--cream); overflow-x:hidden; }

/* ========== NAV ========== */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(7,13,32,0.92); backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(91,184,232,0.08);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow:0 2px 24px rgba(0,0,0,0.4); }
.nav-inner {
  max-width:1100px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 24px;
}
.nav-logo { height:56px; width:auto; }
.nav-links { display:flex; gap:28px; align-items:center; }
.nav-links a {
  color:var(--silver); text-decoration:none;
  font-family:'Oswald',sans-serif; font-size:13px;
  font-weight:400; letter-spacing:1.5px; text-transform:uppercase;
  transition:color 0.2s;
}
.nav-links a:hover { color:var(--blue); }
.nav-cta {
  background:var(--red); color:var(--white) !important;
  padding:8px 18px; border-radius:6px;
  font-weight:600 !important; letter-spacing:1px !important;
  transition:background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background:var(--red-bright) !important; transform:translateY(-1px); }
.hamburger { display:none; background:none; border:none; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--cream); margin:5px 0; transition:0.3s; }
.mobile-menu {
  display:none; position:fixed; top:72px; left:0; right:0;
  background:rgba(7,13,32,0.97); backdrop-filter:blur(16px);
  padding:20px 24px; border-bottom:1px solid rgba(91,184,232,0.1);
  flex-direction:column; gap:16px;
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  color:var(--cream); text-decoration:none;
  font-family:'Oswald',sans-serif; font-size:16px;
  letter-spacing:1.5px; text-transform:uppercase;
  padding:8px 0; border-bottom:1px solid rgba(91,184,232,0.06);
}

@media(max-width:768px) {
  .nav-links { display:none; }
  .hamburger { display:block; }
}

/* ========== HERO ========== */
.hero {
  min-height:100vh; display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden; padding:120px 24px 80px;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(91,184,232,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(196,40,42,0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(22,37,86,0.8) 0%, var(--navy-dark) 70%);
}
.hero-content { position:relative; z-index:1; text-align:center; max-width:700px; }
.hero-logo { width:260px; height:auto; margin:0 auto 24px; display:block; filter:drop-shadow(0 8px 32px rgba(91,184,232,0.15)); animation:fadeDown 0.8s ease-out; }
.hero h1 {
  font-family:'Oswald',sans-serif; font-weight:700;
  font-size:clamp(28px,5vw,48px); color:var(--white);
  line-height:1.15; margin-bottom:16px; animation:fadeUp 0.8s ease-out 0.1s both;
}
.hero h1 em { font-style:normal; color:var(--blue); }
.hero p {
  font-size:18px; color:var(--silver); line-height:1.6;
  max-width:520px; margin:0 auto 32px;
  animation:fadeUp 0.8s ease-out 0.2s both;
}
.hero-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; animation:fadeUp 0.8s ease-out 0.3s both; }
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 28px; border-radius:10px; text-decoration:none;
  font-family:'Oswald',sans-serif; font-size:16px; font-weight:600;
  letter-spacing:1px; text-transform:uppercase; transition:all 0.25s;
  cursor:pointer; border:none;
}
.btn-primary { background:linear-gradient(135deg,var(--red-dark),var(--red)); color:var(--white); }
.btn-primary:hover { background:linear-gradient(135deg,var(--red),var(--red-bright)); transform:translateY(-2px); box-shadow:0 6px 24px rgba(196,40,42,0.3); }
.btn-outline { background:transparent; border:2px solid rgba(91,184,232,0.3); color:var(--blue); }
.btn-outline:hover { border-color:var(--blue); background:rgba(91,184,232,0.08); transform:translateY(-2px); }

/* ========== SECTIONS ========== */
section { padding:var(--section-pad) 24px; }
.section-inner { max-width:1000px; margin:0 auto; }
.section-tag {
  font-family:'Oswald',sans-serif; font-size:13px; font-weight:400;
  letter-spacing:4px; text-transform:uppercase; color:var(--blue);
  margin-bottom:8px; text-align:center;
}
.section-title {
  font-family:'Oswald',sans-serif; font-weight:700;
  font-size:clamp(26px,4vw,40px); color:var(--white);
  text-align:center; margin-bottom:16px; line-height:1.2;
}
.section-subtitle {
  font-size:16px; color:var(--silver); text-align:center;
  max-width:600px; margin:0 auto 48px; line-height:1.6;
}
.accent-line {
  width:60px; height:3px; margin:16px auto 0;
  background:linear-gradient(90deg,var(--red),var(--blue));
  border-radius:2px;
}

/* Alt bg */
.bg-alt { background:rgba(15,29,69,0.3); }
.bg-dark { background:var(--navy-deep); }

/* ========== ABOUT ========== */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.about-text h3 { font-family:'Oswald',sans-serif; font-size:28px; color:var(--white); margin-bottom:16px; }
.about-text p { font-size:16px; color:var(--silver); line-height:1.7; margin-bottom:16px; }
.about-stats { display:flex; gap:32px; margin-top:24px; }
.stat { text-align:center; }
.stat-num { font-family:'Oswald',sans-serif; font-size:36px; font-weight:700; color:var(--blue); }
.stat-label { font-size:13px; color:var(--silver); text-transform:uppercase; letter-spacing:1px; }
.about-image {
  background:linear-gradient(135deg,rgba(91,184,232,0.1),rgba(196,40,42,0.05));
  border:1px solid rgba(91,184,232,0.1); border-radius:16px;
  padding:40px; text-align:center; min-height:300px;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; color:var(--silver);
}
@media(max-width:768px) {
  .about-grid { grid-template-columns:1fr; }
  .about-stats { justify-content:center; }
}

/* ========== CHEMISTRY ========== */
.chem-intro {
  max-width:760px; margin:0 auto 48px; text-align:center;
  font-size:16px; color:var(--silver); line-height:1.7;
}
.chem-intro strong { color:var(--cream); font-weight:600; }
.chem-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px;
}
.chem-card {
  background:linear-gradient(170deg,rgba(26,45,96,0.5),rgba(15,22,45,0.7));
  border:1px solid rgba(91,184,232,0.1); border-radius:14px;
  padding:28px 24px; position:relative; overflow:hidden;
  transition:transform 0.25s, border-color 0.25s;
}
.chem-card:hover { transform:translateY(-3px); border-color:rgba(91,184,232,0.25); }
.chem-icon { font-size:32px; margin-bottom:12px; display:block; }
.chem-card h4 {
  font-family:'Oswald',sans-serif; font-size:18px; font-weight:600;
  color:var(--white); margin-bottom:6px; letter-spacing:0.5px;
}
.chem-tier {
  font-family:'Oswald',sans-serif; font-size:11px; font-weight:500;
  letter-spacing:1.5px; text-transform:uppercase;
  color:var(--blue); margin-bottom:12px; opacity:0.85;
}
.chem-card p { font-size:14px; color:var(--silver); line-height:1.6; }
.chem-attribution {
  text-align:center; margin-top:32px; font-size:13px;
  color:var(--silver); opacity:0.7; font-style:italic;
}

/* ========== VALUES ========== */
.values-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:20px;
  max-width:900px; margin:0 auto;
}
.value-card {
  background:rgba(15,29,69,0.4); border:1px solid rgba(91,184,232,0.08);
  border-radius:12px; padding:24px 20px; text-align:center;
  transition:transform 0.2s, border-color 0.2s;
}
.value-card:hover { transform:translateY(-3px); border-color:rgba(91,184,232,0.2); }
.value-icon { font-size:32px; margin-bottom:10px; display:block; }
.value-card h4 { font-family:'Oswald',sans-serif; font-size:16px; color:var(--white); margin-bottom:6px; letter-spacing:0.5px; }
.value-card p { font-size:13px; color:var(--silver); line-height:1.5; }

/* ========== BLOG ========== */
.blog-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px;
}
.blog-card {
  background:linear-gradient(170deg,rgba(26,45,96,0.5),rgba(15,22,45,0.7));
  border:1px solid rgba(91,184,232,0.1); border-radius:14px;
  overflow:hidden; transition:transform 0.25s, border-color 0.25s;
  display:flex; flex-direction:column;
}
.blog-card:hover { transform:translateY(-4px); border-color:rgba(91,184,232,0.25); }
.blog-thumb {
  height:160px;
  background:linear-gradient(135deg,var(--navy-mid),var(--navy-light));
  display:flex; align-items:center; justify-content:center;
  font-size:48px; position:relative; overflow:hidden;
}
.blog-thumb::after {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at center,transparent 30%,rgba(7,13,32,0.4) 100%);
}
.blog-content { padding:24px; flex:1; display:flex; flex-direction:column; }
.blog-meta {
  font-family:'Oswald',sans-serif; font-size:11px; font-weight:500;
  letter-spacing:1.5px; text-transform:uppercase;
  color:var(--blue); margin-bottom:10px;
}
.blog-card h4 {
  font-family:'Oswald',sans-serif; font-size:18px; font-weight:600;
  color:var(--white); margin-bottom:10px; line-height:1.3;
}
.blog-card p {
  font-size:14px; color:var(--silver); line-height:1.6;
  margin-bottom:16px; flex:1;
}
.blog-link {
  font-family:'Oswald',sans-serif; font-size:13px; font-weight:600;
  letter-spacing:1px; text-transform:uppercase;
  color:var(--blue); text-decoration:none;
  display:inline-flex; align-items:center; gap:6px;
  transition:color 0.2s, gap 0.2s;
}
.blog-link:hover { color:var(--blue-light); gap:10px; }

/* ========== BLOG ARTICLE MODAL ========== */
.article-overlay {
  display:none; position:fixed; inset:0; z-index:200;
  background:rgba(7,13,32,0.85); backdrop-filter:blur(8px);
  overflow-y:auto; padding:40px 20px;
}
.article-overlay.open { display:block; animation:fadeUp 0.3s ease-out; }
.article-modal {
  max-width:720px; margin:0 auto;
  background:var(--navy-deep); border:1px solid rgba(91,184,232,0.15);
  border-radius:16px; padding:48px 40px; position:relative;
}
.article-close {
  position:absolute; top:16px; right:16px;
  background:rgba(91,184,232,0.1); border:1px solid rgba(91,184,232,0.2);
  color:var(--cream); width:36px; height:36px; border-radius:50%;
  cursor:pointer; font-size:18px; transition:all 0.2s;
  display:flex; align-items:center; justify-content:center;
}
.article-close:hover { background:rgba(196,40,42,0.2); border-color:var(--red); color:var(--red-bright); }
.article-modal .blog-meta { margin-bottom:12px; }
.article-modal h2 {
  font-family:'Oswald',sans-serif; font-size:28px; font-weight:700;
  color:var(--white); line-height:1.2; margin-bottom:24px;
}
.article-modal h3 {
  font-family:'Oswald',sans-serif; font-size:20px; color:var(--white);
  margin-top:28px; margin-bottom:12px;
}
.article-modal p {
  font-size:16px; color:var(--cream); line-height:1.75;
  margin-bottom:16px;
}
.article-modal ul { padding-left:20px; margin-bottom:16px; color:var(--cream); }
.article-modal li { font-size:16px; line-height:1.75; margin-bottom:8px; }
@media(max-width:600px){
  .article-modal{ padding:32px 24px; }
  .article-modal h2{ font-size:22px; }
}

/* ========== WHY AUTOMATIC ========== */
.why-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; }
.why-card {
  background:linear-gradient(170deg,rgba(26,45,96,0.5),rgba(15,22,45,0.7));
  border:1px solid rgba(91,184,232,0.1); border-radius:14px;
  padding:32px 28px; position:relative; overflow:hidden;
  transition:transform 0.25s, border-color 0.25s;
}
.why-card:hover { transform:translateY(-4px); border-color:rgba(91,184,232,0.25); }
.why-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--blue),var(--red));
  opacity:0; transition:opacity 0.25s;
}
.why-card:hover::before { opacity:1; }
.why-icon { font-size:36px; margin-bottom:16px; display:block; }
.why-card h4 { font-family:'Oswald',sans-serif; font-size:18px; color:var(--white); margin-bottom:8px; }
.why-card p { font-size:14px; color:var(--silver); line-height:1.6; }
.vs-label {
  display:inline-block; background:rgba(196,40,42,0.15);
  color:var(--red-bright); font-size:11px; font-weight:600;
  padding:3px 10px; border-radius:4px; margin-bottom:12px;
  font-family:'Oswald',sans-serif; letter-spacing:1px; text-transform:uppercase;
}

/* ========== TECHNOLOGY ========== */
.tech-cards { display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.tech-card {
  background:linear-gradient(170deg,rgba(26,45,96,0.5),rgba(15,22,45,0.7));
  border:1px solid rgba(91,184,232,0.1); border-radius:16px;
  padding:40px 32px; position:relative; overflow:hidden;
}
.tech-card.coming-soon { border-color:rgba(240,200,80,0.2); }
.tech-card.coming-soon::after {
  content:'COMING SOON'; position:absolute; top:20px; right:-32px;
  background:var(--gold); color:var(--navy-dark);
  font-family:'Oswald',sans-serif; font-size:11px; font-weight:700;
  letter-spacing:2px; padding:6px 40px;
  transform:rotate(45deg);
}
.tech-badge {
  display:inline-block; font-family:'Oswald',sans-serif; font-size:12px;
  font-weight:600; letter-spacing:2px; text-transform:uppercase;
  padding:4px 12px; border-radius:6px; margin-bottom:16px;
}
.tech-badge.active { background:rgba(52,168,83,0.15); color:var(--green); }
.tech-badge.soon { background:rgba(240,200,80,0.15); color:var(--gold); }
.tech-card h3 { font-family:'Oswald',sans-serif; font-size:24px; color:var(--white); margin-bottom:8px; }
.tech-card .tech-sub { font-size:14px; color:var(--blue); margin-bottom:16px; font-weight:500; }
.tech-card p { font-size:15px; color:var(--silver); line-height:1.65; margin-bottom:16px; }
.tech-features { list-style:none; }
.tech-features li {
  font-size:14px; color:var(--silver); padding:6px 0;
  padding-left:24px; position:relative; line-height:1.5;
}
.tech-features li::before {
  content:'✦'; position:absolute; left:0; color:var(--blue); font-size:12px;
}
.tech-card.coming-soon .tech-features li::before { color:var(--gold); }
@media(max-width:768px) { .tech-cards { grid-template-columns:1fr; } }

/* ========== PACKAGES ========== */
.pkg-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:24px; }
.pkg-card {
  background:linear-gradient(170deg,rgba(26,45,96,0.5),rgba(15,22,45,0.7));
  border:1px solid rgba(91,184,232,0.1); border-radius:14px;
  padding:32px 24px; text-align:center;
  transition:transform 0.25s, border-color 0.25s;
}
.pkg-card.featured { border-color:var(--blue); }
.pkg-card.featured .pkg-name { color:var(--blue); }
.pkg-card:hover { transform:translateY(-4px); }
.pkg-name { font-family:'Oswald',sans-serif; font-size:20px; font-weight:600; color:var(--white); margin-bottom:4px; }
.pkg-price { font-family:'Oswald',sans-serif; font-size:36px; font-weight:700; color:var(--white); margin-bottom:4px; }
.pkg-price span { font-size:16px; font-weight:400; color:var(--silver); }
.pkg-note { font-size:12px; color:var(--silver); margin-bottom:20px; }
.pkg-list { list-style:none; text-align:left; margin-bottom:24px; }
.pkg-list li { font-size:14px; color:var(--silver); padding:6px 0; padding-left:20px; position:relative; }
.pkg-list li::before { content:'✓'; position:absolute; left:0; color:var(--green); font-weight:700; }
.pkg-list li.not::before { content:'—'; color:var(--silver); opacity:0.3; }
.pkg-btn {
  display:block; width:100%; padding:12px;
  background:rgba(91,184,232,0.08); border:1px solid rgba(91,184,232,0.2);
  border-radius:8px; color:var(--blue); font-family:'Oswald',sans-serif;
  font-size:14px; font-weight:500; letter-spacing:1px; text-transform:uppercase;
  cursor:pointer; transition:all 0.2s; text-decoration:none; text-align:center;
}
.pkg-btn:hover { background:rgba(91,184,232,0.15); border-color:var(--blue); }
.pkg-card.featured .pkg-btn { background:var(--red); border-color:var(--red); color:var(--white); }
.pkg-card.featured .pkg-btn:hover { background:var(--red-bright); }
.pkg-disclaimer { text-align:center; font-size:13px; color:var(--silver); margin-top:24px; opacity:0.7; font-style:italic; }

/* ========== LOCATION ========== */
.loc-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }
.loc-info h3 { font-family:'Oswald',sans-serif; font-size:22px; color:var(--white); margin-bottom:16px; }
.loc-detail { display:flex; gap:12px; margin-bottom:16px; align-items:flex-start; }
.loc-detail svg { width:20px; height:20px; flex-shrink:0; color:var(--blue); margin-top:2px; }
.loc-detail div { font-size:15px; color:var(--silver); line-height:1.5; }
.loc-detail strong { color:var(--white); font-weight:600; display:block; margin-bottom:2px; }
.loc-map {
  background:rgba(26,45,96,0.4); border:1px solid rgba(91,184,232,0.1);
  border-radius:14px; overflow:hidden; min-height:300px;
}
.loc-map iframe { width:100%; height:350px; border:0; filter:brightness(0.8) contrast(1.1); }
.directions-btn {
  display:inline-flex; align-items:center; gap:8px;
  margin-top:16px; padding:10px 20px;
  background:rgba(91,184,232,0.08); border:1px solid rgba(91,184,232,0.2);
  border-radius:8px; color:var(--blue); text-decoration:none;
  font-family:'Oswald',sans-serif; font-size:14px; font-weight:500;
  letter-spacing:1px; text-transform:uppercase; transition:all 0.2s;
}
.directions-btn:hover { background:rgba(91,184,232,0.15); border-color:var(--blue); }
@media(max-width:768px) { .loc-grid { grid-template-columns:1fr; } }

/* ========== REVIEW SECTION ========== */
.review-card {
  max-width:520px; margin:0 auto;
  background:linear-gradient(170deg,rgba(26,45,96,0.6),rgba(15,22,45,0.8));
  border:1px solid rgba(91,184,232,0.12); border-radius:16px;
  padding:40px 32px; position:relative; overflow:hidden;
  backdrop-filter:blur(8px);
}
.review-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--navy-light) 0%,var(--navy-light) 33%,var(--white) 33%,var(--white) 50%,var(--red) 50%,var(--red) 100%);
}
.r-screen { display:none; width:100%; }
.r-screen.active { display:block; animation:fadeUp 0.4s ease-out; }
.q-text { font-family:'Oswald',sans-serif; font-weight:600; font-size:22px; text-align:center; color:var(--white); margin-bottom:6px; line-height:1.3; }
.q-sub { font-size:15px; text-align:center; color:var(--silver); margin-bottom:28px; }
.r-thumbs { display:flex; justify-content:center; gap:24px; }
.r-thumb {
  display:flex; flex-direction:column; align-items:center; gap:10px;
  background:none; border:2px solid rgba(91,184,232,0.12);
  border-radius:16px; padding:22px 34px; cursor:pointer;
  transition:all 0.25s; color:var(--silver);
  -webkit-tap-highlight-color:transparent;
}
.r-thumb svg { width:48px; height:48px; transition:transform 0.2s; }
.r-thumb span { font-family:'Oswald',sans-serif; font-size:14px; font-weight:500; letter-spacing:1px; text-transform:uppercase; }
.r-thumb.yes { border-color:rgba(52,168,83,0.2); }
.r-thumb.yes:hover { border-color:var(--green); background:rgba(52,168,83,0.08); color:var(--green); transform:translateY(-3px); }
.r-thumb.no { border-color:rgba(196,40,42,0.15); }
.r-thumb.no:hover { border-color:var(--red); background:rgba(196,40,42,0.06); color:var(--red); transform:translateY(-3px); }
.r-thumb:active { transform:translateY(0) scale(0.97); }
.r-header { text-align:center; margin-bottom:24px; }
.r-header .r-emoji { font-size:44px; margin-bottom:10px; display:block; animation:popIn 0.4s ease-out; }
.r-header h3 { font-family:'Oswald',sans-serif; font-size:20px; color:var(--white); margin-bottom:6px; }
.r-header p { font-size:14px; color:var(--silver); line-height:1.5; }
.r-google {
  display:flex; align-items:center; gap:14px;
  width:100%; padding:16px 20px;
  border:1px solid rgba(66,133,244,0.3); border-radius:12px;
  background:rgba(66,133,244,0.08); color:var(--white);
  font-family:'Oswald',sans-serif; font-size:17px; font-weight:600;
  letter-spacing:0.5px; cursor:pointer; transition:all 0.25s; text-decoration:none;
}
.r-google:hover { border-color:#4285f4; background:rgba(66,133,244,0.14); transform:translateY(-2px); box-shadow:0 6px 24px rgba(66,133,244,0.15); }
.r-google svg { width:28px; height:28px; flex-shrink:0; }
.r-google .r-arrow { margin-left:auto; color:var(--silver); font-size:18px; transition:transform 0.2s; }
.r-google:hover .r-arrow { transform:translateX(3px); }
.r-divider { display:flex; align-items:center; gap:16px; margin:18px 0; color:var(--silver); font-size:13px; letter-spacing:1px; text-transform:uppercase; }
.r-divider::before,.r-divider::after { content:''; flex:1; height:1px; background:linear-gradient(90deg,transparent,rgba(91,184,232,0.15),transparent); }
.r-contact-toggle {
  display:flex; align-items:center; gap:12px; width:100%; padding:13px 18px;
  border:1px solid rgba(91,184,232,0.12); border-radius:12px;
  background:rgba(21,35,84,0.3); color:var(--cream);
  font-family:'Source Sans 3',sans-serif; font-size:14px; cursor:pointer; transition:all 0.2s; text-align:left;
}
.r-contact-toggle:hover { border-color:rgba(91,184,232,0.25); background:rgba(91,184,232,0.06); }
.r-contact-toggle .r-tog-arrow { margin-left:auto; color:var(--silver); font-size:14px; transition:transform 0.25s; }
.r-contact-toggle.open .r-tog-arrow { transform:rotate(180deg); }
.r-form-wrap { max-height:0; overflow:hidden; transition:max-height 0.35s ease, opacity 0.3s ease; opacity:0; }
.r-form-wrap.open { max-height:500px; opacity:1; margin-top:14px; }
.r-fg { margin-bottom:12px; }
.r-fg label { display:block; font-size:12px; font-weight:500; color:var(--silver); margin-bottom:5px; text-transform:uppercase; letter-spacing:1px; }
.r-fg input, .r-fg textarea {
  width:100%; padding:10px 14px; background:rgba(21,35,84,0.5);
  border:1px solid rgba(91,184,232,0.15); border-radius:10px;
  color:var(--white); font-family:'Source Sans 3',sans-serif; font-size:14px;
  outline:none; transition:border-color 0.2s, box-shadow 0.2s;
}
.r-fg input:focus, .r-fg textarea:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(91,184,232,0.08); }
.r-fg input::placeholder, .r-fg textarea::placeholder { color:rgba(138,150,176,0.45); }
.r-fg textarea { min-height:90px; resize:vertical; }
.r-send {
  width:100%; padding:12px; background:linear-gradient(135deg,var(--red-dark),var(--red));
  border:none; border-radius:10px; color:var(--white);
  font-family:'Oswald',sans-serif; font-weight:600; font-size:15px;
  letter-spacing:1.5px; text-transform:uppercase; cursor:pointer; transition:all 0.2s; margin-top:4px;
}
.r-send:hover { background:linear-gradient(135deg,var(--red),var(--red-bright)); transform:translateY(-1px); }
.r-sent { display:none; text-align:center; padding:14px 0 4px; font-size:14px; color:var(--blue); }
.r-sent.visible { display:block; animation:fadeUp 0.3s ease-out; }
.r-google-label { text-align:center; font-size:14px; color:var(--silver); margin-bottom:12px; line-height:1.5; }
.r-back { background:none; border:none; color:var(--silver); font-size:14px; cursor:pointer; margin-top:18px; padding:8px; display:block; text-align:center; width:100%; transition:color 0.2s; font-family:'Source Sans 3',sans-serif; }
.r-back:hover { color:var(--blue); }

/* ========== FAQ ========== */
.faq-list { max-width:700px; margin:0 auto; }
.faq-item { border-bottom:1px solid rgba(91,184,232,0.08); }
.faq-q {
  width:100%; background:none; border:none; color:var(--white);
  font-family:'Oswald',sans-serif; font-size:17px; font-weight:500;
  text-align:left; padding:20px 0; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
  transition:color 0.2s;
}
.faq-q:hover { color:var(--blue); }
.faq-q .faq-icon { color:var(--blue); font-size:20px; transition:transform 0.3s; }
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height 0.35s ease; }
.faq-a-inner { padding:0 0 20px; font-size:15px; color:var(--silver); line-height:1.65; }

/* ========== FOOTER ========== */
.footer {
  background:var(--navy-deep); border-top:1px solid rgba(91,184,232,0.06);
  padding:48px 24px 32px;
}
.footer-inner { max-width:1000px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr; gap:40px; }
.footer h4 { font-family:'Oswald',sans-serif; font-size:16px; color:var(--white); letter-spacing:1px; text-transform:uppercase; margin-bottom:16px; }
.footer p, .footer a { font-size:14px; color:var(--silver); line-height:1.6; }
.footer a { text-decoration:none; display:block; margin-bottom:8px; transition:color 0.2s; }
.footer a:hover { color:var(--blue); }
.footer-logo { height:64px; width:auto; margin-bottom:12px; }
.footer-social { display:flex; justify-content:center; gap:28px; margin-top:32px; padding-top:24px; border-top:1px solid rgba(91,184,232,0.06); }
.footer-social a { color:var(--silver); display:inline-flex; align-items:center; transition:color 0.2s, transform 0.2s; margin:0; }
.footer-social a:hover { color:var(--blue); transform:translateY(-2px); }
.footer-bottom { text-align:center; margin-top:16px; padding-top:0; border-top:none; font-size:13px; color:var(--silver); opacity:0.6; }
@media(max-width:768px) { .footer-inner { grid-template-columns:1fr; } }

/* ========== ANIMATIONS ========== */
@keyframes fadeDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes popIn { 0% { transform:scale(0.5); opacity:0; } 70% { transform:scale(1.1); } 100% { transform:scale(1); opacity:1; } }


/* ========== PAGE HERO (smaller than homepage hero) ========== */
.page-hero {
  position:relative; padding:140px 24px 60px;
  text-align:center; overflow:hidden;
  background:linear-gradient(170deg,rgba(26,45,96,0.4),rgba(7,13,32,0.7));
  border-bottom:1px solid rgba(91,184,232,0.1);
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 0%,rgba(91,184,232,0.08) 0%,transparent 60%);
  pointer-events:none;
}
.page-hero-inner { position:relative; z-index:1; max-width:760px; margin:0 auto; }
.page-hero .crumb {
  font-family:'Oswald',sans-serif; font-size:12px; letter-spacing:3px;
  text-transform:uppercase; color:var(--blue); margin-bottom:14px; opacity:0.85;
}
.page-hero h1 {
  font-family:'Oswald',sans-serif; font-weight:700;
  font-size:clamp(28px,5vw,44px); color:var(--white);
  line-height:1.15; margin-bottom:14px;
}
.page-hero h1 em { font-style:normal; color:var(--blue); }
.page-hero p {
  font-size:17px; color:var(--silver); line-height:1.6;
  max-width:560px; margin:0 auto;
}

/* ========== HOME PAGE TEASERS ========== */
.teaser-section { padding:60px 24px; }
.teaser-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px; max-width:1000px; margin:0 auto;
}
.teaser-card {
  background:linear-gradient(170deg,rgba(26,45,96,0.5),rgba(15,22,45,0.7));
  border:1px solid rgba(91,184,232,0.1); border-radius:14px;
  padding:32px 28px; text-decoration:none; color:inherit;
  transition:transform 0.25s, border-color 0.25s;
  display:flex; flex-direction:column;
}
.teaser-card:hover { transform:translateY(-4px); border-color:rgba(91,184,232,0.25); }
.teaser-card .teaser-icon { font-size:36px; margin-bottom:14px; display:block; }
.teaser-card h4 {
  font-family:'Oswald',sans-serif; font-size:19px; color:var(--white);
  margin-bottom:10px; letter-spacing:0.5px;
}
.teaser-card p { font-size:14px; color:var(--silver); line-height:1.6; flex:1; margin-bottom:14px; }
.teaser-link {
  font-family:'Oswald',sans-serif; font-size:13px; font-weight:600;
  letter-spacing:1.5px; text-transform:uppercase; color:var(--blue);
  display:inline-flex; align-items:center; gap:6px;
  transition:gap 0.2s;
}
.teaser-card:hover .teaser-link { gap:10px; }

/* ========== SECTION CTA BAR ========== */
.cta-bar {
  background:linear-gradient(135deg,var(--navy-mid),var(--navy));
  border:1px solid rgba(91,184,232,0.15); border-radius:16px;
  padding:36px 32px; margin:40px auto; max-width:760px;
  text-align:center; position:relative; overflow:hidden;
}
.cta-bar::before {
  content:''; position:absolute; top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--red),var(--blue));
}
.cta-bar h3 {
  font-family:'Oswald',sans-serif; font-size:22px; color:var(--white);
  margin-bottom:10px;
}
.cta-bar p { font-size:15px; color:var(--silver); margin-bottom:20px; line-height:1.5; }
.cta-bar .cta-buttons { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ========== BLOG ARTICLE PAGE ========== */
.article {
  max-width:720px; margin:0 auto; padding:60px 24px 80px;
}
.article-meta {
  font-family:'Oswald',sans-serif; font-size:12px; font-weight:500;
  letter-spacing:2px; text-transform:uppercase; color:var(--blue);
  margin-bottom:14px; opacity:0.85;
}
.article h1 {
  font-family:'Oswald',sans-serif; font-weight:700;
  font-size:clamp(26px,4.5vw,38px); color:var(--white);
  line-height:1.2; margin-bottom:32px;
}
.article h2 {
  font-family:'Oswald',sans-serif; font-size:22px; color:var(--white);
  margin-top:36px; margin-bottom:14px;
}
.article p {
  font-size:17px; color:var(--cream); line-height:1.75;
  margin-bottom:18px;
}
.article ul { padding-left:22px; margin-bottom:18px; }
.article li { font-size:17px; color:var(--cream); line-height:1.75; margin-bottom:8px; }
.article strong { color:var(--white); }
.article-back {
  display:inline-flex; align-items:center; gap:6px;
  margin-top:48px; padding:12px 22px;
  border:1px solid rgba(91,184,232,0.2); border-radius:8px;
  color:var(--blue); text-decoration:none;
  font-family:'Oswald',sans-serif; font-size:13px;
  letter-spacing:1.5px; text-transform:uppercase;
  transition:all 0.2s;
}
.article-back:hover { background:rgba(91,184,232,0.08); border-color:var(--blue); }

/* ========== PAGE BODY (not full hero) ========== */
.page-body { padding:60px 24px; }
.page-body .container-narrow { max-width:760px; margin:0 auto; }
.page-body .container { max-width:1000px; margin:0 auto; }

/* ========== ENSURE GOOD MOBILE TOUCH TARGETS ========== */
@media(max-width:768px) {
  .nav-inner { padding:10px 18px; }
  .nav-logo { height:50px; }
  .page-hero { padding:110px 20px 48px; }
  .article { padding:40px 20px 60px; }
  .cta-bar { padding:28px 22px; margin:32px auto; }
  .teaser-section { padding:48px 20px; }
  .btn { padding:12px 22px; font-size:15px; }
  /* Larger touch targets */
  .nav-cta, .btn, .pkg-btn, .send-btn, .submit-btn, .r-thumb {
    min-height:44px;
  }
  .mobile-menu a { padding:12px 0; font-size:17px; }
}

/* =====================================================================
   Text Club — dedicated signup page (text-club.html)
   ===================================================================== */
.tc-card {
  max-width:560px; margin:0 auto;
  background:linear-gradient(135deg,var(--navy-mid),var(--navy-light));
  border:1px solid rgba(91,184,232,0.15); border-radius:16px;
  padding:40px 36px;
  box-shadow:0 10px 40px rgba(0,0,0,0.3);
}
.tc-card .tc-hook {
  display:inline-block; padding:6px 14px;
  background:rgba(240,200,80,0.15); color:var(--gold);
  border-radius:20px; font-size:12px; font-weight:600;
  text-transform:uppercase; letter-spacing:1.5px;
  margin-bottom:20px;
}
.tc-card h1 {
  font-family:'Oswald',sans-serif; font-size:32px; color:var(--white);
  line-height:1.2; margin-bottom:14px; font-weight:600;
}
.tc-card .tc-lede { font-size:16px; color:var(--silver); line-height:1.6; margin-bottom:28px; }
.tc-fg { margin-bottom:18px; }
.tc-fg label {
  display:block; font-size:13px; color:var(--white);
  text-transform:uppercase; letter-spacing:1px; margin-bottom:8px;
  font-weight:600;
}
.tc-fg label .req { color:var(--red-bright); margin-left:2px; }
.tc-input {
  width:100%; padding:14px 16px;
  background:var(--navy-dark);
  border:1px solid rgba(91,184,232,0.2); border-radius:8px;
  color:var(--white); font-size:16px; font-family:inherit;
  transition:border-color 0.2s, box-shadow 0.2s;
}
.tc-input:focus {
  outline:none; border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(91,184,232,0.15);
}
.tc-input::placeholder { color:var(--silver); opacity:0.5; }
.tc-input:invalid:not(:placeholder-shown) { border-color:var(--red); }
.tc-consent {
  display:flex; align-items:flex-start; gap:12px;
  padding:16px; background:rgba(7,13,32,0.5);
  border:1px solid rgba(91,184,232,0.1); border-radius:10px;
  margin-bottom:20px;
}
.tc-consent input[type=checkbox] {
  flex-shrink:0; width:20px; height:20px; margin-top:2px;
  cursor:pointer; accent-color:var(--blue);
}
.tc-consent-text {
  font-size:13px; color:var(--silver); line-height:1.55;
}
.tc-consent-text a { color:var(--blue); text-decoration:underline; }
.tc-consent-text a:hover { color:var(--blue-light); }
.tc-btn {
  width:100%; padding:16px 24px;
  background:linear-gradient(135deg,var(--red-dark),var(--red));
  color:var(--white); border:none; border-radius:8px;
  font-family:'Oswald',sans-serif; font-size:17px; font-weight:600;
  letter-spacing:1px; text-transform:uppercase;
  cursor:pointer; transition:all 0.2s;
}
.tc-btn:hover:not(:disabled) {
  background:linear-gradient(135deg,var(--red),var(--red-bright));
  transform:translateY(-2px); box-shadow:0 6px 24px rgba(196,40,42,0.3);
}
.tc-btn:disabled { opacity:0.6; cursor:not-allowed; }
.tc-msg { margin-top:16px; padding:14px 16px; border-radius:8px; font-size:14px; line-height:1.5; display:none; }
.tc-msg.show { display:block; }
.tc-msg.error { background:rgba(196,40,42,0.12); border:1px solid rgba(196,40,42,0.3); color:#ff9a9c; }
.tc-success {
  text-align:center; padding:24px 8px; display:none;
}
.tc-success.show { display:block; }
.tc-success .tc-check {
  width:64px; height:64px; margin:0 auto 16px;
  background:rgba(91,184,232,0.15);
  border:2px solid var(--blue); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--blue); font-size:32px;
}
.tc-success h2 {
  font-family:'Oswald',sans-serif; font-size:24px; color:var(--white);
  margin-bottom:10px;
}
.tc-success p { font-size:15px; color:var(--silver); line-height:1.6; }
.tc-fineprint {
  margin-top:18px; font-size:12px; color:var(--silver);
  opacity:0.6; line-height:1.5; text-align:center;
}

/* Honeypot fields - hidden from humans, visible to dumb bots */
.tc-honeypot {
  position:absolute; left:-9999px; width:1px; height:1px;
  opacity:0; pointer-events:none;
}

/* =====================================================================
   Text Club — compact footer widget (sitewide)
   ===================================================================== */
.footer-textclub {
  max-width:760px; margin:32px auto 0; padding:24px;
  background:linear-gradient(135deg,rgba(91,184,232,0.08),rgba(196,40,42,0.04));
  border:1px solid rgba(91,184,232,0.15); border-radius:14px;
  text-align:center;
}
.footer-textclub .ftc-hook {
  font-family:'Oswald',sans-serif; font-size:18px; color:var(--white);
  letter-spacing:0.5px; margin-bottom:6px;
}
.footer-textclub .ftc-hook .ftc-free {
  background:linear-gradient(90deg,var(--gold),#ffd970);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
}
.footer-textclub .ftc-sub { font-size:13px; color:var(--silver); margin-bottom:16px; }
.footer-textclub .ftc-form { max-width:480px; margin:0 auto; position:relative; }
.footer-textclub .ftc-row {
  display:grid; grid-template-columns:1fr auto; gap:10px;
}
.ftc-input {
  padding:11px 14px; background:var(--navy-dark);
  border:1px solid rgba(91,184,232,0.2); border-radius:7px;
  color:var(--white); font-size:15px; font-family:inherit;
}
.ftc-input:focus { outline:none; border-color:var(--blue); }
.ftc-input::placeholder { color:var(--silver); opacity:0.5; }
.ftc-btn {
  padding:11px 22px; background:var(--red); color:var(--white);
  border:none; border-radius:7px; font-family:'Oswald',sans-serif;
  font-size:14px; font-weight:600; letter-spacing:0.5px;
  text-transform:uppercase; cursor:pointer; transition:background 0.2s, transform 0.2s;
  white-space:nowrap;
}
.ftc-btn:hover:not(:disabled) { background:var(--red-bright); transform:translateY(-1px); }
.ftc-btn:disabled { opacity:0.6; cursor:not-allowed; }
.ftc-consent {
  display:flex; align-items:flex-start; gap:10px;
  margin-top:14px; max-width:480px; margin-left:auto; margin-right:auto;
  text-align:left; font-size:12px; color:var(--silver); line-height:1.5;
}
.ftc-consent input[type=checkbox] {
  flex-shrink:0; width:16px; height:16px; margin-top:2px;
  cursor:pointer; accent-color:var(--blue);
}
.ftc-consent a { color:var(--blue); display:inline; margin:0; text-decoration:underline; }
.ftc-msg { margin-top:12px; font-size:13px; line-height:1.4; display:none; }
.ftc-msg.show { display:block; }
.ftc-msg.success { color:var(--blue-light); }
.ftc-msg.error { color:#ff9a9c; }
.ftc-fineprint {
  margin-top:10px; font-size:11px; color:var(--silver);
  opacity:0.55; line-height:1.4;
}
@media(max-width:520px) {
  .footer-textclub .ftc-row { grid-template-columns:1fr; }
}

/* =====================================================================
   Legal pages (terms.html, privacy.html)
   ===================================================================== */
.legal-banner {
  max-width:760px; margin:0 auto 32px; padding:14px 20px;
  background:rgba(240,200,80,0.12); border:1px solid rgba(240,200,80,0.4);
  border-left:4px solid var(--gold); border-radius:8px;
  font-size:14px; color:var(--gold); text-align:center; line-height:1.5;
}
.legal-banner strong { color:#ffe086; }
.legal-content { max-width:760px; margin:0 auto; }
.legal-content h2 {
  font-family:'Oswald',sans-serif; font-size:22px; color:var(--white);
  margin-top:32px; margin-bottom:12px; letter-spacing:0.5px;
}
.legal-content h2:first-of-type { margin-top:0; }
.legal-content h3 {
  font-family:'Oswald',sans-serif; font-size:17px; color:var(--blue);
  margin-top:20px; margin-bottom:8px; letter-spacing:0.5px;
}
.legal-content p, .legal-content li {
  font-size:15px; color:var(--silver); line-height:1.7; margin-bottom:12px;
}
.legal-content ul { padding-left:22px; margin-bottom:12px; }
.legal-content a { color:var(--blue); text-decoration:underline; }
.legal-content a:hover { color:var(--blue-light); }
.legal-content .legal-meta {
  font-size:13px; color:var(--silver); opacity:0.7; margin-bottom:20px;
}
