:root {
    --primary: #00d780; 
    --primary-hover: #00b368;
    --accent-teal: #4db6ac;
    
    /* Dark Mode (Default) */
    --bg-body: #0a0c10;
    --bg-card: #14171c;
    --bg-secondary: #0d1117;
    --bg-glass: rgba(10, 12, 16, 0.8);
    --hero-gradient: radial-gradient(circle at top, #1e2530 0%, #0a0c10 60%);
    
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: rgba(255,255,255,0.05);
    --input-bg: #1e2530;
    
    --heading-size: clamp(1.8rem, 3.5vw, 2.8rem);
    
    --shadow-card: 0 4px 20px rgba(0,0,0,0.2);
    --shadow-btn: 0 10px 20px rgba(240, 173, 78, 0.2);
}

/* Light Mode Overrides */
[data-theme="light"] {
    --bg-body: #f4f6f8;
    --bg-card: #ffffff;
    --bg-secondary: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --hero-gradient: radial-gradient(circle at top, #ffffff 0%, #f4f6f8 60%);
    
    --text-main: #1a1a1a;
    --text-muted: #555555;
    --border-color: rgba(0,0,0,0.08);
    --input-bg: #f0f0f0;
    
    --shadow-card: 0 4px 20px rgba(0,0,0,0.05);
    --shadow-btn: 0 10px 20px rgba(240, 173, 78, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffff;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background-color: var(--primary-hover);
    box-shadow: var(--shadow-btn);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-main);
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    background: var(--text-main);
    color: var(--bg-body);
    border-color: var(--text-main);
    text-decoration: none;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

    
/* =========================================
    NAVBAR
========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: all .3s ease;
}

.navbar .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* =========================================
    LOGO
========================================= */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    display: block;
    height: auto;
}

.logo-dark {
    display: block;
}

.logo-light {
    display: none;
}

/* LIGHT MODE */
html[data-theme="light"] .logo-dark {
    display: none;
}

html[data-theme="light"] .logo-light {
    display: block;
}

/* DARK MODE */
html[data-theme="dark"] .logo-dark {
    display: block;
}

html[data-theme="dark"] .logo-light {
    display: none;
}

/* =========================================
    DESKTOP MENU
========================================= */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: .95rem;
    font-weight: 600;
    transition: all .3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* =========================================
    THEME BUTTON
========================================= */

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s ease;
    font-size: 1.15rem;
}

.theme-toggle:hover {
    background: var(--input-bg);
    transform: translateY(-2px);
}

/* =========================================
    MOBILE TOGGLE
========================================= */

.menu-toggle {
    border: none;
    background: transparent;
    color: var(--text-main);
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    font-size: 1.5rem;
}

.menu-toggle:hover {
    background: var(--input-bg);
}

/* =========================================
    MOBILE
========================================= */

@media (max-width: 768px) {

    .navbar .container {
        max-height: 25px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 85px;
        left: 20px;
        right: 20px;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 24px;
        padding: 24px;
        box-shadow: 0 20px 40px rgba(0,0,0,.25);
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        pointer-events: none;
        transition: all .3s ease;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 20px;
    }

    .nav-links li {
        width: 100%;
        display: block;
    }

    .nav-links a {
        display: block;
        width: 100%;
    }

    .nav-actions {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .nav-actions .btn-primary {
        flex: 1;
        text-align: center;
    }
}

/* =========================================
    SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .logo img {
        width: 115px;
    }

    .nav-actions {
        flex-direction: row;
    }

    .btn-primary {
        font-size: .9rem;
    }
}

/* =========================================
    HERO
========================================= */

.hero {
    padding: 180px 0 0;
    text-align: center;
    background: var(--hero-gradient);
    transition: background 0.3s ease;
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 10px;
    }
}

.hero h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.6px;
}

.subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1rem;
}

.text-gradient {
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* TRUSTED */
.trusted-wrapper{
    margin-top:50px;
}

@media (max-width: 768px) {
    .trusted-wrapper {
        margin-top:40px;
    }
}

.trusted-label{
    color:var(--text-muted);
    margin-bottom:24px;
    font-size:.95rem;
}

.trusted-slider{
    overflow:hidden;
    position:relative;
    padding-top:10px;
    mask-image:linear-gradient(
        to right,
        transparent,
        white 10%,
        white 90%,
        transparent
    );
}

.trusted-track{
    display:flex;
    gap:18px;
    width:max-content;

    animation:scrollTrusted 30s linear infinite;
}

.trusted-track span{
    padding:12px 18px;
    border-radius:999px;

    background:var(--bg-card);
    border:1px solid var(--border-color);

    color:var(--text-muted);

    white-space:nowrap;
    font-size:.82rem;
    font-weight:600;

    transition:.3s ease;
}

.trusted-track span:hover{
    color:var(--text-main);
    transform:translateY(-3px);
    border-color:rgba(0,215,128,.4);
}

@keyframes scrollTrusted{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* =========================================
    ABOUT
========================================= */
.abouts { 
    padding: 50px 0 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-left {
    text-align: left;
}

.about-left p {
    line-height: 1.8;
    font-size: 1.6rem;
    font-weight: 800;
    max-width: 600px;
}

@media (max-width: 768px) {
    .about-left p {
        font-size: 1.05rem;
        line-height: 1.7;
        font-weight: 800;
    }
}
.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.highlight-text {
    color: var(--primary);
}

@media (max-width: 768px) {

    .abouts {
        padding: 10px 0 0px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        order: 1;
    }

    .about-left {
        order: 2;
        text-align: center;
    }

    .about-left p {
        margin: 0 auto;
    }
}

/* =========================================
    BENEFITS
========================================= */

.benefits {
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .benefits {
        padding: 70px 0 0;
    }
}

.benefits-heading {
    max-width: 760px;
    margin: 0 auto 60px;
}

@media (max-width: 768px) {
    .benefits-heading {
        margin-bottom: 10px;
    }
}

.benefits-heading h2 {
    font-size: var(--heading-size);
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -1px;
    text-align: center;
}

/* @media (max-width: 768px) {
    .benefits-heading h2 {
        text-align: left;
    }
} */

.benefits-heading p {
    color: var(--text-muted);
    line-height: 1.8;
}

.benefits-content-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

.benefit-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.benefit-icon {
    color: var(--primary);
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-text h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.benefit-long {
    color: var(--text-muted);
    line-height: 1.8;
}

.benefits-image {
    width: 100%;
    border-radius: 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    object-fit: cover;
}

@media (max-width: 992px) {

    .benefits-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefits-heading h2 {
        font-size: 2rem;
    }

}

@media (max-width: 768px) {

    .benefit-item {
        gap: 14px;
    }

    .benefit-text h3 {
        font-size: 1.3rem;
    }
}

/* =========================================
    WHY
========================================= */

.why-section {
    padding: 100px 0 100px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .why-section {
        padding: 40px 0 60px;
    }
}

.why-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(0, 215, 128, 0.12);
    filter: blur(120px);
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.why-header {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.why-header h2 {
    font-size: var(--heading-size);
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.why-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.why-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 50px;
}

.why-item {
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-item h3 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.why-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

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

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-header h2 {
        font-size: 2.2rem;
    }
}

.why-icon {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 3rem;
    line-height: 1;
    transition: all .3s ease;
}

.why-item:hover .why-icon {
    transform: translateY(-4px);
    color: var(--primary-hover);
}

/* =========================================
    TEMPLATE
========================================= */
.template {
    padding: 0 0 96px;
    scroll-margin-top: 100px;
}

.template-header {
    margin-bottom: 48px;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
}

.template-header h2 {
    font-size: var(--heading-size);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.template-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.template-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.template-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--bg-card-alt);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: var(--transition);
}

.template-item:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-md);
}

.template-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.template-item:hover img {
    transform: scale(1.04);
}

.template-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(0,0,0,0.85) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.template-item:hover .template-overlay {
    opacity: 1;
}

.template-overlay h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.template-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
}

.template-action {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

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

@media (max-width: 768px) {
    .template {
        padding: 0 0 50px;
    }

    .template-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .template-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
    PRICING
========================================= */
@media (max-width: 768px) {
    .pricing {
        padding: 0 0 40px;
    }
}

.pricing-header {
    text-align: center;
    margin: 0 16px 48px;
}

.pricing-header h2 {
    font-size: var(--heading-size);
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

@media (max-width: 768px) {
    .pricing-header p {
        margin-bottom: 15px;
    }
}

.pricing-toggle {
    display: inline-flex;
    margin-top: 20px;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: 999px;
    padding: 5px;
    overflow: hidden;
}

.toggle-btn {
    padding: 10px 30px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 20px;
    color: var(--text-muted);
    transition: 0.2s;
}

.toggle-btn.active {
    background: var(--primary);
    color: #fff;
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 15px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    overflow: visible;
}

@media (max-width: 768px) {
    .pricing-grid {
        padding: 0 16px;
    }
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.pricing-card.popular {
    border-color: var(--primary);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 32px;
    z-index: 5;
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.pricing-name { 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: var(--text-main); 
    margin-bottom: 8px;
}

.pricing-desc { 
    font-size: 0.9rem; 
    color: var(--text-muted); 
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.old-price {
    font-size: 0.9rem;
    color: var(--text-faint);
    text-decoration: line-through;
    opacity: 0.7;
}

.pricing-price span.period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-note {
    font-size: 0.8rem;
    color: var(--text-faint);
    margin-bottom: 12px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-features li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.pricing-card .btn {
    margin-top: auto;
}

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

/* =========================================
    ARTICLES
========================================= */
.articles { 
    padding: 0 0 96px; 
    scroll-margin-top: 100px;
}
.articles-header {
    margin-bottom: 48px;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}
.article-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.article-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-subtle);
}

.article-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.article-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.article-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--text-main);
}

.article-excerpt {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.article-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.article-link svg { transition: transform 0.2s; }
.article-link:hover svg { transform: translateX(3px); }

@media (max-width: 768px) {
    .articles-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* =========================================
    FAQ
========================================= */

.faq {
    padding: 0 0 96px;
    scroll-margin-top: 100px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header .section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 215, 128, 0.08);
    border: 1px solid rgba(0, 215, 128, 0.15);
    color: var(--primary);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.faq-header h2 {
    font-size: var(--heading-size);
    line-height: 1.4;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -1px;
}

.faq-header .section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
}

.faq-card {
    max-width: 850px;

    margin: 0 auto;

    padding: 36px;

    border-radius: 24px;

    background: var(--bg-card);

    border: 1px solid var(--border-subtle);

    box-shadow: var(--shadow-card);
}

.faq-question {
    font-size: 1.3rem;

    line-height: 1.5;

    margin-bottom: 18px;

    color: var(--text-main);

    font-weight: 700;
}

.faq-answer {
    color: var(--text-muted);

    line-height: 1.9;

    font-size: 1rem;
}

.faq-action {
    display: flex;
    justify-content: center;

    margin-top: 36px;
}

@media (max-width: 768px) {

    .faq {
        padding: 0 0 40px;
    }

    .faq-card {
        padding: 28px;
        border-radius: 20px;
    }

    .faq-question {
        font-size: 1.1rem;
    }

}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.stat-item h2 {
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

/* =========================================
    CTA HOME
========================================= */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-body) 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 0;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--heading-size);
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -1px;
}

.cta-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* =========================================
    FOOTER
========================================= */

.footer {
    padding: 60px 0 40px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 40px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 20px;
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-col h4 {
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--input-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: #000;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* MOBILE */
@media (max-width: 768px) {

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
    }

}

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

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.2rem; }
    .benefits-content-grid { grid-template-columns: 1fr}
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
    
/* =========================================
    ERROR PAGE
========================================= */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.error-content {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.error-code {
    font-size: 7rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 16px;
}

.error-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.error-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.error-action {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}


/* =========================================
   FAQ PAGE
========================================= */

.faq-page {
    padding: 140px 0 96px;
}

/* HEADER */

.faq-page-header {
    text-align: center;

    max-width: 760px;

    margin: 0 auto 60px;
}


.faq-page-title {
    font-size: clamp(2rem, 4vw, 3.4rem);

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1.5px;

    margin-bottom: 18px;
}

.faq-page-desc {
    color: var(--text-muted);

    font-size: 1.05rem;

    line-height: 1.8;
}

/* FAQ LIST */

.faq-page-list {
    max-width: 900px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;

    gap: 18px;
}

/* ITEM */

.faq-page-item {
    background: var(--bg-card);

    border: 1px solid var(--border-subtle);

    border-radius: 22px;

    overflow: hidden;

    transition: .3s ease;
}

.faq-page-item:hover {
    border-color: var(--border);
}

/* QUESTION */

.faq-page-question {
    width: 100%;

    background: transparent;

    border: none;

    padding: 26px 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    cursor: pointer;

    color: var(--text-main);

    text-align: left;

    font-size: 1rem;
    font-weight: 700;

    line-height: 1.6;
}

/* ICON */

.faq-page-icon {
    flex-shrink: 0;

    transition: transform .3s ease;
}

.faq-page-item.active .faq-page-icon {
    transform: rotate(180deg);
}

/* ANSWER */

.faq-page-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height .35s ease,
        opacity .25s ease;

    opacity: 0;
}

.faq-page-item.active .faq-page-answer {
    max-height: 400px;

    opacity: 1;
}

.faq-page-answer-inner {
    padding:
        0 28px 28px;

    color: var(--text-muted);

    line-height: 1.9;

    font-size: .97rem;
}

/* MOBILE */

.faq-cta {
    padding: 0 0 100px;
}

.faq-cta-box {
    background: var(--bg-card);

    border: 1px solid var(--border-color);

    border-radius: 28px;

    padding: 60px 40px;

    text-align: center;
}

.faq-cta-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;

    margin-bottom: 18px;
}

.faq-cta-desc {
    max-width: 720px;

    margin: 0 auto 30px;

    color: var(--text-muted);

    line-height: 1.8;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .faq-page {
        padding: 100px 0 70px;
    }

    .faq-page-question {
        padding: 20px;
        font-size: 0.95rem;
    }

    .faq-page-answer-inner {
        padding: 0 20px 20px;
    }

    .faq-cta-box {
        padding: 40px 24px;
    }

}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-page {
    padding: 120px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-header p {
    color: var(--text-muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--input-bg);
    color: var(--text-main);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-box {
    display: block;
    text-decoration: none;
    color: inherit;

    padding: 20px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);

    transition: all 0.25s ease;
    cursor: pointer;
}

.info-box:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-card);
}

.info-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.info-title i {
    font-size: 1.2rem;
    color: var(--primary);
}

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

/* =========================================
    TEMPLATE PAGE
========================================= */
/* =========================================
    TEMPLATE PAGE
========================================= */
.template-page {
    padding: 140px 0 96px;
    scroll-margin-top: 100px;
}

.template-page-header {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.template-page-header h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.template-page-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.template-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.template-page .template-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--bg-card-alt);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: var(--transition);
}

.template-page .template-item:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-md);
}

.template-page .template-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.template-page .template-item:hover img {
    transform: scale(1.04);
}

.template-page .template-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 35%,
        rgba(0,0,0,0.88) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 1;
}

.template-page .template-overlay h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.template-page .template-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.template-page .template-badge {
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
}

.template-page .template-link {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 992px) {
    .template-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .template-page {
        padding: 120px 0 60px;
    }

    .template-page-header {
        margin-bottom: 42px;
    }

    .template-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .template-page-header h1 {
        letter-spacing: -1px;
    }
}