/* ─────────────────────────────────────────────
   GetNotified — Marketing Site Stylesheet
   ───────────────────────────────────────────── */

:root {
    --orange: #ff9900;
    --orange-dark: #e68a00;
    --orange-soft: #fff4e0;
    --navy: #0f1729;
    --navy-2: #1a2540;
    --ink: #1a202c;
    --muted: #5a6478;
    --line: #e6e8ee;
    --bg: #ffffff;
    --bg-soft: #f7f8fa;
    --green: #22c55e;
    --red: #ef4444;
    --blue: #3b82f6;
    --purple: #8b5cf6;
    --amber: #f59e0b;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 1px 3px rgba(15, 23, 41, 0.06);
    --shadow: 0 8px 24px rgba(15, 23, 41, 0.08);
    --shadow-lg: 0 24px 60px rgba(15, 23, 41, 0.18);
    --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── NAV ─── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid var(--line);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: var(--container);
    margin: 0 auto;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
}
.logo img { width: 32px; height: 32px; border-radius: 8px; }
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}
.nav-links a {
    font-weight: 500;
    color: var(--muted);
    font-size: 14px;
    transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
    background: var(--ink);
    color: #fff !important;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 13px !important;
    font-weight: 600 !important;
}
.nav-cta:hover { background: var(--orange); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--ink); margin: 5px 0; border-radius: 2px;
    transition: transform .2s;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #fff8ec 100%);
    padding: 84px 0 100px;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 153, 0, 0.18) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 22px;
}
.hero-badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.05); }
}
h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    font-weight: 800;
    margin-bottom: 22px;
    color: var(--navy);
}
h1 .accent {
    background: linear-gradient(135deg, var(--orange) 0%, #ff6f00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p.lead {
    font-size: 1.18rem;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 540px;
}
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: transform .15s, box-shadow .15s, background .15s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 41, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 41, 0.3);
}
.btn-secondary {
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--line);
}
.btn-secondary:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
}
.btn-orange {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.35);
}
.btn-orange:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}
.btn svg { width: 18px; height: 18px; }
.hero-meta {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: var(--muted);
    margin-top: 12px;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta .check { color: var(--green); }

/* Hero Phone */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-visual img {
    max-width: 320px;
    width: 100%;
    mix-blend-mode: multiply;
}

/* ─── SECTIONS ─── */
section {
    padding: 96px 0;
}
section.alt { background: var(--bg-soft); }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}
h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}
h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.section-head p {
    font-size: 1.1rem;
    color: var(--muted);
}

/* ─── FEATURE GRID ─── */
.notif-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.notif-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    position: relative;
    overflow: hidden;
}
.notif-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.notif-card .icon-wrap {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}
.icon-orange { background: rgba(255, 153, 0, 0.12); color: var(--orange); }
.icon-green  { background: rgba(34, 197, 94, 0.12); color: var(--green); }
.icon-red    { background: rgba(239, 68, 68, 0.12); color: var(--red); }
.icon-blue   { background: rgba(59, 130, 246, 0.12); color: var(--blue); }
.icon-purple { background: rgba(139, 92, 246, 0.12); color: var(--purple); }
.icon-amber  { background: rgba(245, 158, 11, 0.12); color: var(--amber); }

.notif-card p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.55;
}

/* ─── CATEGORY HEADER WITHIN GRID ─── */
.category-header {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0 4px;
    margin-top: 12px;
}
.category-header:first-child { margin-top: 0; }
.category-header h3 {
    margin: 0;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--muted);
}
.category-header .line {
    flex: 1;
    height: 1px;
    background: var(--line);
}

/* ─── HOW IT WORKS ─── */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    counter-reset: step;
}
.step {
    text-align: center;
    padding: 32px 24px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    position: relative;
}
.step-num {
    counter-increment: step;
    width: 44px; height: 44px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--orange) 0%, #ff6f00 100%);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3);
}
.step-num::before { content: counter(step); }
.step p { color: var(--muted); }

/* ─── DASHBOARD SECTION ─── */
.dashboard-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.dashboard-block .img-wrap {
    background: linear-gradient(135deg, var(--orange-soft) 0%, #fff 100%);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: center;
}
.dashboard-block .img-wrap img {
    max-width: 440px;
    width: 100%;
    mix-blend-mode: multiply;
}
.dashboard-block ul {
    list-style: none;
    margin-top: 24px;
}
.dashboard-block li {
    padding: 12px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
}
.dashboard-block li:last-child { border-bottom: 0; }
.dashboard-block li .check-icon {
    flex-shrink: 0;
    width: 22px; height: 22px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    font-weight: 700;
    margin-top: 2px;
}
.dashboard-block li strong { display: block; color: var(--ink); margin-bottom: 2px; }
.dashboard-block li span { color: var(--muted); font-size: 14px; }

/* ─── PRICING / FREE BANNER ─── */
.free-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.free-banner::after {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 153, 0, 0.25) 0%, transparent 60%);
}
.free-banner h2 {
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.free-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}
.free-banner .price-tag {
    display: inline-block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 8px;
    letter-spacing: -0.04em;
}
.free-banner .currency { font-size: 2rem; vertical-align: top; }

/* ─── FAQ ─── */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
    transition: border-color .15s;
}
.faq-item[open] { border-color: var(--orange); }
.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 22px;
    color: var(--muted);
    transition: transform .2s;
    line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--orange); }
.faq-item .answer {
    padding: 0 24px 20px;
    color: var(--muted);
    line-height: 1.65;
}

/* ─── BLOG TEASER ─── */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.blog-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: transform .2s, box-shadow .2s;
    display: block;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.blog-card .tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}
.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.blog-card p { color: var(--muted); margin-bottom: 18px; }
.blog-card .read-more {
    color: var(--ink);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-card .read-more::after {
    content: '→';
    transition: transform .15s;
}
.blog-card:hover .read-more::after { transform: translateX(4px); }

/* ─── FINAL CTA ─── */
.cta-final {
    text-align: center;
    padding: 96px 24px;
    background: linear-gradient(180deg, #fff 0%, #fff8ec 100%);
}
.cta-final h2 { margin-bottom: 14px; }
.cta-final p { color: var(--muted); font-size: 1.1rem; margin-bottom: 32px; }

/* ─── FOOTER ─── */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    padding: 64px 0 32px;
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand { max-width: 320px; }
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { color: rgba(255, 255, 255, 0.55); }
footer h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
footer ul { list-style: none; }
footer li { margin-bottom: 10px; }
footer a:hover { color: var(--orange); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

/* ─── ARTICLE PAGE ─── */
.article-hero {
    padding: 80px 0 48px;
    background: linear-gradient(180deg, #fff 0%, #fff8ec 100%);
    text-align: center;
}
.article-hero .meta {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 14px;
}
.article-hero h1 {
    max-width: 860px;
    margin: 0 auto 18px;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
}
.article-hero .lead {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.18rem;
}
.article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 24px 96px;
    font-size: 17px;
    line-height: 1.8;
    color: #2c3344;
}
.article-body h2 {
    font-size: 1.85rem;
    margin: 48px 0 18px;
    color: var(--navy);
}
.article-body h3 {
    font-size: 1.3rem;
    margin: 32px 0 12px;
}
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol {
    margin: 18px 0 18px 24px;
}
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--ink); }
.article-body a {
    color: var(--orange);
    border-bottom: 1px solid rgba(255, 153, 0, 0.4);
    transition: border-color .15s;
}
.article-body a:hover { border-bottom-color: var(--orange); }
.article-body blockquote {
    border-left: 4px solid var(--orange);
    background: var(--orange-soft);
    padding: 18px 24px;
    margin: 28px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--ink);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 15px;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.compare-table th, .compare-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}
.compare-table th {
    background: var(--bg-soft);
    font-weight: 700;
    color: var(--navy);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table .yes { color: var(--green); font-weight: 700; }
.compare-table .no  { color: var(--red); font-weight: 700; }
.compare-table .gn  { background: var(--orange-soft); }

/* ─── LEGAL PAGES ─── */
.legal {
    max-width: 820px;
    margin: 0 auto;
    padding: 64px 24px 96px;
}
.legal h1 { font-size: 2.4rem; margin-bottom: 8px; }
.legal .effective {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 32px;
}
.legal h2 { font-size: 1.4rem; margin: 32px 0 12px; }
.legal p { margin-bottom: 16px; color: #2c3344; line-height: 1.7; }
.legal ul { margin: 12px 0 18px 22px; color: #2c3344; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--orange); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .hero { padding: 56px 0 64px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero p.lead { margin: 0 auto 28px; }
    .cta-row { justify-content: center; }
    .hero-meta { justify-content: center; }
    .dashboard-block { grid-template-columns: 1fr; gap: 32px; }
    .steps { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    section { padding: 64px 0; }
}
@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 14px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }
    .free-banner { padding: 40px 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .article-body { padding: 40px 20px 64px; font-size: 16px; }
    .compare-table { font-size: 13px; }
    .compare-table th, .compare-table td { padding: 10px 8px; }
}
