/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #06140f;
    color: #e6f4ea;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   HEADER
========================= */
header {
    position: sticky;
    top: 0;
    background: #0b1f16;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(46, 125, 92, 0.2);
}

.nav-layout-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo-brand-text {
    font-weight: 800;
    font-size: 22px;
    color: #7CFFB2;
}

.navigation-panel a {
    margin-left: 20px;
    text-decoration: none;
    color: #cdebd8;
    font-weight: 500;
    transition: 0.3s;
}

.navigation-panel a:hover {
    color: #7CFFB2;
}

/* =========================
   HERO
========================= */
.hero {
    padding: 90px 0;
}

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

.hero-text h1 {
    font-size: 48px;
    margin: 20px 0;
    color: #eafff2;
}

.hero-text p {
    color: #b7d6c6;
    font-size: 18px;
}

.badge {
    background: rgba(124, 255, 178, 0.12);
    color: #7CFFB2;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    display: inline-block;
    border: 1px solid rgba(124, 255, 178, 0.3);
}

.accent {
    color: #7CFFB2;
}

/* =========================
   BUTTONS
========================= */
.btn-group {
    margin-top: 25px;
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 10px;
    transition: 0.3s;
}

.primary {
    background: #1e7f56;
    color: white;
}

.primary:hover {
    background: #25a36d;
}

.secondary {
    border: 1px solid #7CFFB2;
    color: #7CFFB2;
}

.secondary:hover {
    background: #7CFFB2;
    color: #06140f;
}

/* =========================
   SECTIONS
========================= */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #eafff2;
}

/* =========================
   GRID / CARDS
========================= */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: #0b1f16;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(124, 255, 178, 0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: 0.3s;
    color: #dfffea;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 255, 178, 0.4);
}

/* =========================
   LOGOS
========================= */
.logo-slider {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.logo-slider img {
    height: 40px;
    opacity: 0.8;
    filter: brightness(0) invert(1);
}

/* =========================
   CTA
========================= */
.cta {
    background: linear-gradient(135deg, #0f3d2e, #145c43);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.big {
    padding: 14px 28px;
    font-size: 18px;
    background: #7CFFB2;
    color: #06140f;
}

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

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }

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

    .navigation-panel {
        display: none;
    }
}
/* =========================================
   CREATORS PAGE SPECIAL STYLING
========================================= */

/* HERO IMAGE */
.hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(124, 255, 178, 0.15);
}

/* BADGE ENHANCEMENT */
.hero .badge {
    background: rgba(124, 255, 178, 0.12);
    color: #7CFFB2;
    border: 1px solid rgba(124, 255, 178, 0.25);
}

/* HERO TEXT IMPROVEMENT */
.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
}

.hero-text p {
    margin-top: 15px;
    color: #b7d6c6;
    font-size: 18px;
}

/* ================================
   SECTION TITLES (CREATORS STYLE)
================================ */
.section-title {
    font-size: 38px;
    font-weight: 800;
    color: #eafff2;
}

/* ================================
   GRID CARDS ENHANCED
================================ */
.grid-3 .card {
    background: #0b1f16;
    border: 1px solid rgba(124, 255, 178, 0.08);
    padding: 28px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.grid-3 .card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 255, 178, 0.35);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

/* CARD TEXT */
.card h3 {
    color: #7CFFB2;
    margin-bottom: 10px;
}

.card p {
    color: #cfe9d8;
    font-size: 15px;
}

/* ================================
   CTA SECTION (CREATORS BOOST)
================================ */
.cta {
    background: linear-gradient(135deg, #0f3d2e, #0b1f16);
    border-top: 1px solid rgba(124, 255, 178, 0.2);
    border-bottom: 1px solid rgba(124, 255, 178, 0.2);
}

.cta h2 {
    font-size: 36px;
    color: #eafff2;
}

/* CTA BUTTON BIG */
.big {
    margin-top: 15px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
}

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

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-image {
        margin-top: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .grid-3 .card {
        padding: 20px;
    }
}
/* =========================================
   SAAS FOOTER (DARK GREEN THEME)
========================================= */

.footer {
    background: #06140f;
    border-top: 1px solid rgba(124, 255, 178, 0.15);
    padding: 70px 0 20px;
    color: #cfe9d8;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* LOGO */
.footer-logo {
    font-size: 22px;
    font-weight: 800;
    color: #7CFFB2;
}

.footer-logo span {
    color: #25a36d;
}

.footer-col p {
    margin-top: 10px;
    font-size: 14px;
    color: #b7d6c6;
    line-height: 1.6;
}

/* LINKS */
.footer-col a {
    display: block;
    color: #cfe9d8;
    text-decoration: none;
    margin: 8px 0;
    transition: 0.3s;
    font-size: 14px;
}

.footer-col a:hover {
    color: #7CFFB2;
    transform: translateX(4px);
}

/* HEADINGS */
.footer-col h4 {
    margin-bottom: 15px;
    color: #7CFFB2;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 255, 178, 0.08);
    border: 1px solid rgba(124, 255, 178, 0.15);
    color: #7CFFB2;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #7CFFB2;
    color: #06140f;
    transform: translateY(-3px);
}

/* BOTTOM BAR */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(124, 255, 178, 0.1);
    font-size: 13px;
    color: #7fae95;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}
/* =========================================
   SAAS HEADER (DARK GREEN MODERN)
========================================= */

.header {
    position: sticky;
    top: 0;
    background: rgba(6, 20, 15, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(124, 255, 178, 0.12);
    z-index: 999;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    width: 35px;
    height: 35px;
}

.logo span {
    font-size: 18px;
    font-weight: 800;
    color: #7CFFB2;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #cfe9d8;
    font-weight: 500;
    transition: 0.3s;
    font-size: 14px;
}

.nav-links a:hover {
    color: #7CFFB2;
}

/* CTA BUTTON */
.nav-btn {
    padding: 8px 16px;
    border-radius: 8px;
    background: #1e7f56;
    color: white !important;
    font-weight: 600;
}

.nav-btn:hover {
    background: #25a36d;
}

/* MOBILE MENU */
.menu-icon {
    display: none;
    color: #7CFFB2;
    cursor: pointer;
}

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

    .menu-icon {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #0b1f16;
        flex-direction: column;
        width: 220px;
        padding: 20px;
        display: none;
        border-left: 1px solid rgba(124, 255, 178, 0.15);
        border-bottom: 1px solid rgba(124, 255, 178, 0.15);
    }

    .nav-links.active {
        display: flex;
    }
}
/* =========================
   BASE RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #071a14; /* dark green base */
    color: #e5e7eb;
    line-height: 1.6;
}

/* =========================
   CONTAINER
========================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   HEADER
========================= */
header {
    position: sticky;
    top: 0;
    background: #0b2a20;
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-layout-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo-brand-text {
    font-weight: 800;
    font-size: 22px;
    color: #34d399;
}

.navigation-panel a {
    margin-left: 20px;
    text-decoration: none;
    color: #d1d5db;
    font-weight: 500;
    transition: 0.3s;
}

.navigation-panel a:hover {
    color: #34d399;
}

/* =========================
   HERO
========================= */
.hero {
    padding: 90px 0;
}

.hero-text h1 {
    font-size: 48px;
    margin: 20px 0;
}

.hero-text p {
    color: #94a3b8;
    font-size: 18px;
}

.badge {
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    display: inline-block;
}

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.primary {
    background: #10b981;
    color: #071a14;
}

.primary:hover {
    background: #34d399;
}

.secondary {
    border: 1px solid #10b981;
    color: #10b981;
}

.secondary:hover {
    background: #10b981;
    color: #071a14;
}

/* =========================
   SECTION
========================= */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

/* =========================
   GRID
========================= */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* =========================
   CARDS
========================= */
.card {
    background: #0b2a20;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #34d399;
}

/* =========================
   CONTACT PAGE
========================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    color: #34d399;
}

.info-box {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding: 12px;
    background: #0b2a20;
    border-radius: 10px;
}

/* FORM */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input, select, textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    background: #06150f;
    color: white;
}

button {
    padding: 12px;
    background: #10b981;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

button:hover {
    background: #34d399;
}

/* ALERTS */
.alert {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.success {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
}

.error {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

/* HONEYPOT */
.hidden-field {
    display: none;
}

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

    .hero-text h1 {
        font-size: 32px;
    }

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

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

    .navigation-panel {
        display: none;
    }
}
/* =========================
   BRAND PAGE ENHANCEMENT
========================= */

.hero-center {
    text-align: center;
    padding: 90px 0;
}

.brand-hero h1 {
    font-size: 44px;
    margin: 20px 0;
}

.brand-hero p {
    color: #a7f3d0;
    max-width: 700px;
    margin: auto;
}

/* accent */
.accent {
    color: #34d399;
}

/* =========================
   CTA SECTION (BRANDS)
========================= */
.cta {
    background: linear-gradient(135deg, #064e3b, #022c22);
    text-align: center;
    padding: 80px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.cta h2 {
    font-size: 34px;
    margin-bottom: 10px;
    color: #ecfdf5;
}

.cta p {
    color: #a7f3d0;
    margin-bottom: 20px;
}

/* =========================
   BUTTON UPGRADE
========================= */
.big {
    padding: 14px 28px;
    font-size: 18px;
    background: #10b981;
    color: #071a14;
    border-radius: 10px;
    font-weight: 700;
}

.big:hover {
    background: #34d399;
}

/* =========================
   RESPONSIVE FIX
========================= */
@media (max-width: 768px) {
    .brand-hero h1 {
        font-size: 30px;
    }
}
/* =========================
   DARK GREEN HERO SYSTEM
========================= */

.hero-dark {
    background: radial-gradient(circle at top, #0b2a20, #06150f);
    padding: 90px 0;
}

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

.hero-text h1 {
    font-size: 48px;
    margin: 20px 0;
    color: #ecfdf5;
}

.hero-text p {
    color: #a7f3d0;
    font-size: 18px;
}

/* =========================
   ACCENT
========================= */
.accent {
    color: #34d399;
}

/* =========================
   MODERN HERO VISUAL (NO IMAGE)
========================= */
.hero-visual {
    position: relative;
    height: 400px;
}

.glow-core {
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #34d399, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(20px);
    opacity: 0.8;
}

.floating-orb {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 20px #10b981;
    animation: float 4s infinite ease-in-out;
}

.orb-1 {
    top: 30%;
    left: 30%;
}

.orb-2 {
    top: 60%;
    left: 70%;
    animation-delay: 2s;
}

/* FLOAT ANIMATION */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* =========================
   LOGO SECTION CLEAN
========================= */
.logo-slider img {
    height: 42px;
    opacity: 0.7;
    filter: grayscale(20%);
    transition: 0.3s;
}

.logo-slider img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* =========================
   MOBILE FIX
========================= */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-visual {
        height: 250px;
    }
}
/* =========================
   BIG SCROLL STRUCTURE ENHANCEMENT
========================= */

.dark-block {
    background: #06150f;
    padding: 100px 0;
}

.section {
    padding: 100px 0;
}

/* Smooth section rhythm = premium SaaS feel */
.section-title {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #ecfdf5;
}

/* spacing upgrade */
.card {
    padding: 30px;
}

/* subtle depth */
.card:hover {
    transform: translateY(-8px);
}

/* smoother scroll feel */
html {
    scroll-behavior: smooth;
}
/* =========================
   HEADER
========================= */
.header {
    background: #0b1f14;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 38px;
}

.logo span {
    color: white;
    font-weight: 800;
    font-size: 20px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #22c55e;
}

/* BUTTON */
.nav-btn {
    padding: 8px 14px;
    background: #16a34a;
    color: white !important;
    border-radius: 6px;
}

/* MOBILE ICON */
.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon svg {
    color: white;
    width: 28px;
    height: 28px;
}

/* =========================
   FOOTER
========================= */
.footer {
    background: #06130d;
    color: #cbd5e1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-logo {
    color: white;
    font-size: 22px;
    font-weight: 800;
}

.footer-logo span {
    color: #22c55e;
}

/* SOCIAL ICONS FIX */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(34,197,94,0.1);
    transition: 0.3s;
}

.social-icons a:hover {
    background: #22c55e;
}

.social-icons svg {
    width: 20px;
    height: 20px;
    color: #cbd5e1;
}

.social-icons a:hover svg {
    color: white;
}

/* FOOTER LINKS */
.footer-col h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: #22c55e;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        background: #0b1f14;
        flex-direction: column;
        width: 200px;
        padding: 20px;
    }

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

    .menu-icon {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.social-icons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-icons a{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#111827;
    color:#fff;
    font-size:20px;
    text-decoration:none;
    transition:all .3s ease;
    border:1px solid rgba(255,255,255,0.1);
}

.social-icons a:hover{
    transform:translateY(-4px);
    background:#2563eb;
    box-shadow:0 10px 25px rgba(37,99,235,.35);
}

.social-icons a:nth-child(1):hover{
    background:#0077b5;
}

.social-icons a:nth-child(2):hover{
    background:#000;
}

.social-icons a:nth-child(3):hover{
    background:linear-gradient(
        45deg,
        #f58529,
        #dd2a7b,
        #8134af,
        #515bd4
    );
}

.social-icons a:nth-child(4):hover{
    background:#ff0050;
}