/* ===== DESIGN TOKENS ===== */
:root{
  --c-primary:#0ea5e9;
  --c-primary-dark:#0284c7;
  --c-primary-light:#e0f2fe;
  --c-accent:#06b6d4;
  --c-dark:#0f172a;
  --c-text:#334155;
  --c-muted:#64748b;
  --c-light:#94a3b8;
  --c-bg:#fff;
  --c-bg-alt:#f8fafc;
  --c-border:#e2e8f0;
  --c-red:#ef4444;
  --font:'Inter',system-ui,sans-serif;
  --radius-sm:8px;
  --radius-md:12px;
  --radius-lg:16px;
  --radius-xl:20px;
  --shadow-sm:0 2px 12px rgba(0,0,0,.06);
  --shadow-md:0 8px 24px rgba(0,0,0,.08);
  --shadow-lg:0 16px 48px rgba(0,0,0,.12);
}

/* ===== BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font);
  color:var(--c-text);line-height:1.7;background:var(--c-bg);
}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
.container{max-width:1120px;margin:0 auto;padding:0 1.25rem}

/* ===== NAV ===== */
.navbar{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:rgba(255,255,255,.85);backdrop-filter:blur(12px);
  border-bottom:1px solid var(--c-border);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:56px}
.nav-logo{display:flex;align-items:center;gap:.5rem;font-weight:700;font-size:1.1rem;color:var(--c-dark)}
.site-logo{width:28px;height:28px;object-fit:contain;display:block;border-radius:6px}
.nav-menu{display:flex;align-items:center;gap:1.25rem}
.nav-link{font-size:.88rem;font-weight:500;color:var(--c-muted);transition:color .2s}
.nav-link:hover,.nav-link.active{color:var(--c-primary)}
.nav-cta{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:40px;padding:.45rem 1.15rem;border-radius:999px;
  font-size:.82rem;font-weight:700;letter-spacing:.01em;color:#fff;
  background:linear-gradient(135deg,var(--c-primary),var(--c-accent));
  box-shadow:0 10px 26px rgba(14,165,233,.24), inset 0 1px 0 rgba(255,255,255,.28);
  transition:transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.nav-cta:hover{
  transform:translateY(-1px);
  filter:saturate(1.08);
  box-shadow:0 14px 32px rgba(14,165,233,.3), inset 0 1px 0 rgba(255,255,255,.32);
}
.nav-cta:focus-visible{outline:3px solid rgba(14,165,233,.18);outline-offset:3px}

/* Language selector */
.lang-select-wrap{display:flex;align-items:center}
.lang-select{
  font-family:var(--font);font-size:.78rem;font-weight:600;
  color:var(--c-muted);background:var(--c-bg-alt);
  border:1px solid var(--c-border);border-radius:6px;
  padding:.3rem .5rem;cursor:pointer;outline:none;
}
.lang-select:focus{border-color:var(--c-primary)}

/* Hamburger */
.nav-hamburger{
  display:none;flex-direction:column;gap:4px;
  background:none;border:none;cursor:pointer;padding:4px;
}
.nav-hamburger span{
  width:22px;height:2px;background:var(--c-dark);border-radius:2px;
  transition:transform .25s;
}

@media(max-width:768px){
  .nav-hamburger{display:flex}
  .nav-menu{
    display:none;flex-direction:column;
    position:absolute;top:56px;left:0;right:0;
    background:rgba(255,255,255,.98);backdrop-filter:blur(12px);
    padding:0;gap:0;
    border-bottom:1px solid var(--c-border);
    box-shadow:var(--shadow-sm);
    max-height:calc(100vh - 56px);overflow-y:auto;
  }
  .nav-menu.open{display:flex}
  .nav-link{
    display:block;padding:.5rem 1.25rem;width:100%;
  }
  .nav-cta{text-align:center;width:calc(100% - 2.5rem);margin:.5rem 1.25rem;display:block}
  .lang-select-wrap{display:flex;padding:.5rem 1.25rem}
  
  .nav-dropdown{width:100%}
  .dropdown-menu{
    position:static;box-shadow:none;border:none;margin:0;
    padding:0 0 0 2.5rem;display:none;width:100%;background:transparent;
  }
  .nav-dropdown.open .dropdown-menu{display:block}
  .dropdown-menu a{
    padding:.35rem 0;font-size:.78rem;
  }
}

/* ===== BUTTONS ===== */
.btn{
  position:relative;isolation:isolate;overflow:hidden;
  display:inline-flex;align-items:center;justify-content:center;gap:.6rem;
  min-height:48px;padding:.82rem 1.45rem;border-radius:999px;
  font-weight:700;font-size:.92rem;letter-spacing:.01em;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, color .22s ease, background-color .22s ease;
  cursor:pointer;border:1px solid transparent;
}
.btn::before{
  content:'';position:absolute;inset:1px;z-index:-1;border-radius:inherit;
  background:linear-gradient(120deg,rgba(255,255,255,.18),rgba(255,255,255,0) 32%,rgba(255,255,255,.14) 55%,rgba(255,255,255,0) 78%);
  transform:translateX(-115%);
  transition:transform .7s ease;
}
.btn:hover::before{transform:translateX(115%)}
.btn:hover{transform:translateY(-2px)}
.btn:active{transform:translateY(0)}
.btn:focus-visible{outline:3px solid rgba(14,165,233,.18);outline-offset:3px}
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--c-primary),var(--c-accent));
  box-shadow:0 14px 30px rgba(14,165,233,.24), inset 0 1px 0 rgba(255,255,255,.24);
}
.btn-primary:hover{box-shadow:0 18px 36px rgba(14,165,233,.32), inset 0 1px 0 rgba(255,255,255,.28)}
.btn-outline{
  border-color:#cbd5e1;color:var(--c-text);
  background:linear-gradient(180deg,rgba(255,255,255,.9),rgba(248,250,252,.96));
  box-shadow:0 10px 24px rgba(15,23,42,.08);
}
.btn-outline:hover{
  border-color:rgba(14,165,233,.45);color:var(--c-primary-dark);
  box-shadow:0 16px 32px rgba(14,165,233,.12);
}
.btn-outline-light{
  color:#f8fafc;
  border-color:rgba(255,255,255,.22);
  background:linear-gradient(180deg,rgba(255,255,255,.1),rgba(255,255,255,.04));
  box-shadow:0 14px 30px rgba(2,8,23,.18), inset 0 1px 0 rgba(255,255,255,.14);
}
.btn-outline-light:hover{
  color:#fff;
  border-color:rgba(125,211,252,.62);
  box-shadow:0 18px 36px rgba(14,165,233,.18), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-white{
  background:linear-gradient(180deg,#fff,#f8fdff);color:#0c4a6e;
  box-shadow:0 14px 30px rgba(2,132,199,.18), inset 0 1px 0 rgba(255,255,255,.85);
}
.btn-white:hover{box-shadow:0 18px 36px rgba(2,132,199,.24), inset 0 1px 0 rgba(255,255,255,.9)}
.btn-explore{
  margin-bottom:2rem;
  padding-inline:1.7rem;
  color:#f8fafc;
  border-color:rgba(125,211,252,.42);
  background:linear-gradient(135deg,rgba(15,23,42,.22),rgba(14,165,233,.18));
  box-shadow:0 16px 34px rgba(2,8,23,.22), inset 0 1px 0 rgba(255,255,255,.14);
}
.btn-explore:hover{
  color:#fff;border-color:rgba(125,211,252,.72);
  box-shadow:0 20px 40px rgba(14,165,233,.2), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-arrow{font-size:1rem;transition:transform .22s ease}
.btn:hover .btn-arrow{transform:translateX(3px)}

/* ===== LIVE DOT ===== */
.live-dot{
  width:7px;height:7px;background:var(--c-red);border-radius:50%;
  display:inline-block;animation:blink 1.4s ease-in-out infinite;
}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.3}}

/* ===== HERO ===== */
.hero{
  padding:7rem 0 0;
  background:linear-gradient(180deg,#f0f9ff 0%,#e0f2fe 40%,#fff 100%);
  position:relative;overflow:hidden;
}
.hero-inner{
  display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;
  padding-bottom:3rem;
}
.hero-badge{
  display:inline-flex;align-items:center;gap:.35rem;
  background:#fef2f2;color:#dc2626;padding:.3rem .85rem;
  border-radius:100px;font-size:.75rem;font-weight:700;
  letter-spacing:.4px;text-transform:uppercase;margin-bottom:1.25rem;
}
.hero h1{
  font-size:clamp(2.2rem,5.5vw,3.6rem);font-weight:900;
  color:var(--c-dark);line-height:1.1;margin-bottom:1rem;
}
.text-accent{color:var(--c-primary)}
.hero-desc{font-size:1.05rem;color:var(--c-muted);max-width:460px;margin-bottom:1.75rem}
.hero-buttons{display:flex;gap:.75rem;flex-wrap:wrap;margin-bottom:1.5rem}
.hero-pills{display:flex;gap:.5rem;flex-wrap:wrap}
.pill{
  font-size:.72rem;font-weight:600;color:var(--c-primary-dark);
  background:var(--c-primary-light);padding:.25rem .7rem;border-radius:6px;
  letter-spacing:.3px;text-transform:uppercase;
}

/* Phone mockup */
.hero-visual{display:flex;justify-content:center;align-items:flex-end}
.phone-mockup{
  width:220px;
  background:#1e293b;
  border-radius:32px;
  padding:8px;
  box-shadow:
    0 30px 60px rgba(0,0,0,.18),
    0 10px 20px rgba(0,0,0,.08),
    inset 0 0 0 2px rgba(255,255,255,.08);
}
.phone-screen{
  border-radius:24px;
  overflow:hidden;
  background:#1e293b;
  aspect-ratio:3/4;
}
.phone-screen img{
  width:100%;height:100%;
  object-fit:cover;
  object-position:top center;
}

/* Hero featured image - triple phone display */
.hero-featured-image{
  width:100%;
  max-width:600px;
  height:auto;
  display:block;
  object-fit:contain;
  filter:drop-shadow(0 30px 60px rgba(0,0,0,.18));
  animation:floatUp 3s ease-in-out infinite;
}

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

/* Hero wave */
.hero-wave{
  position:absolute;bottom:-1px;left:0;right:0;line-height:0;
}
.hero-wave svg{width:100%;height:60px}

/* ===== LIVE FISHING SECTION ===== */
.section-live{
  background:#0f2942;color:#cbd5e1;padding:5rem 0;
}
.section-label{
  font-size:.72rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;
  color:#f87171;display:flex;align-items:center;gap:.4rem;margin-bottom:.5rem;
}
.section-label.center{justify-content:center}
.section-title{font-size:clamp(1.6rem,3.5vw,2.3rem);font-weight:800;color:#fff;margin-bottom:.5rem}
.section-title.center{text-align:center}
.section-title.white{color:#fff}
.section-desc{font-size:1rem;color:var(--c-light);max-width:520px;margin-bottom:2.5rem}
.section-desc.center{text-align:center;margin-left:auto;margin-right:auto}

.live-grid{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:center}
.live-features{display:flex;flex-direction:column;gap:1.5rem}
.lf-item{display:flex;gap:.85rem;align-items:flex-start}
.lf-icon{
  flex:0 0 40px;height:40px;
  background:rgba(56,189,248,.12);border-radius:10px;
  display:flex;align-items:center;justify-content:center;
}
.lf-icon svg{width:20px;height:20px;color:#38bdf8}
.lf-item strong{display:block;color:#e2e8f0;font-size:.92rem;margin-bottom:.15rem}
.lf-item p{font-size:.82rem;color:var(--c-light);line-height:1.55;margin:0}

/* ===== FEATURES SECTION ===== */
.section-features{
  background:var(--c-bg-alt);padding:5rem 0;
}
.section-features .section-label{color:var(--c-primary-dark)}
.section-features .section-desc{color:var(--c-muted)}
.section-features .section-title{color:var(--c-dark)}

/* Feature rows */
.feature-row{
  display:grid;grid-template-columns:1fr 1fr;gap:3rem;
  align-items:center;margin-bottom:4rem;
}
.feature-row.reverse .feature-img{order:2}
.feature-row.reverse .feature-text{order:1}
.feature-text h3{font-size:1.4rem;font-weight:800;color:var(--c-dark);margin-bottom:.5rem}
.feature-text p{font-size:.95rem;color:var(--c-muted)}
.ft-icon{
  width:44px;height:44px;border-radius:var(--radius-md);
  display:flex;align-items:center;justify-content:center;margin-bottom:.75rem;
}
.ft-icon svg{width:22px;height:22px}
.ft-icon.blue{background:#dbeafe}.ft-icon.blue svg{fill:#2563eb}
.ft-icon.orange{background:#ffedd5}.ft-icon.orange svg{fill:#ea580c}
.ft-icon.purple{background:#ede9fe}.ft-icon.purple svg{fill:#7c3aed}

/* Mini features */
.mini-features{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;
  margin-top:1rem;
}
.mini-card{
  background:#fff;border:1px solid var(--c-border);border-radius:14px;
  padding:1.5rem;text-align:center;transition:all .25s;
}
.mini-card:hover{border-color:#bae6fd;box-shadow:var(--shadow-md)}
.mini-card svg{width:28px;height:28px;fill:var(--c-primary);margin:0 auto .75rem}
.mini-card h4{font-size:.95rem;font-weight:700;color:var(--c-dark);margin-bottom:.25rem}
.mini-card p{font-size:.8rem;color:var(--c-light);margin:0}

/* ===== MOBILE GALLERY SECTION ===== */
.section-mobile-gallery{
  background:var(--c-bg);
  padding:5rem 0;
}
.section-mobile-gallery .section-label{
  color:var(--c-primary-dark);
  display:flex;align-items:center;justify-content:center;gap:.5rem;
}
.mobile-gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:2rem;
  margin-top:3rem;
  justify-items:center;
}
.mobile-card{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  transition:transform .25s, box-shadow .25s;
}
.mobile-card:hover{
  transform:translateY(-8px);
}
.mobile-card img{
  width:100%;
  max-width:280px;
  height:auto;
  object-fit:contain;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md);
  display:block;
  margin-bottom:.75rem;
  transition:box-shadow .25s;
}
.mobile-card:hover img{
  box-shadow:var(--shadow-lg);
}
.mobile-label{
  font-size:.9rem;
  font-weight:600;
  color:var(--c-dark);
  text-align:center;
  margin-top:.25rem;
}

/* ===== STEPS SECTION ===== */
.section-steps{
  background:linear-gradient(135deg,#0c4a6e,#0e7490);
  padding:4.5rem 0;color:#fff;
}
.steps-row{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:2.5rem}
.step-card{
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius-lg);padding:2rem 1.5rem;text-align:center;
}
.step-num{
  width:48px;height:48px;
  background:var(--c-primary);color:#fff;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.25rem;font-weight:800;margin:0 auto 1rem;
}
.step-card h4{font-size:1rem;font-weight:700;margin-bottom:.35rem}
.step-card p{font-size:.82rem;color:rgba(255,255,255,.6);margin:0}

/* ===== CTA ===== */
.section-cta{padding:4rem 0 5rem;background:var(--c-bg-alt)}
.cta-box{
  background:linear-gradient(135deg,var(--c-primary),var(--c-accent));
  border-radius:var(--radius-xl);padding:3.5rem 2rem;text-align:center;
  position:relative;overflow:hidden;
}
.cta-box::before{
  content:'';position:absolute;width:300px;height:300px;
  background:rgba(255,255,255,.06);border-radius:50%;top:-80px;right:-60px;
}
.cta-box h2{font-size:clamp(1.4rem,3vw,2rem);font-weight:800;color:#fff;margin-bottom:.5rem;position:relative}
.cta-box p{font-size:.95rem;color:rgba(255,255,255,.8);margin-bottom:1.75rem;position:relative}
.cta-box .btn{position:relative}

/* ===== FOOTER ===== */
.site-footer{background:var(--c-bg);border-top:1px solid var(--c-border);padding:2rem 0 0}
.footer-row{display:flex;justify-content:space-between;align-items:center;padding-bottom:1.5rem;flex-wrap:wrap;gap:1rem}
.footer-brand{display:flex;align-items:center;gap:.5rem;font-size:.88rem;color:var(--c-muted)}
.footer-brand strong{color:var(--c-dark)}
.footer-links{display:flex;gap:1.5rem;flex-wrap:wrap}
.footer-links a{font-size:.82rem;color:var(--c-muted);transition:color .2s}
.footer-links a:hover{color:var(--c-primary)}
.footer-copy{
  border-top:1px solid #f1f5f9;text-align:center;
  padding:1rem 0;font-size:.75rem;color:var(--c-light);
}

/* ===== BLOG HERO ===== */
.blog-hero{
  padding:7rem 0 2.5rem;
  background:linear-gradient(180deg,#f0f9ff 0%,#e0f2fe 60%,var(--c-bg-alt) 100%);
}
.blog-hero h1{
  font-size:clamp(1.8rem,4vw,2.6rem);font-weight:900;
  color:var(--c-dark);margin-bottom:.5rem;
}
.blog-hero-desc{font-size:1rem;color:var(--c-muted);max-width:600px;line-height:1.8}

/* Breadcrumb */
.breadcrumb{
  font-size:.78rem;color:var(--c-light);margin-bottom:1rem;
  display:flex;align-items:center;gap:.4rem;flex-wrap:wrap;
}
.breadcrumb a{color:var(--c-primary);transition:color .2s}
.breadcrumb a:hover{color:var(--c-primary-dark)}
.breadcrumb-sep{color:var(--c-light)}

/* ===== BLOG TOPICS ===== */
.blog-topics{padding:2rem 0 0}
.blog-topics-title{
  font-size:1.2rem;font-weight:800;color:var(--c-dark);
  margin-bottom:1rem;
}
.blog-topics-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;
}
.blog-topic-card{
  display:flex;flex-direction:column;align-items:flex-start;
  padding:1.25rem 1.25rem 1rem;
  background:linear-gradient(135deg,#f8fdff 0%,#eef8ff 100%);
  border:1px solid var(--c-border);border-radius:var(--radius-md);
  text-decoration:none;color:var(--c-dark);
  transition:box-shadow .22s,transform .22s,border-color .22s;
  position:relative;overflow:hidden;
}
.blog-topic-card:hover{
  box-shadow:0 4px 18px rgba(14,165,233,.13);
  transform:translateY(-2px);border-color:var(--c-primary);
}
.blog-topic-icon{
  color:var(--c-primary);margin-bottom:.6rem;
  display:flex;align-items:center;justify-content:center;
  width:44px;height:44px;border-radius:10px;
  background:rgba(14,165,233,.08);
}
.blog-topic-tag{
  font-size:.62rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;
  color:#fff;background:var(--c-primary);border-radius:4px;
  padding:.15rem .45rem;margin-bottom:.45rem;
}
.blog-topic-label{
  font-size:1.05rem;font-weight:700;color:var(--c-dark);line-height:1.3;
}
.blog-topic-desc{
  font-size:.8rem;color:var(--c-muted);line-height:1.55;margin-top:.25rem;
}
@media(max-width:900px){
  .blog-topics-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:600px){
  .blog-topics-grid{grid-template-columns:1fr}
}

/* ===== BLOG CARDS ===== */
.blog-section{padding:3rem 0}
.blog-section-title{
  font-size:1.4rem;font-weight:800;color:var(--c-dark);
  margin:2.5rem 0 1.25rem;
}
.blog-featured{margin-bottom:1rem}

.blog-card{
  background:#fff;border:1px solid var(--c-border);border-radius:var(--radius-lg);
  overflow:hidden;transition:box-shadow .25s,transform .25s;
}
.blog-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}

.blog-card-featured{
  display:grid;grid-template-columns:1fr 1fr;
}
.blog-card-featured .blog-card-img img{height:100%;object-fit:cover}

.blog-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;
}

.blog-card-img{position:relative;overflow:hidden}
.blog-card-img img{width:100%;aspect-ratio:16/10;object-fit:cover;display:block}
.blog-card-tag{
  position:absolute;top:.75rem;left:.75rem;
  background:var(--c-primary);color:#fff;
  font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.5px;
  padding:.25rem .65rem;border-radius:6px;
}
.blog-card-body{padding:1.25rem 1.5rem}
.blog-card-meta{display:flex;gap:1rem;font-size:.75rem;color:var(--c-light);margin-bottom:.5rem}
.blog-card h2,.blog-card h3{font-weight:800;color:var(--c-dark);margin-bottom:.4rem}
.blog-card h2{font-size:1.3rem}
.blog-card h3{font-size:1.05rem}
.blog-card h2 a,.blog-card h3 a{color:inherit;transition:color .2s}
.blog-card h2 a:hover,.blog-card h3 a:hover{color:var(--c-primary)}
.blog-card p{font-size:.88rem;color:var(--c-muted);line-height:1.65;margin-bottom:.75rem}
.blog-card-link{
  position:relative;overflow:hidden;
  font-size:.84rem;font-weight:700;letter-spacing:.01em;color:var(--c-primary-dark);
  display:inline-flex;align-items:center;gap:.45rem;
  padding:.58rem .9rem .58rem 1rem;
  border:1px solid rgba(14,165,233,.18);
  border-radius:999px;
  background:linear-gradient(180deg,#f8fdff,#eef8ff);
  box-shadow:0 10px 24px rgba(14,165,233,.08), inset 0 1px 0 rgba(255,255,255,.9);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, color .22s ease;
}
.blog-card-link::before{
  content:'';position:absolute;inset:1px auto 1px -120%;width:56%;
  border-radius:inherit;background:linear-gradient(120deg,rgba(255,255,255,0),rgba(255,255,255,.72),rgba(255,255,255,0));
  transition:left .7s ease;
}
.blog-card-link:hover{
  color:var(--c-primary-dark);transform:translateY(-2px);
  border-color:rgba(14,165,233,.34);box-shadow:0 16px 30px rgba(14,165,233,.14), inset 0 1px 0 rgba(255,255,255,.95);
}
.blog-card-link:hover::before{left:120%}

/* ===== BLOG ARTICLE ===== */
.blog-article{padding:7rem 0 3rem;background:var(--c-bg)}
.blog-article-inner{max-width:760px;margin:0 auto}
.blog-article-header{margin-bottom:2rem}
.blog-article-header h1{
  font-size:clamp(1.6rem,4vw,2.4rem);font-weight:900;
  color:var(--c-dark);line-height:1.2;margin:.75rem 0 .5rem;
}
.blog-article-meta{display:flex;gap:1rem;font-size:.8rem;color:var(--c-light)}
.blog-article-content{line-height:1.85}
.blog-article-content h2{
  font-size:1.3rem;font-weight:800;color:var(--c-dark);
  margin:2rem 0 .75rem;
}
.blog-article-content p{
  font-size:.98rem;color:var(--c-text);margin-bottom:1rem;
}
.blog-article-content strong{color:var(--c-dark)}
.blog-article-img{
  display:block;width:100%;max-width:300px;
  border-radius:var(--radius-lg);margin:1.5rem auto;
  box-shadow:var(--shadow-md);
}

/* Inline CTA in articles */
.blog-cta-inline{
  background:linear-gradient(135deg,#f0f9ff,#e0f2fe);
  border:1px solid var(--c-primary-light);
  border-radius:var(--radius-lg);padding:2rem;
  margin:2rem 0;text-align:center;
}
.blog-cta-inline h3{font-size:1.15rem;font-weight:800;color:var(--c-dark);margin-bottom:.5rem}
.blog-cta-inline p{font-size:.9rem;color:var(--c-muted);margin-bottom:1rem}

/* Related posts */
.blog-related{
  margin-top:3rem;padding-top:2rem;
  border-top:1px solid var(--c-border);
}
.blog-related h3{font-size:1.1rem;font-weight:700;color:var(--c-dark);margin-bottom:1rem}
.blog-related-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.blog-related-card{
  display:flex;flex-direction:column;gap:.25rem;
  padding:1rem 1.25rem;
  background:linear-gradient(180deg,#fff,#f8fbff);border:1px solid var(--c-border);
  border-radius:var(--radius-md);transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  box-shadow:0 8px 20px rgba(15,23,42,.05);
}
.blog-related-card:hover{
  transform:translateY(-3px);
  border-color:rgba(14,165,233,.35);
  background:linear-gradient(180deg,#ffffff,#f1f9ff);
  box-shadow:0 18px 34px rgba(14,165,233,.12);
}
.blog-related-card strong{font-size:.9rem;color:var(--c-dark)}
.blog-related-card span{font-size:.75rem;color:var(--c-light)}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .hero-inner{grid-template-columns:1fr;text-align:center;gap:2rem}
  .hero-desc{margin-left:auto;margin-right:auto}
  .hero-buttons{justify-content:center}
  .hero-pills{justify-content:center}
  .hero-visual{margin-top:2rem;justify-content:center}
  .hero-featured-image{max-width:400px}
  .mobile-gallery-grid{grid-template-columns:repeat(2, 1fr)}
  .phone-mockup{width:240px}
  .live-grid{grid-template-columns:1fr}
  .feature-row{grid-template-columns:1fr}
  .feature-row.reverse .feature-img{order:0}
  .feature-row.reverse .feature-text{order:0}
  .steps-row{grid-template-columns:1fr}
  .mini-features{grid-template-columns:1fr}
  .blog-card-featured{grid-template-columns:1fr}
  .blog-grid{grid-template-columns:1fr}
  .blog-related-grid{grid-template-columns:1fr}
}
@media(max-width:600px){
  .hero{padding-top:5rem}
  .hero h1{font-size:2rem}
  .hero-featured-image{max-width:100%;margin:0 auto}
  .phone-mockup{width:220px}
  .hero-buttons{flex-direction:column;align-items:center}
  .btn{width:100%;justify-content:center}
  .mobile-gallery-grid{grid-template-columns:1fr}
  .footer-row{flex-direction:column;gap:1rem;text-align:center}
  .footer-links{justify-content:center}
}

/* ===== TUNING ===== */
.section-desc{max-width:760px;line-height:1.8}
.hero-desc{max-width:620px;line-height:1.8}

.live-grid{grid-template-columns:minmax(0,1fr) minmax(0,1fr);align-items:center}
.live-screenshot{
  max-width:300px;width:100%;margin:0 auto;
  aspect-ratio:9/16;overflow:hidden;
  border-radius:14px;box-shadow:0 16px 48px rgba(0,0,0,.35);
  background:#000;
}
.live-screenshot img{width:100%;height:100%;object-fit:cover;object-position:top center;display:block}

.feature-row{gap:2rem}
.feature-img{
  max-width:280px;width:100%;margin:0 auto;
  aspect-ratio:9/16;overflow:hidden;
  border-radius:14px;box-shadow:var(--shadow-md);
  background:#000;
}
.feature-img img{width:100%;height:100%;object-fit:cover;object-position:top center;display:block}
.feature-text p{font-size:.98rem;line-height:1.8;max-width:52ch}

.mini-card p{font-size:.84rem;line-height:1.65}

@media(max-width:900px){
  .live-screenshot{max-width:260px}
  .feature-img{max-width:260px}
  .live-grid{grid-template-columns:1fr}
}

@media(max-width:600px){
  .live-screenshot,.feature-img{max-width:220px}
  .feature-text p{max-width:none}
}

/* ===== FEATURE OVERVIEW SECTION ===== */
.section-overview{background:var(--c-bg-alt);padding:5rem 0}
.overview-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;
}
.overview-item{
  display:flex;gap:1rem;align-items:flex-start;
  background:var(--c-bg);border:1px solid var(--c-border);
  border-radius:var(--radius-md);padding:1.5rem;
  transition:box-shadow .25s,transform .25s;
}
.overview-item:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.overview-icon{
  flex:0 0 44px;height:44px;
  background:var(--c-primary-light);border-radius:var(--radius-sm);
  display:flex;align-items:center;justify-content:center;
}
.overview-item strong{display:block;font-size:.95rem;font-weight:700;color:var(--c-dark);margin-bottom:.25rem}
.overview-item p{font-size:.84rem;color:var(--c-muted);line-height:1.6;margin:0}

@media(max-width:900px){
  .overview-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
  .overview-grid{grid-template-columns:1fr}
}

/* ===== NAV DROPDOWN (Blog submenu) ===== */
.nav-dropdown{position:relative}
.nav-dropdown>.nav-link{display:flex;align-items:center;gap:.25rem}
.nav-dropdown-icon{width:12px;height:12px;transition:transform .2s}
.dropdown-menu{
  display:none;position:absolute;top:100%;left:0;min-width:160px;
  background:var(--c-bg);border:1px solid var(--c-border);border-radius:var(--radius-sm);
  box-shadow:var(--shadow-md);padding:.5rem 0;margin-top:0;z-index:200;
}
.dropdown-menu a{
  display:block;padding:.45rem 1rem;font-size:.82rem;font-weight:500;
  color:var(--c-muted);transition:background .15s,color .15s;
}
.dropdown-menu a:hover{background:var(--c-bg-alt);color:var(--c-primary)}
.nav-dropdown:hover .dropdown-menu{display:block}
.nav-dropdown:hover .nav-dropdown-icon{transform:rotate(180deg)}
.nav-dropdown.open .nav-dropdown-icon{transform:rotate(180deg)}

/* ===== HERO DARK VARIANT (for LiveFishingMap page) ===== */
.hero-dark{
  padding:7rem 0 0;
  background:linear-gradient(160deg,#0a1628 0%,#0f2942 40%,#0c3a5f 100%);
  color:#fff;position:relative;overflow:hidden;
}
.hero-dark::before{
  content:'';position:absolute;inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-dark .hero-inner{
  display:grid;grid-template-columns:1fr 280px;gap:4rem;align-items:center;
  padding-bottom:3rem;position:relative;z-index:1;
}
.hero-dark .hero-badge{
  background:rgba(255,255,255,.1);color:#fff;border:1px solid rgba(255,255,255,.15);
}
.hero-dark h1{color:#fff}
.hero-dark h1 .text-accent{color:#38bdf8}
.hero-dark .hero-desc{color:rgba(255,255,255,.75)}
.hero-dark .hero-pills .pill{background:rgba(255,255,255,.1);color:rgba(255,255,255,.8)}
.hero-dark .hero-stats{display:flex;gap:2rem;margin-top:2rem;flex-wrap:wrap}
.hero-dark .hero-stat strong{display:block;font-size:1.5rem;font-weight:900;color:#38bdf8}
.hero-dark .hero-stat span{font-size:.78rem;color:rgba(255,255,255,.6)}

/* Phone frame (dark hero mockup) */
.phone-frame{
  width:260px;background:#1a1a2e;border-radius:40px;padding:12px;
  box-shadow:0 30px 60px rgba(0,0,0,.4),0 0 0 6px rgba(255,255,255,.06);
  animation:float 4s ease-in-out infinite;
}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
.phone-notch{width:80px;height:20px;background:#000;border-radius:100px;margin:0 auto 8px}
.phone-frame .phone-screen{background:#0F1B2D;border-radius:28px;aspect-ratio:9/19}

/* ===== MAP SIMULATION (inside phone) ===== */
.map-sim{width:100%;height:100%;background:linear-gradient(135deg,#1a3a5c,#0d2b45,#162040);position:relative;overflow:hidden}
.map-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(14,165,233,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(14,165,233,.08) 1px,transparent 1px);background-size:30px 30px}
.map-road{position:absolute;background:rgba(255,255,255,.06);border-radius:2px}
.map-road.h1{top:38%;left:0;right:0;height:3px}
.map-road.h2{top:62%;left:0;right:0;height:2px}
.map-road.v1{left:35%;top:0;bottom:0;width:3px}
.map-road.v2{left:65%;top:0;bottom:0;width:2px}
.map-water{position:absolute;background:rgba(14,165,233,.2);border-radius:50%}
.map-water.w1{width:80px;height:45px;top:20%;right:10%}
.map-water.w2{width:50px;height:30px;bottom:30%;left:15%}

.map-header{
  position:absolute;top:0;left:0;right:0;z-index:10;
  background:rgba(15,27,45,.92);padding:8px 10px;
  display:flex;align-items:center;justify-content:space-between;
}
.map-header-title{font-size:10px;font-weight:800;color:#fff}
.map-header-live{display:flex;align-items:center;gap:4px;font-size:8px;color:var(--c-red);font-weight:700}

.map-avatar{position:absolute;display:flex;flex-direction:column;align-items:center;cursor:pointer}
.map-avatar-circle{
  width:32px;height:32px;border-radius:50%;border:2px solid #fff;
  box-shadow:0 2px 8px rgba(0,0,0,.4);display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:11px;color:#fff;position:relative;
}
.map-avatar-label{
  background:rgba(0,0,0,.7);color:#fff;font-size:7px;
  padding:2px 5px;border-radius:6px;margin-top:2px;white-space:nowrap;
}
.map-avatar.live .map-avatar-circle::after{
  content:'';position:absolute;top:-2px;right:-2px;
  width:9px;height:9px;background:var(--c-red);border-radius:50%;border:1.5px solid #fff;
}
.map-popup{
  position:absolute;bottom:8%;left:4%;right:4%;
  background:rgba(255,255,255,.95);border-radius:10px;padding:10px 12px;
  box-shadow:0 4px 16px rgba(0,0,0,.3);
}
.popup-tag{font-size:7px;font-weight:800;color:var(--c-primary);background:var(--c-primary-light);padding:2px 6px;border-radius:4px;text-transform:uppercase;display:inline-block;margin-bottom:3px}
.popup-title{font-size:10px;font-weight:800;color:var(--c-dark);margin-bottom:3px}
.popup-meta{font-size:8px;color:var(--c-muted)}

/* ===== LIVEMAP FEATURE SECTION ===== */
.section-livemap{
  background:linear-gradient(160deg,#0c3a5f,var(--c-primary));
  color:#fff;padding:5rem 0;position:relative;overflow:hidden;
}
.section-livemap::before{
  content:'';position:absolute;top:-50%;right:-20%;
  width:600px;height:600px;
  background:radial-gradient(circle,rgba(56,189,248,.1) 0%,transparent 70%);
  pointer-events:none;
}
.livemap-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.livemap-features{display:flex;flex-direction:column;gap:1.25rem}
.livemap-feature{
  display:flex;gap:1rem;align-items:flex-start;
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius-md);padding:1.25rem;
  backdrop-filter:blur(6px);transition:background .2s,transform .2s;
}
.section-livemap .phone-mockup{width:260px}
.section-livemap .phone-screen{
  aspect-ratio:9/19;
  background:#0f1b2d;
}
.section-livemap .phone-screen img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  background:#0f1b2d;
}
.livemap-feature:hover{background:rgba(255,255,255,.12);transform:translateX(3px)}
.lf-icon-box{
  flex:0 0 40px;height:40px;
  background:rgba(255,255,255,.12);border-radius:var(--radius-sm);
  display:flex;align-items:center;justify-content:center;font-size:18px;
}
.lf-text h3{font-size:.92rem;font-weight:700;color:#fff;margin-bottom:.2rem}
.lf-text p{font-size:.8rem;color:rgba(255,255,255,.7);line-height:1.55;margin:0}

/* ===== FEATURE CARDS (for livefishingmap page) ===== */
.section-cards{background:var(--c-bg-alt);padding:5rem 0}
.section-cards .section-title{color:var(--c-dark)}
.section-cards .section-label{color:var(--c-primary-dark)}
.section-cards .section-desc{color:var(--c-muted)}
.cards-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-top:2.5rem;
}
.card{
  background:var(--c-bg);border:1px solid var(--c-border);
  border-radius:var(--radius-lg);padding:1.5rem;
  transition:box-shadow .25s,transform .25s;position:relative;overflow:hidden;
}
.card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--c-primary),var(--c-accent));
}
.card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.card-icon{
  width:44px;height:44px;background:var(--c-primary-light);
  border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;
  font-size:20px;margin-bottom:1rem;
}
.card h3{font-size:1rem;font-weight:700;color:var(--c-dark);margin-bottom:.35rem}
.card p{font-size:.85rem;color:var(--c-muted);line-height:1.65;margin:0}

/* ===== STEPS GRID (4-column for livefishingmap) ===== */
.section-how{background:var(--c-bg-alt);padding:5rem 0}
.steps-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem;margin-top:2.5rem;
}
.step{text-align:center}
.step .step-num{
  width:52px;height:52px;background:var(--c-primary);color:#fff;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.2rem;font-weight:800;margin:0 auto .75rem;
  box-shadow:0 4px 16px rgba(14,165,233,.3);
}
.step h3{font-size:.92rem;font-weight:700;color:var(--c-dark);margin-bottom:.25rem}
.step p{font-size:.8rem;color:var(--c-muted);line-height:1.6;margin:0}

/* ===== SCREENSHOT GALLERY ===== */
.section-screenshots{background:var(--c-bg);padding:5rem 0}
.screenshots-scroll{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:1rem;
  padding:1rem 0 1.5rem;
  margin-top:2rem;
}
.screenshot-card{
  width:100%;
  max-width:220px;
  background:transparent;
  justify-self:center;
}
.screenshot-card img{
  width:100%;
  display:block;
  object-fit:contain;
}
.screenshot-caption{
  text-align:center;font-size:.72rem;font-weight:600;
  color:var(--c-muted);margin-top:8px;
}
.ss-placeholder{
  width:100%;aspect-ratio:9/18;border-radius:calc(var(--radius-xl) - 4px);
  background:linear-gradient(160deg,var(--c-primary),var(--c-accent));
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:10px;color:rgba(255,255,255,.7);font-size:12px;font-weight:700;
}
.ss-placeholder-icon{font-size:36px}

/* ===== FAQ SECTION ===== */
.section-faq{background:var(--c-bg-alt);padding:5rem 0}
.faq-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem;margin-top:2.5rem;
}
.faq-item{
  background:var(--c-bg);border:1px solid var(--c-border);
  border-radius:var(--radius-md);overflow:hidden;
}
.faq-q{
  width:100%;text-align:left;background:none;border:none;
  padding:1rem 1.25rem;font-family:var(--font);font-size:.9rem;font-weight:600;
  color:var(--c-dark);cursor:pointer;
  display:flex;justify-content:space-between;align-items:center;gap:1rem;
}
.faq-q:hover{background:var(--c-bg-alt)}
.faq-arrow{
  width:18px;height:18px;border-radius:50%;
  background:var(--c-primary-light);color:var(--c-primary);
  display:flex;align-items:center;justify-content:center;
  font-size:10px;flex-shrink:0;transition:transform .2s;
}
.faq-item.open .faq-arrow{transform:rotate(180deg)}
.faq-a{
  max-height:0;overflow:hidden;transition:max-height .3s ease,padding .3s;
  font-size:.85rem;color:var(--c-muted);line-height:1.7;padding:0 1.25rem;
}
.faq-item.open .faq-a{max-height:300px;padding:0 1.25rem 1rem}

/* ===== DOWNLOAD CTA SECTION ===== */
.section-download{
  background:linear-gradient(135deg,var(--c-primary),var(--c-accent));
  color:#fff;text-align:center;padding:5rem 1.25rem;
}
.section-download h2{font-size:clamp(1.5rem,4vw,2.4rem);font-weight:900;margin-bottom:.75rem}
.section-download p{font-size:1rem;opacity:.88;max-width:480px;margin:0 auto 2rem;line-height:1.7}
.download-btn{
  display:inline-flex;align-items:center;gap:.75rem;
  background:linear-gradient(180deg,#fff,#f8fdff);color:var(--c-primary-dark);padding:.95rem 2rem;
  border-radius:999px;text-decoration:none;
  font-weight:800;font-size:1rem;box-shadow:0 16px 38px rgba(2,132,199,.22), inset 0 1px 0 rgba(255,255,255,.9);
  transition:transform .22s ease, box-shadow .22s ease;
}
.download-btn:hover{transform:translateY(-2px);box-shadow:0 20px 42px rgba(2,132,199,.28), inset 0 1px 0 rgba(255,255,255,.95)}
.download-rating{
  margin-top:1.25rem;font-size:.85rem;opacity:.7;
  display:flex;align-items:center;justify-content:center;gap:.5rem;
}

/* ===== FADE ANIMATIONS ===== */
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.fade-up{animation:fadeUp .6s ease both}
.delay-1{animation-delay:.1s}
.delay-2{animation-delay:.2s}
.delay-3{animation-delay:.3s}

/* ===== RESPONSIVE ADDITIONS ===== */
@media(max-width:900px){
  .hero-dark .hero-inner{grid-template-columns:1fr;text-align:center}
  .hero-dark .hero-desc{margin-left:auto;margin-right:auto}
  .hero-dark .hero-stats{justify-content:center}
  .livemap-grid{grid-template-columns:1fr}
  .cards-grid{grid-template-columns:1fr}
  .steps-grid{grid-template-columns:repeat(2,1fr)}
  .screenshots-scroll{grid-template-columns:repeat(3,minmax(0,1fr))}
  .faq-grid{grid-template-columns:1fr}
}
@media(max-width:600px){
  .hero-dark{padding-top:5rem}
  .hero-dark h1{font-size:2rem}
  .phone-frame{width:220px}
  .steps-grid{grid-template-columns:1fr}
  .cards-grid{grid-template-columns:1fr}
  .screenshots-scroll{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:.75rem;
  }
  .screenshot-card{max-width:190px}
}
@media(max-width:430px){
  .screenshots-scroll{grid-template-columns:1fr}
  .screenshot-card{max-width:260px}
}
