/* =======================
   GENERAL
======================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f8f7f3;
color:#1d1d1d;
}

/* =======================
TOP BAR
======================= */

.top-bar{

background:#153b2d;

color:white;

display:flex;

justify-content:center;

gap:80px;

padding:10px;

font-size:14px;

}

/* =======================
NAVBAR
======================= */

nav{

display:flex;

justify-content:space-between;

align-items:center;

padding:20px 70px;

background:white;

border-bottom:1px solid #e5e5e5;

position:sticky;

top:0;

z-index:1000;

}

.logo img{

height:70px;

}

nav ul{

display:flex;

gap:35px;

list-style:none;

}

nav a{

text-decoration:none;

color:#222;

font-weight:500;

}

nav a.active{

color:#153b2d;

border-bottom:2px solid #153b2d;

padding-bottom:5px;

}

/* =======================
HERO
======================= */

/* =======================
HERO
======================= */

.hero{

display:flex;

justify-content:space-between;

align-items:center;

padding:0 0 0 70px;

min-height:90vh;

background:#f8f7f3;

overflow:hidden;

}

.hero-text{

width:45%;

padding-right:40px;

}

.venture{

display:inline-block;

background:#efe8ff;

padding:8px 18px;

border-radius:30px;

margin-bottom:25px;

font-size:14px;

}

.hero h1{

font-size:68px;

line-height:1.1;

margin-bottom:20px;

color:#153b2d;

}

.hero p{

font-size:20px;

line-height:1.8;

color:#555;

margin-bottom:35px;

}

.hero-buttons{

display:flex;

gap:20px;

}

.btn-green{

background:#153b2d;

color:white;

padding:16px 34px;

border-radius:10px;

text-decoration:none;

font-weight:600;

display:inline-block;

}

.btn-outline{

border:2px solid #153b2d;

color:#153b2d;

padding:16px 34px;

border-radius:10px;

text-decoration:none;

font-weight:600;

display:inline-block;

}

.hero-image{

width:55%;

height:90vh;

display:flex;

justify-content:flex-end;

align-items:flex-end;

}

.hero-image img{

width:100%;

height:100%;

object-fit:cover;

object-position:center;

}

/* =======================
FEATURE STRIP
======================= */

.feature-strip{

display:grid;

grid-template-columns:repeat(5,1fr);

background:white;

margin:20px 70px;

border-radius:20px;

box-shadow:0 5px 20px rgba(0,0,0,.08);

overflow:hidden;

}

.feature-box{

padding:30px;

border-right:1px solid #ececec;

}

.feature-box:last-child{

border:none;

}

.feature-box h3{

margin-bottom:12px;

color:#153b2d;

}

.feature-box p{

color:#666;

line-height:1.6;

}

/* =======================
PROBLEM SECTION
======================= */

.problem-section{

display:grid;

grid-template-columns:1fr 1fr;

gap:30px;

padding:40px 70px;

}

.problem-left,

.problem-right{

background:white;

padding:40px;

border-radius:20px;

box-shadow:0 5px 18px rgba(0,0,0,.08);

}

.problem-left h2,

.problem-right h2{

font-size:42px;

margin-bottom:20px;

color:#153b2d;

}

.problem-left p,

.problem-right p{

line-height:1.8;

color:#555;

margin-bottom:30px;

}

.problem-cards{

display:flex;

justify-content:space-between;

gap:20px;

}

.problem-card{

text-align:center;

}

.problem-card img{

width:150px;

height:150px;

border-radius:50%;

object-fit:cover;

margin-bottom:15px;

}

.problem-right img{

width:100%;

margin-top:20px;

border-radius:15px;

}

/* =======================
RESPONSIVE
======================= */

@media(max-width:900px){

.hero{

flex-direction:column;

}

.hero-text{

width:100%;

margin-bottom:40px;

}

.hero-image{

width:100%;

}

.feature-strip{

grid-template-columns:1fr;

margin:20px;

}

.problem-section{

grid-template-columns:1fr;

padding:20px;

}

nav{

padding:20px;

flex-direction:column;

gap:20px;

}

nav ul{

flex-wrap:wrap;

justify-content:center;

}

}
/* =======================
CONCEPT COLLECTION
======================= */

.collection{

padding:80px 70px;

background:#f8f7f3;

}

.section-title{

text-align:center;

margin-bottom:50px;

}

.small-title{

color:#2f6b52;

font-weight:600;

letter-spacing:2px;

margin-bottom:10px;

}

.section-title h2{

font-size:42px;

color:#153b2d;

margin-bottom:15px;

}

.section-title p{

color:#666;

font-size:18px;

}

.product-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.product-card{

background:white;

padding:25px;

border-radius:20px;

box-shadow:0 5px 18px rgba(0,0,0,.08);

text-align:center;

transition:.3s;

}

.product-card:hover{

transform:translateY(-8px);

}

.product-card img{

width:100%;

height:250px;

object-fit:cover;

border-radius:15px;

margin:20px 0;

}

.badge{

display:inline-block;

background:#e7f4eb;

color:#153b2d;

padding:8px 15px;

border-radius:20px;

font-size:13px;

font-weight:600;

}

.product-card h3{

margin:15px 0;

color:#153b2d;

}

.old-price{

text-decoration:line-through;

color:#999;

margin-right:10px;

}

.price{

font-size:22px;

font-weight:600;

margin:20px 0;

}

.view-product{

display:inline-block;

background:#153b2d;

color:white;

padding:12px 25px;

border-radius:10px;

text-decoration:none;

font-weight:600;

}

.view-product:hover{

background:#20523f;

}

@media(max-width:1000px){

.product-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.product-grid{

grid-template-columns:1fr;

}

}
/* =======================
WAITLIST
======================= */

.waitlist{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

padding:80px 70px;

background:white;

}

.wait-left h2{

font-size:48px;

margin:15px 0;

color:#153b2d;

}

.wait-left p{

line-height:1.8;

color:#555;

margin-bottom:25px;

}

.wait-left ul{

padding-left:20px;

line-height:2;

}

.wait-right{

background:#f8f7f3;

padding:40px;

border-radius:20px;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.wait-right input,

.wait-right select{

width:100%;

padding:16px;

margin-bottom:18px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

}

.wait-right button{

width:100%;
padding:18px;
background:#153b2d;
color:white;
border:none;
border-radius:10px;
font-size:18px;
font-weight:600;
cursor:pointer;
transition:.3s;

}

.wait-right button:hover{

background:#20523f;

transform:translateY(-2px);

}

@media(max-width:900px){

.waitlist{

grid-template-columns:1fr;

}

}
/* =======================
TECHNOLOGY
======================= */

.technology{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

padding:90px 70px;

background:#eef6f1;

align-items:center;

}

.tech-text h2{

font-size:46px;

margin:20px 0;

color:#153b2d;

}

.tech-text p{

line-height:1.9;

margin-bottom:20px;

color:#555;

font-size:18px;

}

.tech-image img{

width:100%;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.1);

}

@media(max-width:900px){

.technology{

grid-template-columns:1fr;

}

}
.logo{
text-decoration:none;
}
.mvp-note{

background:#153b2d;

color:white;

text-align:center;

padding:70px;

}

.mvp-note h2{

font-size:38px;

margin-bottom:20px;

}

.mvp-note p{

max-width:900px;

margin:auto;

line-height:1.9;

font-size:18px;

opacity:.95;

}

/* ================= FOOTER ================= */

footer{

background:#143d2d;

color:white;

padding:60px 8% 25px;

}

.footer-content{

display:flex;

justify-content:space-between;

gap:60px;

flex-wrap:wrap;

}

.footer-column{

flex:1;

min-width:220px;

}

.footer-column h2{

font-size:32px;

margin-bottom:15px;

}

.footer-column h3{

margin-bottom:18px;

font-size:22px;

}

.footer-column p{

color:#d9d9d9;

margin:8px 0;

line-height:1.7;

}

.footer-column a{

display:block;

color:#d9d9d9;

text-decoration:none;

margin:10px 0;

transition:.3s;

}

.footer-column a:hover{

color:white;

padding-left:8px;

}

footer hr{

margin:40px 0 20px;

border:none;

height:1px;

background:rgba(255,255,255,.2);

}

.copyright{

text-align:center;

color:#cfcfcf;

font-size:15px;

}
.market,
.benefits{

padding:80px 8%;

}

.market-grid,
.benefit-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

margin-top:40px;

}

.market-card,
.benefit{

background:white;

padding:30px;

border-radius:15px;

box-shadow:0 5px 20px rgba(0,0,0,.08);

text-align:center;

}

.market h2,
.benefits h2{

text-align:center;

margin-bottom:20px;

color:#153b2d;

}
/* =========================================
PRODUCT CONCEPT PAGE
========================================= */

.product-page{

padding:70px 8%;

background:#f8f7f3;

}

.product-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.product-image img{

width:100%;

border-radius:20px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.product-badge{

display:inline-block;

padding:10px 18px;

background:#ece7ff;

color:#153b2d;

border-radius:30px;

font-weight:600;

margin-bottom:20px;

}

.product-info h1{

font-size:52px;

color:#153b2d;

margin-bottom:20px;

}

.product-info h2{

font-size:28px;

margin-bottom:20px;

color:#222;

}

.product-info p{

font-size:18px;

line-height:1.8;

color:#555;

margin-bottom:30px;

}

.highlight-list{

list-style:none;

margin-bottom:35px;

}

.highlight-list li{

padding:12px 0;

font-size:18px;

border-bottom:1px solid #eee;

}

.product-buttons{

display:flex;

gap:20px;

margin-top:30px;

}

.wait-btn{

background:#153b2d;

color:white;

padding:16px 32px;

text-decoration:none;

border-radius:10px;

font-weight:600;

transition:.3s;

}

.wait-btn:hover{

background:#1e5943;

}

.learn-btn{

border:2px solid #153b2d;

padding:16px 32px;

border-radius:10px;

text-decoration:none;

color:#153b2d;

font-weight:600;

transition:.3s;

}

.learn-btn:hover{

background:#153b2d;

color:white;

}

.prototype-box{

margin-top:70px;

background:white;

padding:35px;

border-radius:18px;

box-shadow:0 5px 18px rgba(0,0,0,.08);

}

.prototype-box h3{

color:#153b2d;

margin-bottom:15px;

font-size:28px;

}

.prototype-box p{

line-height:1.8;

color:#555;

}

@media(max-width:900px){

.product-container{

grid-template-columns:1fr;

}

.product-info h1{

font-size:38px;

}

.product-buttons{

flex-direction:column;

}

}
/* WAITLIST COUNTER */

.waitlist-counter{
    text-align:center;
    padding:50px 20px;
}

.waitlist-counter h3{
    font-size:34px;
    color:#153b2d;
    margin-bottom:15px;
}

#waitlistCount{
    color:#2f6b52;
    font-weight:700;
}

.waitlist-counter p{
    color:#666;
    font-size:18px;
}
/* =======================
CONTACT PAGE
======================= */

.contact-page{

padding:100px 8%;

background:#f8f7f3;

display:flex;

justify-content:center;

}

.contact-card{

max-width:750px;

background:white;

padding:60px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

text-align:center;

}

.contact-card h1{

font-size:48px;

color:#153b2d;

margin:15px 0 30px;

}

.contact-text{

font-size:18px;

line-height:1.8;

color:#555;

margin-bottom:35px;

}

.contact-info{

font-size:18px;

line-height:2.2;

margin-bottom:35px;

}

.prototype-note{

color:#777;

line-height:1.8;

margin-bottom:40px;

}
.view-product,
.btn-green,
.btn-outline{

transition:0.3s ease;

}

.view-product:hover,
.btn-green:hover{

transform:translateY(-2px);

box-shadow:0 10px 20px rgba(0,0,0,.12);

}

.btn-outline:hover{

background:#153b2d;

color:white;

}

/* ======================
FEEDBACK
====================== */

/* ===========================
FEEDBACK
=========================== */

.feedback-section{

padding:90px 8%;

background:#f8f7f3;

}

.feedback-form{

max-width:850px;

margin:auto;

display:flex;

flex-direction:column;

gap:20px;

}

.feedback-form input,
.feedback-form select,
.feedback-form textarea{

padding:18px;

font-size:17px;

border-radius:14px;

border:1px solid #ddd;

background:white;

}

.feedback-form textarea{

resize:none;

}

.feedback-form button{

background:#153b2d;

color:white;

border:none;

padding:18px;

font-size:18px;

font-weight:600;

border-radius:14px;

cursor:pointer;

transition:.3s;

}

.feedback-form button:hover{

background:#20523f;

transform:translateY(-2px);

}

.feedback-wall{

margin-top:70px;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

}

.feedback-card{

padding:25px;

border-radius:12px;

box-shadow:0 12px 25px rgba(0,0,0,.12);

transition:.3s;

min-height:220px;

position:relative;

}

.feedback-card:hover{

transform:translateY(-8px) rotate(0deg);

}

.feedback-card h3{

margin-bottom:10px;

color:#153b2d;

}

.feedback-card .status{

font-weight:600;

margin-bottom:10px;

}

.feedback-card .product{

font-size:14px;

color:#555;

margin-bottom:15px;

}

.feedback-card p{

line-height:1.7;

color:#333;

}

.feedback-card::after{
content:"📌";
position:absolute;
top:-10px;
left:50%;
transform:translateX(-50%);
font-size:22px;
}