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

body{

font-family:'Poppins',sans-serif;

background:#f7f9fc;

color:#1b1b1b;

line-height:1.7;

}

a{

text-decoration:none;

color:inherit;

}

img{

max-width:100%;

display:block;

}
    
.container{

width:92%;

max-width:1200px;

margin:auto;

}

header{

background:#ffffff;

position:sticky;

top:0;

z-index:999;

box-shadow:0 2px 12px rgba(0,0,0,.05);

}

nav{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 0;

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

.menu-toggle{
    background:none;
    border:none;
    font-size:32px;
    cursor:pointer;
}

.nav-menu{
    list-style:none;
    display:none;
    flex-direction:column;
    gap:20px;
}

.nav-menu li a{
    color:#1b1b1b;
    font-weight:600;
}

.logo{

display:flex;

align-items:center;

gap:12px;

font-size:28px;

font-weight:700;

color:#0d47a1;

}

.logo img{

width:65px;

}
.affiliate-btn{

    background:#16A34A;
    color:#fff;

    padding:12px 24px;

    border-radius:10px;

    font-weight:700;

    transition:.3s;

    white-space:nowrap;

}

.affiliate-btn:hover{

    background:#15803D;

    transform:translateY(-2px);

}

.hero{

padding:70px 0;

background:linear-gradient(135deg,#f8fbff,#eef5ff);

}

.hero-grid{
    max-width:850px;
    margin:0 auto;
    text-align:center;
}
    
.hero h1{
    font-size:30px;
    line-height:1.2;
    margin-bottom:25px;
    color:#0d47a1;
}
    
.hero p{

font-size:18px;

margin-bottom:35px;

color:#555;

}

.feature-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    display: block;
}
.license-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #0d47a1;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.license-btn:hover {
    background: #1565c0;
    }    
    .platform{
    padding:20px 0;
    background:#f8fbff;
}

.platform-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    margin-top:40px;
}
@media (max-width:600px){

    .platform-grid{
        grid-template-columns:repeat(2,1fr);
        gap:16px;
    }

    .platform-card{
        padding:24px 18px;
    }

    .platform-card h3{
        font-size:22px;
    }

    .platform-card p{
        font-size:15px;
    }

}

.platform-card{
    background:#fff;
    border:1px solid #e8edf5;
    border-radius:18px;
    padding:32px 24px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.platform-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

.platform-card h3{
    font-size:20px;
    font-weight:700;
    color:#0d47a1;
    margin:18px 0 12px;
}
.store-card h3{
    color:#16A34A;
}

.affiliate-card h3{
    color:#2563EB;
}

.learning-card h3{
    color:#7C3AED;
}

.toolkit-card h3{
    color:#EA580C;
}

.platform-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.learn-btn{
    display:inline-block;
    padding:12px 26px;
    border:2px solid #0d47a1;
    border-radius:10px;
    color:#0d47a1;
    font-weight:600;
    transition:.3s;
}

.learn-btn:hover{
    background:#0d47a1;
    color:#fff;
}

.ready-start{
    padding:80px 20px;
    background:#0d47a1;
    text-align:center;
}

.ready-box{
    max-width:800px;
    margin:auto;
    color:#fff;
}

.ready-box h2{
    font-size:2.2rem;
    margin-bottom:20px;
}

.ready-box p{
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:35px;
    color:#e8eefb;
}

.cta-btn{
    display:inline-block;
    background:#ffffff;
    color:#0d47a1;
    padding:16px 38px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    font-size:18px;
    transition:.3s;
}

.cta-btn:hover{
    background:#f2f5ff;
    transform:translateY(-3px);
}

.trusted{
    padding:80px 20px;
    background:#56C58F;
    text-align:center;
border-top:2px solid rgba(255,255,255,0.25);
}

.trusted h2{
    color:#ffffff;
    font-size:2.2rem;
    margin-bottom:40px;
}

.trusted-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.trusted-card{
    background:#f8f9fc;
    padding:25px;
    border-radius:14px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    transition:.3s;
}

.trusted-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.trusted-card h3{
    color:#0d47a1;
    margin-bottom:15px;
}

.trusted-card p{
    color:#555;
    line-height:1.7;
}
.cta-note{
    color: rgba(255,255,255,0.95);
    font-size: 1rem;
    font-weight: 600;
    margin: 20px 0 30px;
    letter-spacing: 0.5px;
}
.how-it-works{
    padding:90px 20px;
    background:#5fcb9a;
    text-align:center;
}

.how-it-works h2{
    color:#ffffff;
    font-size:42px;
    font-weight:700;
    margin-bottom:25px;
}

.section-intro{
    max-width:850px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    color:rgba(255,255,255,.92);
    margin-bottom:45px;
}

.steps-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.step-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.step-number{
    width:64px;
    height:64px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#ff7a00;
    color:#ffffff;
    font-size:30px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 18px rgba(255,122,0,.35);
}

.step-card h3{
    color:#1546a0;
    font-size:28px;
    font-weight:700;
    margin-bottom:18px;
    letter-spacing:-0.3px;
}

.step-card p{
    color:#555;
    font-size:18px;
    line-height:1.8;
    font-weight:500;
}
/* ===== Commission Growth ===== */

.commission-growth{
    padding:80px 20px;
    background:#ffffff;
}

.commission-growth h2{
    text-align:center;
    font-size:42px;
    color:#0d47a1;
    margin-bottom:18px;
}

.section-subtitle{
    text-align:center;
    color:#555;
    font-size:20px;
    line-height:1.8;
    max-width:850px;
    margin:0 auto 50px;
}

.growth-grid{
    display:grid;
    gap:30px;
}

.growth-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.growth-card h3{
    margin-bottom:20px;
    color:#0d47a1;
    font-size:30px;
}

.growth-table{
    width:100%;
    border-collapse:collapse;
}

.growth-table th{
    background:#0d47a1;
    color:#fff;
    padding:14px;
}

.growth-table td{
    padding:14px;
    border-bottom:1px solid #eee;
}

.growth-table tr:hover{
    background:#f8f9fb;
}

@media(max-width:900px){

.hero-grid{

grid-template-columns:1fr;

}

.hero h1{

font-size:30px;

}

}

/* =========================
   Footer
========================= */

.footer{
    background:#0D47A1;
    color:#ffffff;
    padding:70px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
    margin-bottom:50px;
}

.footer-column h3{
    font-size:22px;
    margin-bottom:20px;
    color:#ffffff;
}

.footer-column p{
    color:rgba(255,255,255,.85);
    line-height:1.8;
}

.footer-column ul{
    list-style:none;
    padding:0;
}

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

.footer-column a{
    color:rgba(255,255,255,.85);
    transition:.3s;
}

.footer-column a:hover{
    color:#56C58F;
    padding-left:6px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:25px;
    text-align:center;
}

.footer-bottom p{
    color:rgba(255,255,255,.75);
    font-size:15px;
}
.platform-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
}

.platform-icon svg{
    width:40px;
    height:40px;
    stroke-width:2;
}

.green{
    background:#EAF8EE;
}

.green svg{
    stroke:#16A34A;
}

.blue{
    background:#EEF4FF;
}

.blue svg{
    stroke:#2563EB;
}

.purple{
    background:#F5EEFF;
}

.purple svg{
    stroke:#7C3AED;
}

.orange{
    background:#FFF3E8;
}

.orange svg{
    stroke:#EA580C;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#0d47a1;
    margin-bottom:15px;
}

.section-title p{
    max-width:760px;
    margin:0 auto;
    font-size:20px;
    line-height:1.8;
    color:#666;
}

/* =========================
   Page Header
========================= */

.page-header{
    padding:40px 0 20px;
    text-align:center;
    background:#ffffff;
    border-top:1px solid #eef2f7;
    border-bottom:1px solid #eef2f7;
}

.page-header h1{
    font-size:22px;
    font-weight:700;
    color:#0D47A1;
    margin:0;
}

.blog-section{
    padding:90px 0;
    background:#f8fbff;
}

.blog-grid{
    max-width:760px;
    margin:50px auto 0;
}

.blog-card{
    background:#fff;
    border:1px solid #e8edf5;
    border-radius:18px;
    padding:40px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.blog-tag{
    display:inline-block;
    padding:6px 14px;
    background:#eef4ff;
    color:#2563eb;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.blog-card h3{
    font-size:30px;
    color:#0d47a1;
    margin-bottom:18px;
}

.blog-card p{
    color:#666;
    font-size:17px;
    line-height:1.8;
  }

/* =========================
   Wndoo - What is Wndoo?
========================= */

.wndoo-showcase {
    padding: 85px 0;
    background: #ffffff;
}

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


/* Section Header */

.wndoo-showcase-header {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.wndoo-section-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5fcb9a;
}

.wndoo-showcase-header h2 {
    margin: 0 0 18px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
    color: #0d47a1;
}

.wndoo-showcase-header p {
    margin: 0 auto;
    max-width: 700px;
    font-size: 17px;
    line-height: 1.8;
    color: #5b6472;
}


/* Main Product Image */

.wndoo-showcase-image {
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}

.wndoo-showcase-image img {
    display: block;
    width: 100%;
    max-width: 640px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.10);
}


/* Image Gallery */

.wndoo-image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.wndoo-image-gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
    border-radius: 14px;
    background: #f7f9fc;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}


/* Product Features */

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

.wndoo-feature {
    padding: 30px 24px;
    text-align: center;
    border-radius: 16px;
    background: #f7f9fc;
    border: 1px solid #e8edf5;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wndoo-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.wndoo-feature h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #0d47a1;
}

.wndoo-feature p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #5b6472;
}


/* =========================
   Wndoo Showcase Mobile
========================= */

@media (max-width: 768px) {

    .wndoo-showcase {
        padding: 60px 0;
        background: #ffffff;
    }

    .wndoo-showcase-container {
        padding: 0 18px;
    }

    .wndoo-showcase-header {
        margin-bottom: 32px;
    }

    .wndoo-showcase-header h2 {
        font-size: 32px;
    }

    .wndoo-showcase-header p {
        font-size: 16px;
        line-height: 1.75;
    }

    .wndoo-showcase-image {
        margin-bottom: 30px;
    }

    .wndoo-showcase-image img {
        max-width: 100%;
        border-radius: 16px;
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.09);
    }

    .wndoo-image-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 32px;
    }

    .wndoo-image-gallery img {
        border-radius: 10px;
    }

    .wndoo-features {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .wndoo-feature {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .wndoo-feature h3 {
        font-size: 20px;
    }

    .wndoo-feature p {
        font-size: 15px;
        line-height: 1.75;
    }

}

/* =========================
   Wndoo - Product Development
========================= */

.wndoo-development {
    padding: 90px 0;
    background: #defbed;
}

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

/* Section Header */

.wndoo-development-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.wndoo-development-header .wndoo-section-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f47a20;
}

.wndoo-development-header h2 {
    margin: 0 0 18px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
    color: #00b86b;
}

.wndoo-development-tagline {
    margin: 0;
    font-size: 19px;
    line-height: 1.7;
    color: #5b7085;
}

/* Introduction */

.wndoo-development-intro {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}

.wndoo-development-intro p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #5b7085;
}

/* Development Ideas */

.wndoo-development-ideas {
    margin-top: 30px;
}

.wndoo-development-ideas h3 {
    margin: 0 0 12px;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #f47a20;
}

.wndoo-development-subtitle {
    max-width: 700px;
    margin: 0 auto 35px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #00b86b;
}

/* Development Cards */

.wndoo-development-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.wndoo-development-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.07);
    border: 1px solid #e8edf5;
    transition: transform .3s ease, box-shadow .3s ease;
}

.wndoo-development-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(0,0,0,.10);
}

/* Development Images */

.wndoo-development-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    display: block;
    margin-bottom: 22px;
    border-radius: 12px;
    background: #f8f9fc;
}

/* Card Text */

.wndoo-development-card h4 {
    margin: 0 0 10px;
    font-size: 21px;
    font-weight: 700;
    color: #00b86b;
}

.wndoo-development-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #5b6472;
}


/* =========================
   Product Development Mobile
========================= */

@media (max-width: 768px) {

    .wndoo-development {
        padding: 65px 0;
    }

    .wndoo-development-container {
        padding: 0 20px;
    }

    .wndoo-development-header {
        margin-bottom: 35px;
    }

    .wndoo-development-header h2 {
        font-size: 32px;
    }

    .wndoo-development-tagline {
        font-size: 17px;
    }

    .wndoo-development-intro {
        margin-bottom: 40px;
    }

    .wndoo-development-intro p {
        font-size: 16px;
    }

    .wndoo-development-ideas h3 {
        font-size: 26px;
    }

    .wndoo-development-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

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

    .wndoo-development-card {
        padding: 20px;
    }

    .wndoo-development-card h4 {
        font-size: 20px;
    }

    .wndoo-development-card p {
        font-size: 15px;
    }

    }

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

.nav-menu{
    position:absolute;
    top:80px;
    right:20px;
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    min-width:220px;
    z-index:1000;
}

.nav-menu li{
    list-style:none;
}

.nav-menu a{
    display:block;
    padding:10px 0;
}
/* =========================
   Footer Responsive
========================= */

@media (max-width:768px){

    .footer{
        padding:50px 20px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
        text-align:center;
    }

    .footer-column ul{
        padding:0;
    }

    .footer-column li{
        margin-bottom:10px;
    }

    .footer-column h3{
        margin-bottom:15px;
    }

    .footer-bottom{
        padding-top:20px;
    }

}
/* ===========================
   Featured Innovations
=========================== */

.featured-innovations {
    padding: 55px 0 80px;
}

.innovations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.innovation-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all .3s ease;
}

.innovation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.innovation-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #f7f9fc;
    padding: 30px;
}

.innovation-content {
    padding: 28px;
}

.innovation-content h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.innovation-content p {
    color: #666;
    margin-bottom: 18px;
    line-height: 1.6;
}

.price {
    display: block;
    font-weight: 600;
    color: #0f4fa8;
    margin-bottom: 22px;
}

.explore-btn {
    display: inline-block;
    color: #0f4fa8;
    font-weight: 700;
}

@media (max-width:768px){

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

}
/* =========================
   Wndoo Hero
========================= */

.wndoo-hero {
    padding: 85px 0;
    background: #f7f9fc;
}

.wndoo-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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


/* Hero Content */

.wndoo-hero-content {
    text-align: left;
}

.wndoo-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5fcb9a;
}

.wndoo-hero-content h1 {
    margin: 0 0 18px;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 800;
    color: #0d47a1;
}

.wndoo-tagline {
    margin: 0 0 22px;
    font-size: clamp(20px, 2.5vw, 30px);
    line-height: 1.25;
    font-weight: 700;
    color: #111827;
}
.tagline-own {
    color: #EA580C;
}

.tagline-develop {
    color: #5fcb9a;
}

.tagline-manufacture {
    color: #0d47a1;
}

.tagline-sell {
    color: #EA580C;
}

.tagline-dot {
    color: #111827;
}

.wndoo-description {
    max-width: 650px;
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 1.8;
    color: #5b6472;
}


/* CTA Button */

.wndoo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    margin-top: 8px;
    border-radius: 10px;
    background: #5fcb9a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(95, 203, 154, 0.25);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.wndoo-cta:hover {
    transform: translateY(-3px);
    background: #4fbc8c;
    box-shadow: 0 12px 25px rgba(95, 203, 154, 0.32);
}


/* Product Image */

.wndoo-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wndoo-hero-image img {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}


/* =========================
   Wndoo Hero Mobile
========================= */

@media (max-width: 768px) {

    .wndoo-hero {
        padding: 60px 0;
        background: #f7f9fc;
    }

    .wndoo-hero-container {
        padding: 0 18px;
    }

    .wndoo-hero-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .wndoo-hero-content {
        text-align: center;
    }

    .wndoo-eyebrow {
        margin-bottom: 14px;
        font-size: 13px;
    }

    .wndoo-hero-content h1 {
        margin-bottom: 15px;
        font-size: 40px;
        line-height: 1.1;
    }

    .wndoo-tagline {
        margin-bottom: 20px;
        font-size: 24px;
        line-height: 1.3;
    }

    .wndoo-description {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 22px;
        font-size: 16px;
        line-height: 1.75;
    }

    .wndoo-cta {
        padding: 14px 26px;
        font-size: 15px;
    }

    .wndoo-hero-image {
        order: -1;
    }

    .wndoo-hero-image img {
        max-width: 420px;
        border-radius: 18px;
        box-shadow: 0 14px 35px rgba(15, 23, 42, 0.10);
    }

}

/* =========================
   Wndoo - Market Opportunity
========================= */

.wndoo-opportunity {
    padding: 90px 0;
    background: #ffffff;
}

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

/* Section Header */

.wndoo-opportunity-header {
    max-width: 820px;
    margin: 0 auto 55px;
    text-align: center;
}

.wndoo-opportunity-header .wndoo-section-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5fcb9a;
}

.wndoo-opportunity-header h2 {
    margin: 0 0 18px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
    color: #0d47a1;
}

.wndoo-opportunity-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #5b6472;
}

/* Opportunity Steps */

.wndoo-opportunity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 45px;
}

.wndoo-opportunity-card {
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 18px;
    padding: 32px 26px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.07);
    transition: transform .3s ease, box-shadow .3s ease;
}

.wndoo-opportunity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,.10);
}

/* Step Number */

.wndoo-opportunity-number {
    width: 58px;
    height: 58px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #5fcb9a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

/* Card Titles */

.wndoo-opportunity-card h3 {
    margin: 0 0 8px;
    font-size: 25px;
    font-weight: 700;
    color: #0d47a1;
}

.wndoo-opportunity-card h4 {
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.wndoo-opportunity-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #5b6472;
}

/* Final Opportunity Message */

.wndoo-opportunity-final {
    max-width: 850px;
    margin: 0 auto;
    padding: 35px 30px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e8edf5;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.wndoo-opportunity-final h3 {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 800;
    color: #0d47a1;
}

.wndoo-opportunity-final p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #5b6472;
}


/* =========================
   Market Opportunity Mobile
========================= */

@media (max-width: 768px) {

    .wndoo-opportunity {
        padding: 65px 0;
    }

    .wndoo-opportunity-container {
        padding: 0 20px;
    }

    .wndoo-opportunity-header {
        margin-bottom: 35px;
    }

    .wndoo-opportunity-header h2 {
        font-size: 32px;
    }

    .wndoo-opportunity-header p {
        font-size: 16px;
        line-height: 1.8;
    }

    .wndoo-opportunity-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }

    .wndoo-opportunity-card {
        padding: 28px 22px;
    }

    .wndoo-opportunity-card h3 {
        font-size: 23px;
    }

    .wndoo-opportunity-card h4 {
        font-size: 17px;
    }

    .wndoo-opportunity-card p {
        font-size: 15px;
    }

    .wndoo-opportunity-final {
        padding: 28px 22px;
    }

    .wndoo-opportunity-final h3 {
        font-size: 24px;
    }

    .wndoo-opportunity-final p {
        font-size: 15px;
    }

    }

/* =========================
   Wndoo Opportunity Message
========================= */

.wndoo-opportunity-message {
    max-width: 850px;
    margin: 0 auto;
    padding: 35px 30px;
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.wndoo-opportunity-message h3 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 800;
    color: #0d47a1;
}

.wndoo-opportunity-message p {
    margin: 0 auto;
    max-width: 720px;
    font-size: 17px;
    line-height: 1.8;
    color: #5b6472;
}


/* Mobile */

@media (max-width: 768px) {

    .wndoo-opportunity-message {
        padding: 28px 22px;
    }

    .wndoo-opportunity-message h3 {
        font-size: 24px;
    }

    .wndoo-opportunity-message p {
        font-size: 15px;
        line-height: 1.8;
    }

}

/* =========================
   Wndoo - Available License Options
========================= */

.wndoo-licenses {
    padding: 90px 0;
    background: #fff1e6;
}

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

/* Section Header */

.wndoo-licenses-header {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.wndoo-licenses-header .wndoo-section-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f47a20;
}

.wndoo-licenses-header h2 {
    margin: 0 0 18px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
    color: #f47a20;
}

.wndoo-licenses-subtitle {
    margin: 0 auto 28px;
    max-width: 720px;
    font-size: 18px;
    line-height: 1.7;
    color: #5b6472;
}

/* Buy Button */

.wndoo-license-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 10px;
    background: #f47a20;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 20px rgba(95, 203, 154, 0.20);
}

.wndoo-license-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(95, 203, 154, 0.28);
}

/* Introduction */

.wndoo-licenses-intro {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
}

.wndoo-licenses-intro p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.75;
    color: #5b6472;
}

.wndoo-licenses-intro p:last-child {
    margin-bottom: 0;
}

/* License Levels */

.wndoo-license-levels {
    max-width: 800px;
    margin: 0 auto;
}

.wndoo-license-levels-title {
    margin: 0 0 22px;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #0d47a1;
}

.wndoo-license-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.wndoo-license-card {
    background: #ffffff;
    border: 1px solid #e6edf3;
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wndoo-license-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
}

.wndoo-license-card span {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #5b6472;
}

.wndoo-license-card strong {
    display: block;
    font-size: 17px;
    font-weight: 500;
    color: #f47a20;
}

/* Final Message */

.wndoo-license-message {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 30px 25px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e6edf3;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.wndoo-license-message h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
    color: #f47a20;
}

.wndoo-license-message p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: #1f2937;
}


/* =========================
   Available License Options
   Mobile
========================= */

@media (max-width: 768px) {

    .wndoo-licenses {
        padding: 65px 0;
    }

    .wndoo-licenses-container {
        padding: 0 20px;
    }

    .wndoo-licenses-header {
        margin-bottom: 40px;
    }

    .wndoo-licenses-header h2 {
        font-size: 32px;
    }

    .wndoo-licenses-subtitle {
        font-size: 16px;
        line-height: 1.7;
    }

    .wndoo-license-btn {
        padding: 13px 25px;
        font-size: 15px;
    }

    .wndoo-licenses-intro {
        margin-bottom: 35px;
    }

    .wndoo-licenses-intro p {
        font-size: 15px;
        line-height: 1.75;
    }

    .wndoo-license-levels-title {
    font-size: 22px;
    margin-bottom: 18px;
}

.wndoo-license-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.wndoo-license-card {
    padding: 20px 12px;
    border-radius: 14px;
}

.wndoo-license-card span {
    font-size: 12px;
}

.wndoo-license-card strong {
    font-size: 17px;
}

    .wndoo-license-message {
        margin-top: 40px;
        padding: 25px 20px;
    }

    .wndoo-license-message h3 {
        font-size: 21px;
    }

    .wndoo-license-message p {
        font-size: 15px;
        line-height: 1.75;
    }
}
/* =========================
   WHO IS WNDOO FOR
========================= */

.wndoo-audience {
    padding: 90px 20px;
    background: #ffffff;
}

.wndoo-audience-container {
    max-width: 1100px;
    margin: 0 auto;
}


/* Section Header */

.wndoo-audience-header {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.wndoo-audience-header .wndoo-section-label {
    color: #5fcb9a;
}

.wndoo-audience-header h2 {
    margin: 12px 0 16px;
    color: #0d47a1;
}

.wndoo-audience-header p {
    margin: 0;
    line-height: 1.7;
    color: #5b6472;
}


/* Audience Cards */

.wndoo-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.wndoo-audience-card {
    position: relative;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}


/* Small Brand Accent */

.wndoo-audience-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #5fcb9a;
}

.wndoo-audience-card:nth-child(3)::before,
.wndoo-audience-card:nth-child(4)::before {
    background: #ff7a00;
}


.wndoo-audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
}


/* Icons */

.wndoo-audience-icon {
    font-size: 30px;
    margin-bottom: 15px;
}


/* Card Titles */

.wndoo-audience-card h3 {
    margin: 0 0 10px;
    color: #0d47a1;
    font-size: 21px;
    font-weight: 700;
}


/* Card Text */

.wndoo-audience-card p {
    margin: 0;
    color: #5b6472;
    line-height: 1.7;
}


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

@media (max-width: 700px) {

    .wndoo-audience {
        padding: 65px 18px;
        background: #ffffff;
    }

    .wndoo-audience-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .wndoo-audience-card {
        padding: 25px;
    }

}


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

.wndoo-faq {
    padding: 90px 20px;
    background: #ffffff;
}

.wndoo-faq-container {
    max-width: 850px;
    margin: 0 auto;
}


/* FAQ Header */

.wndoo-faq-header {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.wndoo-faq-header .wndoo-section-label {
    color: #5fcb9a;
}

.wndoo-faq-header h2 {
    margin: 12px 0 16px;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 800;
    color: #0d47a1;
}

.wndoo-faq-header p {
    margin: 0 auto;
    max-width: 700px;
    font-size: 17px;
    line-height: 1.8;
    color: #5b6472;
}


/* FAQ List */

.wndoo-faq-list {
    width: 100%;
}


/* FAQ Item */

.wndoo-faq-item {
    margin-bottom: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.05);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.wndoo-faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}


/* Question */

.wndoo-faq-question {
    position: relative;
    width: 100%;
    padding: 22px 24px;
    border: none;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    color: #0d47a1;
}

.wndoo-faq-question:hover {
    color: #0d47a1;
}


/* Plus Icon */

.wndoo-faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf8f1;
    color: #5fcb9a;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}


/* Answer */

.wndoo-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.wndoo-faq-answer p {
    margin: 0;
    padding: 0 24px 22px;
    font-size: 16px;
    line-height: 1.8;
    color: #5b6472;
}


/* Active FAQ */

.wndoo-faq-item.active {
    border-color: #5fcb9a;
}

.wndoo-faq-item.active .wndoo-faq-icon {
    background: #5fcb9a;
    color: #ffffff;
    transform: rotate(45deg);
}
.wndoo-faq-item.active .wndoo-faq-answer {
    max-height: 1000px;
}

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

@media (max-width: 700px) {

    .wndoo-faq {
        padding: 65px 18px;
    }

    .wndoo-faq-header {
        margin-bottom: 35px;
    }

    .wndoo-faq-header h2 {
        font-size: 32px;
    }

    .wndoo-faq-header p {
        font-size: 16px;
        line-height: 1.75;
    }

    .wndoo-faq-item {
        margin-bottom: 12px;
        border-radius: 13px;
    }

    .wndoo-faq-question {
        padding: 19px 18px;
        font-size: 16px;
    }

    .wndoo-faq-icon {
        width: 30px;
        height: 30px;
        font-size: 22px;
    }

    .wndoo-faq-answer p {
        padding: 0 18px 20px;
        font-size: 15px;
        line-height: 1.75;
    }

}
