@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

/* =========================================================
   Renamer - Drop-in Theme CSS (modern SaaS dark)
   Matches existing HTML + class names, works with Bootstrap 5.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
    color-scheme: dark;

    /* Brand */
    --gf-primary: #8b5cf6;
    /* violet */
    --gf-primary-2: #6366f1;
    /* indigo */
    --gf-accent: #ff914d;
    /* orange */
    --gf-accent-2: #ed76bc;
    /* pink */
    --gf-success: #22c55e;

    /* Backgrounds */
    --gf-bg: #020617;
    /* slate-950 */
    --gf-bg-2: #000000;
    --gf-surface: rgba(15, 23, 42, 0.92);
    --gf-surface-2: rgba(15, 23, 42, 0.78);
    --gf-surface-3: rgba(15, 23, 42, 0.62);

    /* Borders */
    --gf-border: rgba(148, 163, 184, 0.32);
    --gf-border-2: rgba(148, 163, 184, 0.22);

    /* Text */
    --gf-text: #e5e7eb;
    /* gray-200 */
    --gf-text-2: rgba(229, 231, 235, 0.86);
    --gf-muted: #9ca3af;
    /* gray-400 */
    --gf-muted-2: #94a3b8;
    /* slate-400 */
    --gf-heading: #f9fafb;
    /* gray-50 */

    /* Radius */
    --gf-radius-sm: 0.85rem;
    --gf-radius-md: 1.15rem;
    --gf-radius-lg: 1.5rem;
    --gf-radius-xl: 1.8rem;
    --gf-pill: 999px;

    /* Shadows */
    --gf-shadow-1: 0 10px 26px rgba(0, 0, 0, 0.45);
    --gf-shadow-2: 0 18px 44px rgba(0, 0, 0, 0.55);
    --gf-shadow-3: 0 28px 68px rgba(0, 0, 0, 0.65);

    /* Gradients */
    --gf-grad-brand: linear-gradient(-30deg, #8c52ff, #ff914d);
    /* --gf-grad-cta: linear-gradient(90deg, var(--gf-accent-2), orange, rgb(255, 120, 143)); */
    --gf-grad-cta: linear-gradient(45deg, #8c52ff, #ff914d);
    --gf-grad-cta-hover: linear-gradient(-45deg, #8c52ff, #ff914d);

    --gf-grad-soft: radial-gradient(circle at top left, rgba(129, 140, 248, 0.28), transparent 55%),
        radial-gradient(circle at 10% 80%, rgba(244, 114, 182, 0.16), transparent 55%);

    /* Focus ring */
    --gf-ring: 0 0 0 4px rgba(139, 92, 246, 0.22);
    --gf-ring-2: 0 0 0 4px rgba(255, 145, 77, 0.18);

    /* Layout */
    --gf-nav-h: 76px;
}

/* ---------- Base reset (safe) ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Bricolage Grotesque", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
    font-weight: 300 !important;
    margin: 0;
    padding-top: var(--gf-nav-h);
    background:
        radial-gradient(circle at 15% -10%, rgba(29, 35, 55, 1) 0, rgba(2, 6, 23, 1) 44%, rgba(0, 0, 0, 1) 100%),
        linear-gradient(180deg, rgba(2, 6, 23, 1), rgba(0, 0, 0, 1));
    color: var(--gf-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: #ffffff;
}

::selection {
    background: rgba(255, 145, 77, 0.28);
    color: #ffffff;
}

/* Accessible focus without nuking outlines */
:focus {
    outline: none;
}

:focus-visible {
    outline: none;
    box-shadow: var(--gf-ring);
    border-radius: 0.6rem;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
        scroll-behavior: auto !important;
    }
}

/* ---------- Bootstrap tuning (non-destructive) ---------- */
.btn {
    border-radius: var(--gf-pill);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.btn:focus {
    box-shadow: none;
}

.btn:focus-visible {
    box-shadow: var(--gf-ring);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--gf-text-2);
}

/* ---------- Navbar ---------- */
.gf-navbar {
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    /* background: rgba(2, 6, 23, 0.35); */
    /* border-bottom: 1px solid rgba(148, 163, 184, 0.18); */
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gf-navbar.scrolled {
    background: rgba(2, 6, 23, 0.78);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.55);
    border-bottom-color: rgba(148, 163, 184, 0.28);
}

.logo {
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.45));
}

.gf-nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(226, 232, 240, 0.86) !important;
    padding: 0.6rem 0.9rem !important;
    border-radius: 0.9rem;
    transition: background 0.15s ease, color 0.15s ease;
}

.gf-nav-link:hover {
    color: #ffffff !important;
    background: rgba(148, 163, 184, 0.10);
}

.gf-navbar-cta {
    font-size: 0.9rem;
    padding-inline: 1.15rem;
}

/* ---------- Hero ---------- */
header {
    min-height: 95vh !important;
}

.gf-hero {
    padding: 5.2rem 0 4.2rem;
    position: relative;
    overflow: hidden;
}

.gf-hero::before,
.gf-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.50;
    pointer-events: none;
}

.gf-hero::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.9), transparent 70%);
    top: -90px;
    right: -140px;
}

.gf-hero::after {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(248, 113, 113, 0.75), transparent 70%);
    bottom: -90px;
    left: -90px;
}

.gf-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.22rem 0.8rem 0.26rem;
    border-radius: var(--gf-pill);
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: radial-gradient(circle at top left, rgba(250, 250, 250, 0.12), rgba(15, 23, 42, 0.92));
    color: rgba(226, 232, 240, 0.88);
    font-size: 0.78rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    margin-bottom: 1.1rem;
}

.gf-pill .badge-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.18rem 0.52rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(45, 212, 191, 0.16);
    color: #a7f3d0;
}

.gf-hero-title {
    font-weight: 820;
    font-size: clamp(2.35rem, 4.9vw, 3.45rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    margin: 0 0 1.05rem;
    color: var(--gf-heading);
}

.gf-hero-gradient {
    background: var(--gf-grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gf-hero-subtitle {
    font-size: 1.02rem;
    line-height: 1.6;
    color: #cbd5f5;
    max-width: 34rem;
    margin: 1.6rem 0 0;
}

.gf-hero-subtitle strong {
    color: var(--gf-text);
}

.gf-hero-ctas {
    margin-top: 2.4rem;
    margin-bottom: 2.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.gf-btn-primary {
    border-radius: var(--gf-pill);
    padding: 0.72rem 1.65rem;
    font-size: 0.94rem;
    font-weight: 700;
    border: 0;
    color: #07070a;
    background: var(--gf-grad-cta);
    box-shadow: 0 20px 46px rgba(139, 92, 246, 0.22), 0 18px 44px rgba(255, 145, 77, 0.12);
    transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
}

.gf-btn-primary:hover {
    opacity: 0.92;
    background: var(--gf-grad-cta-hover);
    color: #000 !important;
}

.gf-btn-primary:focus-visible {
    box-shadow: var(--gf-ring-2), 0 18px 46px rgba(0, 0, 0, 0.45);
}

.gf-btn-ghost {
    border-radius: var(--gf-pill);
    padding: 0.72rem 1.55rem;
    font-size: 0.92rem;
    font-weight: 650;
    border: 1px solid rgba(148, 163, 184, 0.55);
    background: rgba(15, 23, 42, 0.60);
    color: rgba(226, 232, 240, 0.92);
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.gf-btn-ghost:hover {
    border-color: rgba(255, 145, 77, 0.75);
    background: rgba(15, 23, 42, 0.72);
    transform: translateY(-1px);
    color: #fff;
}

.gf-btn-ghost:focus-visible {
    box-shadow: var(--gf-ring);
}

.gf-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    font-size: 0.84rem;
    color: rgba(148, 163, 184, 0.92);
    margin-top: 1.15rem;
}

.gf-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.gf-hero-meta .dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--gf-success);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.22);
}

.gf-hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.35rem;
}

.gf-chip {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    padding: 0.28rem 0.78rem;
    font-size: 0.78rem;
    color: rgba(209, 213, 219, 0.96);
    background: rgba(15, 23, 42, 0.72);
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.gf-chip:hover {
    border-color: rgba(129, 140, 248, 0.75);
    background: rgba(15, 23, 42, 0.84);
    transform: translateY(-1px);
}



/* ---------- Sections ---------- */
.gf-section {
    padding: 5.25rem 0;
    margin: 0;
    position: relative;
}

.gf-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.7;
    background: transparent;
}

.gf-section-heading {
    margin-bottom: 2.2rem;
}

.gf-section-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 145, 77, 0.95);
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.gf-section-title {
    font-size: clamp(1.55rem, 2.1vw, 1.9rem);
    font-weight: 760;
    color: var(--gf-text);
    letter-spacing: -0.03em;
    margin: 0;
}

.gf-section-description {
    font-size: 0.98rem;
    color: var(--gf-muted);
    max-width: 38rem;
    margin-top: 0.55rem;
    line-height: 1.65;
}

/* ---------- Feature cards ---------- */
.gf-feature-card {
    border-radius: var(--gf-radius-md);
    padding: 1.35rem 1.35rem 1.25rem;
    background: rgba(15, 23, 42, 0.90);
    border: 1px solid rgba(148, 163, 184, 0.30);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.40);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.gf-feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(129, 140, 248, 0.62);
    box-shadow: var(--gf-shadow-2);
}

.gf-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 1rem;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 145, 77, 0.22), transparent 55%),
        rgba(139, 92, 246, 0.16);
    border: 1px solid rgba(148, 163, 184, 0.22);
    font-size: 1.15rem;
    margin-bottom: 0.1rem;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
}

.gf-feature-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--gf-text);
    margin: 0;
}

.gf-feature-text {
    font-size: 0.9rem;
    color: var(--gf-muted);
    margin: 0;
    line-height: 1.6;
}

.gf-feature-tag,
.gf-step-note,
.gf-plan-note {
    margin-top: 0.35rem;
    font-size: 0.96rem;
    background: linear-gradient(90deg, var(--gf-accent-2), #f9da73);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---------- OS section ---------- */
#windows, #mac {
    margin-top: 5rem;
    /* replaces very large spacing */
}

.gf-os-card {
    border-radius: var(--gf-radius-md);
    padding: 1.2rem 1.35rem;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.28);
    height: 100%;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
}


.gf-os-icon {
    font-size: 1.35rem;
    width: 40px;
    height: 40px;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.22);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.gf-os-icon.mac {
    background: rgba(15, 118, 110, 0.22);
}

.gf-os-title {
    font-size: 1.55rem;
    font-weight: 740;
    color: var(--gf-text);
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
}

.gf-os-body {
    font-size: 0.92rem;
    color: var(--gf-muted);
    margin-bottom: 0.5rem;
    line-height: 1.65;
}

.gf-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.88rem;
    color: var(--gf-muted);
}

.gf-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.55rem;
}

.gf-bullet-dot {
    margin-top: 0.35rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--gf-success);
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.18);
}

/* Zoom interaction for screenshots */
#windows img, #mac img {
    cursor: zoom-in;
    transition: transform 0.22s ease;
}

img.enlarged {
    position: fixed;
    top: 50%;
    left: 50%;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 100000;
}

img.enlarged {
    transition: transform 0.25s ease;
}


body.zoom-bg::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

/* ---------- How it works ---------- */
.gf-step {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding: 0.55rem 0.6rem;
    border-radius: 1rem;
    transition: background 0.15s ease;
}

.gf-step:hover {
    background: rgba(148, 163, 184, 0.06);
}

.gf-step-number {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--gf-text);
    background: rgba(15, 23, 42, 0.78);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.gf-step-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--gf-text);
}

.gf-step-text {
    font-size: 0.9rem;
    color: var(--gf-muted);
    margin: 0.25rem 0 0;
    line-height: 1.65;
}

.gf-step-note {
    margin-top: 0.55rem;
    font-size: 0.92rem;
}

/* ---------- Pricing ---------- */
.gf-pricing {
    background:
        radial-gradient(circle at top, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 1)),
        var(--gf-grad-soft);
    border-radius: var(--gf-radius-xl);
    border: 1px solid rgba(148, 163, 184, 0.30);
    padding: 2.4rem 2rem;
    box-shadow: var(--gf-shadow-2);
}

.gf-plan {
    border-radius: var(--gf-radius-md);
    padding: 1.6rem 1.55rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(2, 6, 23, 0.85);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.36);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.gf-plan:hover {
    border-color: rgba(129, 140, 248, 0.55);
    box-shadow: var(--gf-shadow-2);
}

.gf-plan.highlight {
    background:
        radial-gradient(circle at 20% 0%, rgba(237, 118, 188, 0.18), transparent 55%),
        radial-gradient(circle at 90% 10%, rgba(255, 145, 77, 0.14), transparent 55%),
        rgba(2, 6, 23, 0.90);
    border-color: rgba(191, 219, 254, 0.55);
    position: relative;
    overflow: hidden;
}

.gf-plan.highlight::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, rgba(140, 82, 255, 0.0), rgba(255, 145, 77, 0.18), rgba(140, 82, 255, 0.0));
    opacity: 0.55;
    pointer-events: none;
}

.gf-plan-highlight-tag {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #ffe6c1;
    background: rgba(180, 83, 9, 0.85);
    border: 1px solid rgba(254, 215, 170, 0.35);
    border-radius: 999px;
    padding: 0.22rem 0.62rem;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.30);
    z-index: 2;
}

.gf-plan-name {
    font-size: 1rem;
    font-weight: 750;
    color: var(--gf-text);
    margin-bottom: 0.15rem;
}

.gf-plan-tagline {
    font-size: 0.86rem;
    color: #cbd5f5;
    margin-bottom: 0.9rem;
    line-height: 1.55;
}

.gf-plan-price {
    font-size: 1.55rem;
    font-weight: 820;
    color: var(--gf-heading);
    margin-bottom: 0.15rem;
}

.gf-plan-price span {
    font-size: 0.86rem;
    font-weight: 550;
    color: #cbd5f5;
    margin-left: 0.35rem;
}

.gf-plan-note {
    font-size: 0.86rem;
    margin-bottom: 1.15rem;
}

.gf-plan-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    font-size: 0.9rem;
    color: rgba(229, 231, 235, 0.92);
}

.gf-plan-list li {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    margin-bottom: 0.7rem;
}

.gf-plan-bullet {
    margin-top: 0.28rem;
    width: 16px;
    height: 16px;
    border-radius: 0.5rem;
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
}

.gf-plan-cta {
    margin-top: auto;
}

.gf-badge-sale {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.16);
    color: #bbf7d0;
    border: 1px solid rgba(34, 197, 94, 0.14);
}

/* ---------- Options grid ---------- */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 0.95rem;
    margin-top: 2.2rem;
}

.option-card {
    padding: 0.75rem 1rem;
    border-radius: var(--gf-pill);
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(148, 163, 184, 0.22);
    font-size: 0.82rem;
    text-align: center;
    color: rgba(229, 231, 235, 0.92);
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
    cursor: default;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.option-card:hover {
    border-color: rgba(255, 145, 77, 0.68);
    background: rgba(15, 23, 42, 0.84);
    transform: translateY(-2px);
}

.options-detailed .option-card {
    border-radius: var(--gf-radius-md);
    padding: 1rem 1rem 0.95rem;
    line-height: 1.25;
}

.options-detailed .option-card strong {
    font-size: 0.9rem;
    font-weight: 750;
    color: var(--gf-text);
    margin-bottom: 0.35rem;
    display: block;
}

.options-detailed .option-card span {
    font-size: 0.82rem;
    color: var(--gf-muted);
}

/* ---------- FAQ (Bootstrap accordion styling) ---------- */
.gf-faq {
    border-radius: var(--gf-radius-xl);
    border: 1px solid rgba(148, 163, 184, 0.30);
    background: rgba(15, 23, 42, 0.90);
    box-shadow: var(--gf-shadow-2);
    padding: 2.1rem 1.8rem;
}

.accordion-item {
    background-color: transparent;
    border-color: rgba(55, 65, 81, 0.75);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    font-size: 0.95rem;
    font-weight: 650;
    background-color: transparent;
    color: rgba(229, 231, 235, 0.95);
    padding: 1rem 1rem;
    border-radius: 0.9rem !important;
    transition: background 0.15s ease;
}

.accordion-button:hover {
    background: rgba(148, 163, 184, 0.08);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:focus-visible {
    box-shadow: var(--gf-ring);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(2, 6, 23, 0.35);
    color: rgba(229, 231, 235, 0.95);
    box-shadow: inset 0 -1px 0 rgba(31, 41, 55, 0.75);
}

.accordion-button::after {
    filter: invert(1);
    opacity: 0.75;
}

.accordion-body {
    font-size: 0.9rem;
    color: var(--gf-muted);
    line-height: 1.7;
    padding: 0.95rem 1rem 1.1rem;
}

/* ---------- Blog cards ---------- */
.gf-blog-card {
    border-radius: var(--gf-radius-md);
    padding: 1.25rem 1.3rem 1.15rem;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.gf-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--gf-shadow-2);
    border-color: rgba(129, 140, 248, 0.62);
}

.gf-blog-pill {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 145, 77, 0.95);
    margin-bottom: 0.45rem;
    font-weight: 750;
}

.gf-blog-title {
    font-size: 1.02rem;
    font-weight: 750;
    color: var(--gf-text);
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.gf-blog-excerpt {
    font-size: 0.9rem;
    color: var(--gf-muted);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.gf-blog-meta {
    font-size: 0.82rem;
    color: var(--gf-muted-2);
}

/* ---------- Footer ---------- */
footer {
    border-top: 1px solid rgba(55, 65, 81, 0.75);
    padding: 2.2rem 0 2rem;
    background: rgba(2, 6, 23, 0.92);
    color: var(--gf-muted);
    margin-top: 3rem;
}

.gf-footer-links a {
    font-size: 0.86rem;
    color: rgba(229, 231, 235, 0.92);
    margin-right: 1.15rem;
    opacity: 0.92;
}

.gf-footer-links a:hover {
    color: rgba(255, 145, 77, 0.98);
    opacity: 1;
}

.gf-footer-meta {
    font-size: 0.82rem;
    color: rgba(100, 116, 139, 0.95);
}

/* =========================================================
   Shared pages: order / cancel / download / payment / articles
   ========================================================= */

/* Form container */
.register-form-box {
    background: rgba(15, 23, 42, 0.90);
    border: 1px solid rgba(148, 163, 184, 0.30);
    border-radius: var(--gf-radius-xl);
    padding: 2.8rem 2.4rem;
    max-width: 540px;
    width: 100%;
    margin-top: 4rem;
    margin-bottom: 4rem;
    box-shadow: var(--gf-shadow-2);
    color: var(--gf-text);
    text-align: center;
}

.register-form-box .title {
    font-size: 1.95rem;
    font-weight: 820;
    letter-spacing: -0.03em;
    color: var(--gf-heading);
    margin-bottom: 0.45rem;
}

.register-form-box .title-wrapper {
    margin-bottom: 2rem;
}

.register-form-box p {
    font-size: 0.98rem;
    color: #cbd5f5;
    line-height: 1.65;
}

/* Primary buttons used in some pages */
.wc-btn-primary,
.subscribe-btn {
    border-radius: var(--gf-pill);
    padding: 0.7rem 1.7rem;
    font-size: 0.95rem;
    font-weight: 750;
    border: 0;
    background: linear-gradient(135deg, #ffc107, #ffc107);
    color: #111;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.wc-btn-primary:hover,
.subscribe-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Inputs */
.user-form {
    width: 100%;
    margin-top: 1rem;
    text-align: left;
}

.input-field {
    margin-bottom: 1.2rem;
}

.input-field input,
.input-field select,
.input-field textarea,
.user-form textarea {
    width: 100%;
    background: rgba(2, 6, 23, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 0.95rem;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    color: rgba(229, 231, 235, 0.95);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.input-field textarea,
.user-form textarea {
    min-height: 120px;
    max-height: 420px;
    resize: vertical;
    line-height: 1.6;
}

.input-field input::placeholder,
.input-field textarea::placeholder,
.user-form textarea::placeholder {
    color: rgba(148, 163, 184, 0.92);
    opacity: 1;
}

.input-field input:focus,
.input-field select:focus,
.input-field textarea:focus,
.user-form textarea:focus {
    border-color: rgba(255, 145, 77, 0.70);
    box-shadow: var(--gf-ring-2);
    background: rgba(2, 6, 23, 0.68);
}

.input-field textarea[readonly],
.input-field textarea:disabled {
    background: rgba(2, 6, 23, 0.40);
    color: rgba(156, 163, 175, 0.95);
    cursor: not-allowed;
}

.input-field textarea.error,
.user-form textarea.error {
    border-color: rgba(244, 63, 94, 0.55);
    background: rgba(44, 19, 19, 0.45);
    box-shadow: 0 8px 30px rgba(244, 63, 94, 0.10);
}

/* Policy row */
.policy-field {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-top: 0.65rem;
    font-size: 0.88rem;
    color: #cbd5f5;
}

.policy-field a {
    color: rgba(255, 145, 77, 0.98);
}

.policy-field a:hover {
    text-decoration: underline;
}

/* Discount text */
#coupon-validator-text {
    font-size: 0.84rem;
    color: rgba(255, 145, 77, 0.98);
}

/* Total price text */
.user-form .text {
    font-size: 1.02rem;
    color: rgba(229, 231, 235, 0.95);
    font-weight: 650;
}

/* Cancel page specific */
.register-form-box .text-danger {
    color: #fca5a5 !important;
}

/* Download page buttons */
.windows-app-download,
.mac-app-download {
    width: 100%;
    max-width: 380px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.mac-app-download:hover {
    opacity: 0.9;
}

/* Alerts */
#successMessage,
.register-form-box .alert {
    border-radius: 1rem;
    background: rgba(148, 163, 184, 0.12);
    color: rgba(229, 231, 235, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

/* Article pages */
.article {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2.7rem 2.3rem;
    background: rgba(15, 23, 42, 0.90);
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: var(--gf-radius-xl);
    box-shadow: var(--gf-shadow-2);
    color: rgba(229, 231, 235, 0.95);
}

.article h1, .article h2, .article h3 {
    color: var(--gf-heading);
    font-weight: 820;
    letter-spacing: -0.02em;
    margin-top: 1.9rem;
    margin-bottom: 0.85rem;
}

.article h1 {
    font-size: 2.05rem;
}

.article h2 {
    font-size: 1.45rem;
}

.article h3 {
    font-size: 1.18rem;
}

.article p {
    font-size: 0.98rem;
    margin-bottom: 1rem;
    color: #cbd5f5;
    line-height: 1.75;
}

.article li {
    font-size: 0.96rem;
    color: #cbd5f5;
    margin-bottom: 0.55rem;
    line-height: 1.7;
}

.article ul, .article ol {
    margin-bottom: 1rem;
    padding-left: 1.4rem;
}

.article a {
    color: rgba(255, 145, 77, 0.98);
}

.article a:hover {
    text-decoration: underline;
}

.article hr {
    border: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
    margin-top: 2.6rem;
}

.article em {
    color: rgba(148, 163, 184, 0.95);
    font-size: 0.92rem;
}

/* Payment page */
.register-form-box .text-dark {
    color: rgba(229, 231, 235, 0.95) !important;
}

#paypal-button-container {
    background: rgba(2, 6, 23, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 1.1rem;
    padding: 1.8rem;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
    transition: border-color 0.15s ease, background 0.15s ease;
}

#paypal-button-container:hover {
    border-color: rgba(148, 163, 184, 0.38);
    background: rgba(2, 6, 23, 0.62);
}

.register-form-box p.text-dark {
    font-size: 1.07rem;
    font-weight: 650;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    :root {
        --gf-nav-h: 70px;
    }

    body {
        padding-top: var(--gf-nav-h);
    }

    .gf-hero {
        padding-top: 3.9rem;
    }

    .gf-pricing {
        padding-inline: 1.35rem;
    }
}

@media (max-width: 767.98px) {
    .gf-hero {
        padding-bottom: 3.1rem;
    }

    .gf-section {
        padding: 3.4rem 0;
    }

    .gf-pricing {
        padding-inline: 1.25rem;
        padding-block: 2.1rem;
    }

    .gf-faq {
        padding-inline: 1.2rem;
    }

    #windows img, #mac img, header img {
        width: 92% !important;
        display: block !important;
        margin: auto !important;
    }

    .logo {
        width: 150px !important;
    }
}

@media (max-width: 600px) {
    .register-form-box {
        padding: 2rem 1.55rem;
    }

    .windows-app-download, .mac-app-download {
        max-width: 100%;
    }

    .input-field textarea, .user-form textarea {
        min-height: 105px;
        padding: 0.78rem 0.95rem;
        font-size: 0.94rem;
    }
}

@media (max-width: 480px) {
    .article {
        padding: 1.7rem 1.15rem;
    }

    .article h1 {
        font-size: 1.6rem;
    }
}

/* Keep this if you use it elsewhere */
.screenshots-div {
    margin-block-start: 8rem;
}