/* css */

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

html{
scroll-behavior:smooth;
}

body{
font-family:'Outfit',sans-serif;
background:#07101f;
color:#ffffff;
overflow-x:hidden;
}

a{
text-decoration:none;
}

.bg-blur{
position:fixed;
border-radius:50%;
filter:blur(140px);
z-index:-1;
}

.blur1{
width:350px;
height:350px;
background:#2563eb;
top:-120px;
left:-120px;
opacity:0.35;
}

.blur2{
width:400px;
height:400px;
background:#7c3aed;
right:-150px;
bottom:-150px;
opacity:0.25;
}

.top-strip{
padding:12px 20px;
text-align:center;
font-size:14px;
background:#020817;
border-bottom:1px solid rgba(255,255,255,0.06);
color:#cbd5e1;
}

.navbar{
width:100%;
height:90px;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 7%;
position:sticky;
top:0;
z-index:999;
background:rgba(7,16,31,0.85);
backdrop-filter:blur(18px);
border-bottom:1px solid rgba(255,255,255,0.06);
}

.logo-area{
display:flex;
align-items:center;
gap:16px;
}

.logo-area img{
width:120px;
}

.brand-text h2{
font-size:28px;
font-weight:800;
}

.brand-text p{
margin-top:6px;
font-size:13px;
letter-spacing:1px;
text-transform:uppercase;
color:#60a5fa;
}

.nav-buttons{
display:flex;
gap:14px;
}


.btn-login{
border:1px solid rgba(255,255,255,0.12);
color:#fff;
}

.btn-login:hover{
background:rgba(255,255,255,0.06);
}

.btn-primary{
background:linear-gradient(135deg,#2563eb,#7c3aed);
color:#fff;
box-shadow:0 14px 30px rgba(37,99,235,0.35);
}

.btn-primary:hover{
transform:translateY(-2px);
}

.btn-secondary{
background:rgba(255,255,255,0.04);
border:1px solid rgba(255,255,255,0.08);
color:#fff;
}
.btn{
padding:14px 26px;
border-radius:14px;
font-weight:600;
transition:0.3s;
display:inline-flex;
align-items:center;
justify-content:center;
white-space:nowrap;
}

/* DESKTOP ONLY */

@media(min-width:1101px){

.nav-buttons .btn{
height:58px;
padding:0 30px;
font-size:16px;
}

.btn-primary{
min-width:170px;
}

}
.hero{
min-height:100vh;
padding:90px 7%;
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
overflow:hidden;
}

.hero-left{
flex:0 0 52%;
max-width:52%;
}

.tag{
display:inline-block;
padding:12px 18px;
border-radius:999px;
background:rgba(37,99,235,0.12);
border:1px solid rgba(59,130,246,0.30);
color:#93c5fd;
margin-bottom:28px;
font-size:14px;
}

.hero h1{
font-size:30px;
line-height:1.08;
font-weight:800;
margin-bottom:26px;
}

.hero h1 span{
background:linear-gradient(135deg,#60a5fa,#c084fc);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero p{
font-size:20px;
line-height:1.9;
color:#94a3b8;
max-width:650px;
margin-bottom:32px;
}

.hero-badges{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-bottom:36px;
}

.hero-badge{
padding:10px 16px;
border-radius:999px;
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);
font-size:14px;
}

.hero-buttons{
display:flex;
gap:16px;
flex-wrap:wrap;
}

.hero-right{
flex:0 0 48%;
max-width:48%;
display:flex;
justify-content:center;
align-items:center;
}

.dashboard{
width:100%;
max-width:620px;
padding:24px;
border-radius:30px;
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);
backdrop-filter:blur(18px);
box-shadow:0 30px 60px rgba(0,0,0,0.4);
}

.topbar{
display:flex;
gap:10px;
margin-bottom:22px;
}

.dot{
width:12px;
height:12px;
border-radius:50%;
}

.red{background:#ef4444;}
.yellow{background:#f59e0b;}
.green{background:#22c55e;}

.screen{
background:#0f172a;
padding:28px;
border-radius:24px;
}

.screen-header{
display:flex;
align-items:center;
justify-content:space-between;
margin-bottom:28px;
}

.status{
padding:8px 14px;
border-radius:999px;
background:#052e16;
color:#86efac;
font-size:13px;
}

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

.mini-card{
background:#101b31;
border:1px solid rgba(255,255,255,0.05);
padding:22px;
border-radius:20px;
}

.mini-card h4{
margin:14px 0 10px;
font-size:18px;
}

.mini-card p{
color:#94a3b8;
font-size:14px;
line-height:1.8;
}

.stats,
.workflow,
.ai-section,
.features,
.comparison,
.pricing,
.cta{
padding:100px 7%;
}

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

.stat-box,
.workflow-card,
.feature-card,
.price-card{
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);
border-radius:26px;
padding:34px;
transition:0.3s;
}

.stat-box:hover,
.workflow-card:hover,
.feature-card:hover,
.price-card:hover{
transform:translateY(-8px);
border-color:#3b82f6;
}

.stat-box{
text-align:center;
}

.stat-box h2{
font-size:48px;
margin-bottom:10px;
}

.stat-box p{
color:#94a3b8;
}

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

.section-title h2{
font-size:54px;
margin-bottom:16px;
}

.section-title p{
color:#94a3b8;
font-size:18px;
max-width:760px;
margin:auto;
line-height:1.8;
}

.step{
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:18px;
background:linear-gradient(135deg,#2563eb,#7c3aed);
margin-bottom:20px;
font-weight:700;
}

.workflow-card h3,
.feature-card h3{
font-size:24px;
margin-bottom:14px;
}

.workflow-card p,
.feature-card p,
.price-card p{
line-height:1.9;
color:#94a3b8;
}

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

.ai-section h2{
font-size:54px;
line-height:1.2;
margin-bottom:22px;
}

.ai-section p{
color:#94a3b8;
line-height:1.9;
margin-bottom:24px;
font-size:18px;
}

.ai-list{
list-style:none;
}

.ai-list li{
margin-bottom:16px;
font-size:17px;
}

.ai-box{
background:#0f172a;
border:1px solid rgba(255,255,255,0.08);
border-radius:28px;
padding:40px;
}

.typing-line{
font-size:20px;
margin-bottom:28px;
color:#60a5fa;
}

.ai-day{
padding:18px;
background:rgba(255,255,255,0.04);
border-radius:16px;
margin-bottom:16px;
}

.feature-icon{
font-size:42px;
margin-bottom:20px;
}

.comparison-table{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.compare-column{
background:rgba(255,255,255,0.05);
padding:40px;
border-radius:26px;
border:1px solid rgba(255,255,255,0.08);
}

.compare-column.active{
border:2px solid #3b82f6;
}

.compare-column h3{
font-size:30px;
margin-bottom:24px;
}

.compare-column ul{
list-style:none;
}

.compare-column li{
padding:14px 0;
border-bottom:1px solid rgba(255,255,255,0.06);
color:#cbd5e1;
}

.price-card{
text-align:center;
position:relative;
overflow:hidden;
}

.price-card h3{
font-size:26px;
margin-bottom:12px;
}

.price-card h2{
font-size:54px;
margin-bottom:14px;
}

.featured{
border:2px solid #3b82f6;
transform:scale(1.03);
}

.cta-box{
background:linear-gradient(135deg,#1d4ed8,#7c3aed);
padding:80px;
border-radius:34px;
text-align:center;
}

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

.cta-box p{
max-width:760px;
margin:auto;
line-height:1.9;
margin-bottom:34px;
color:#e2e8f0;
font-size:18px;
}




.footer h3,
.footer h4{
margin-bottom:18px;
}

.footer p,
.footer a{
color:#94a3b8;
line-height:2;
display:block;
}

.footer-bottom{
padding-top:24px;
border-top:1px solid rgba(255,255,255,0.06);
text-align:center;
color:#64748b;
}

@media(max-width:1100px){

.hero{
flex-direction:column;
text-align:center;
}

.hero-buttons,
.hero-badges{
justify-content:center;
}

.hero p{
margin:auto auto 32px;
}

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

}

@media(max-width:768px){

.navbar{
height:auto;
padding:20px 5%;
flex-direction:column;
gap:18px;
}

.hero{
padding:60px 5%;
}

.hero h1{
font-size:44px;
}

.hero p{
font-size:17px;
}

.cards,
.stats-grid,
.workflow-grid,
.feature-grid,
.pricing-grid,
.comparison-table,
.footer-grid{
grid-template-columns:1fr;
}

.section-title h2,
.ai-section h2,
.cta-box h2{
font-size:36px;
}

.cta-box{
padding:50px 24px;
}

.hero-buttons .btn,
.cta .btn{
width:100%;
}

.nav-buttons .btn{
width:auto;
}
img{
max-width:100%;
height:auto;
display:block;
}
.hero-buttons{
width:100%;
}

}
.footer{
padding:80px 7% 40px;
border-top:1px solid rgba(255,255,255,0.06);
background:rgba(255,255,255,0.02);
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:50px;
margin-bottom:50px;
}

.footer-logo{
display:flex;
align-items:center;
gap:16px;
margin-bottom:24px;
}

.footer-logo img{
width:80px;
height:auto;
object-fit:contain;
}

.footer-logo h3{
font-size:28px;
margin-bottom:6px;
}

.footer-logo span{
font-size:14px;
color:#60a5fa;
letter-spacing:1px;
text-transform:uppercase;
}

.footer-description{
color:#94a3b8;
line-height:1.9;
margin-bottom:28px;
max-width:520px;
font-size:15px;
}

.footer-contact p{
margin-bottom:14px;
color:#cbd5e1;
font-size:15px;
line-height:1.8;
}

.footer-contact a{
color:#cbd5e1;
text-decoration:none;
transition:0.3s;
}

.footer-contact a:hover{
color:#60a5fa;
}

.footer h4{
margin-bottom:22px;
font-size:20px;
}

.footer a{
display:block;
margin-bottom:14px;
color:#94a3b8;
text-decoration:none;
transition:0.3s;
}

.footer a:hover{
color:#60a5fa;
padding-left:4px;
}

.footer-bottom{
padding-top:26px;
border-top:1px solid rgba(255,255,255,0.06);
text-align:center;
color:#64748b;
font-size:14px;
}

@media(max-width:768px){

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

.footer-logo{
align-items:flex-start;
}

.footer-logo img{
width:70px;
}

}
.nav-menu{
display:flex;
align-items:center;
gap:28px;
}

.nav-menu a{
color:#cbd5e1;
font-size:15px;
transition:0.3s;
font-weight:500;
}

.nav-menu a:hover{
color:#60a5fa;
}


/* ===================================
MOBILE NAVBAR FIX
=================================== */

.menu-toggle{
display:none;
font-size:34px;
color:#fff;
cursor:pointer;
line-height:1;
    margin-left: 300px;
    margin-top: -70px;
}

@media(max-width:1100px){

.navbar{
display:flex;
align-items:center;
justify-content:space-between;
flex-wrap:wrap;
padding:18px 5%;
height:auto;
}

/* LOGO */

.logo-area{
width:auto;
}

/* TOGGLE */

.menu-toggle{
display:block;
}

/* MENU */

.nav-menu{
display:none;
width:100%;
flex-direction:column;
gap:18px;
padding:25px 0 10px;
text-align:center;
}

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

/* BUTTONS */

.nav-buttons{
display:none;
width:100%;
flex-direction:column;
gap:12px;
padding-bottom:10px;
}

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

/* FULL WIDTH BUTTONS */

.nav-buttons .btn{
width:100%;
justify-content:center;
margin-top:10px;
}

}
.stat-box span{
display:block;
margin-top:10px;
font-size:14px;
color:#64748b;
line-height:1.7;
}

.workflow-card{
position:relative;
overflow:hidden;
}

.workflow-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:linear-gradient(135deg,#2563eb,#7c3aed);
}

.ai-box{
position:relative;
overflow:hidden;
}

.ai-box::before{
content:'AI LIVE';
position:absolute;
top:18px;
right:18px;
background:#16a34a;
padding:6px 12px;
border-radius:999px;
font-size:12px;
font-weight:600;
}
.usd-price{
margin:12px 0;
font-size:16px;
font-weight:600;
color:#60a5fa;
}

.price-card span{
display:block;
margin-top:12px;
font-size:14px;
color:#94a3b8;
line-height:1.7;
}

.popular-tag{
position:absolute;
top:-14px;
right:20px;
background:#2563eb;
padding:8px 14px;
border-radius:999px;
font-size:12px;
font-weight:600;
}

.pricing-note{
margin-top:35px;
text-align:center;
color:#64748b;
font-size:14px;
line-height:1.8;
}

.floating-whatsapp{
position:fixed;
bottom:24px;
right:24px;
width:62px;
height:62px;
border-radius:50%;
background:#25D366;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
color:#ffffff;
z-index:9999;
box-shadow:0 10px 30px rgba(37,211,102,0.4);
transition:0.3s;
}

.floating-whatsapp:hover{
transform:scale(1.1);
}

@media(max-width:768px){

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

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

}
/* =====================================
FINAL PREMIUM MOBILE OPTIMIZATION
===================================== */

@media(max-width:768px){

/* BODY */

body{
overflow-x:hidden;
}

/* TOP BAR */

.top-strip{
font-size:12px;
line-height:1.7;
padding:10px 14px;
}

/* NAVBAR */

.navbar{
padding:18px 5%;
flex-direction:column;
height:auto;
gap:18px;
}

.logo-area{
width:100%;
justify-content:center;
}

.logo-area img{
width:90px;
}

.brand-text h2{
font-size:24px;
}

.brand-text p{
font-size:11px;
}

.nav-menu{
display:none;
}

.nav-buttons{
width:100%;
display:flex;
flex-direction:column;
gap:12px;
}

/* BUTTONS */

.nav-buttons .btn,
.hero-buttons .btn,
.cta-box .btn{
width:100%;
justify-content:center;
}

/* HERO */

.hero{
padding:70px 5% 60px;
flex-direction:column;
text-align:center;
gap:50px;
min-height:auto;
}

.hero-left,
.hero-right{
width:100%;
}

.hero h1{
font-size:40px;
line-height:1.2;
}

.hero p{
font-size:16px;
line-height:1.9;
margin-bottom:28px;
}

.hero-badges{
justify-content:center;
gap:10px;
}

.hero-badge{
font-size:13px;
padding:10px 14px;
}

/* DASHBOARD */

.dashboard{
padding:16px;
border-radius:24px;
}

.screen{
padding:18px;
}

.screen-header{
flex-direction:column;
align-items:flex-start;
gap:12px;
}

.cards{
grid-template-columns:1fr;
gap:16px;
}

.mini-card{
padding:20px;
}

.mini-card h4{
font-size:18px;
}

/* SECTIONS */

.stats,
.workflow,
.ai-section,
.features,
.comparison,
.pricing,
.cta,
.footer{
padding:70px 5%;
}

/* TITLES */

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

.section-title h2,
.ai-section h2,
.cta-box h2{
font-size:34px;
line-height:1.3;
}

.section-title p,
.ai-section p,
.cta-box p{
font-size:16px;
}

/* GRIDS */

.stats-grid,
.workflow-grid,
.feature-grid,
.pricing-grid,
.comparison-table,
.footer-grid{
grid-template-columns:1fr;
gap:22px;
}

/* CARDS */

.stat-box,
.workflow-card,
.feature-card,
.price-card,
.compare-column{
padding:26px;
border-radius:22px;
}

.stat-box h2{
font-size:40px;
}

/* WORKFLOW */

.step{
width:54px;
height:54px;
font-size:15px;
}

/* AI SECTION */

.ai-section{
grid-template-columns:1fr;
gap:40px;
}

.ai-box{
padding:24px;
}

.typing-line{
font-size:16px;
line-height:1.7;
}

.ai-day{
padding:16px;
font-size:14px;
}

/* PRICING */

.price-card h2{
font-size:42px;
}

.usd-price{
font-size:15px;
}

/* CTA */

.cta-box{
padding:50px 24px;
border-radius:28px;
}

/* FOOTER */

.footer{
padding-bottom:120px;
}

.footer-grid{
gap:40px;
}

.footer-logo{
align-items:flex-start;
}

.footer-logo img{
width:70px;
}

.footer-logo h3{
font-size:24px;
}

.footer-description{
font-size:14px;
}

.footer h4{
font-size:18px;
margin-bottom:18px;
}

.footer a{
margin-bottom:12px;
}

/* WHATSAPP */

.floating-whatsapp{
width:58px;
height:58px;
font-size:26px;
bottom:18px;
right:18px;
}

/* IMAGES */

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

}

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

@media(max-width:480px){

.hero h1{
font-size:34px;
}

.section-title h2,
.ai-section h2,
.cta-box h2{
font-size:30px;
}

.price-card h2{
font-size:38px;
}

.hero-badge{
width:100%;
text-align:center;
}

}
.brand-line{
display:flex;
align-items:center;
gap:8px;
font-size:11px;
letter-spacing:1px;
text-transform:uppercase;
color:#60a5fa;
margin-top:6px;
line-height:1.4;
}

.live-dot{
width:8px;
height:8px;
border-radius:50%;
background:#22c55e;
position:relative;
flex-shrink:0;
}

.live-dot::after{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
border-radius:50%;
background:#22c55e;
animation:pulseLive 1.8s infinite;
opacity:0.7;
}

@keyframes pulseLive{

0%{
transform:scale(1);
opacity:0.7;
}

70%{
transform:scale(2.2);
opacity:0;
}

100%{
transform:scale(1);
opacity:0;
}

}


/* ===================================
PREMIUM CRM SLIDER
=================================== */

.crm-slider{
position:relative;
width:100%;
max-width:520px;
margin:auto;
animation:floatCRM 5s ease-in-out infinite;
}

.slider-window{
overflow:hidden;
border-radius:28px;
padding:16px;
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);
backdrop-filter:blur(18px);
box-shadow:
0 25px 70px rgba(0,0,0,0.45),
0 0 40px rgba(59,130,246,0.12);
}

.slides-track{
display:flex;
gap:20px;
width:max-content;
animation:crmSlide 35s linear infinite;
align-items:center;
}

.slide{
width:460px;
flex-shrink:0;
}

.slide img{
width:100%;
display:block;
border-radius:20px;
border:1px solid rgba(255,255,255,0.08);
box-shadow:0 10px 30px rgba(0,0,0,0.35);
}

.crm-slider:hover .slides-track{
animation-play-state:paused;
}

.live-badge{
position:absolute;
top:-14px;
right:18px;
z-index:5;
padding:10px 18px;
border-radius:999px;
background:linear-gradient(135deg,#16a34a,#22c55e);
font-size:13px;
font-weight:700;
box-shadow:0 10px 25px rgba(34,197,94,0.35);
}

.crm-slider::before{
content:'';
position:absolute;
width:280px;
height:280px;
background:#2563eb;
filter:blur(120px);
opacity:0.22;
z-index:-1;
top:20%;
left:20%;
}

@keyframes crmSlide{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

@keyframes floatCRM{

0%,100%{
transform:translateY(0px);
}

50%{
transform:translateY(-10px);
}

}

/* MOBILE */

@media(max-width:768px){

.crm-slider{
max-width:100%;
}

.slide{
width:90vw;
}

.slider-window{
padding:12px;
border-radius:22px;
}

.live-badge{
font-size:11px;
padding:8px 14px;
top:-10px;
right:10px;
}

}
.trip-planning-content{
    padding:70px 20px;
    max-width:1200px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:40px;
}

.section-heading h2{
    font-size:38px;
    margin-bottom:15px;
}

.section-heading p{
    max-width:800px;
    margin:auto;
    color:#666;
    font-size:18px;
}

.content-card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    margin-bottom:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.content-card h2{
    margin-bottom:20px;
    color:#111;
}

.content-card p{
    line-height:1.9;
    color:#555;
    margin-bottom:15px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin:40px 0;
}

.feature-box{
    background:#fff;
    padding:25px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-5px);
}

.feature-box h3{
    margin-bottom:12px;
    font-size:20px;
    color:#0d6efd;
}

.feature-box p{
    color:#666;
    line-height:1.7;
}

@media(max-width:768px){

    .section-heading h2{
        font-size:28px;
    }

    .content-card{
        padding:20px;
    }

}
/* SEO CONTENT SECTION */

.trip-planning-content{
    max-width:1200px;
    margin:60px auto;
    padding:0 20px;
}

.section-heading{
    text-align:center;
    margin-bottom:40px;
}

.section-heading h2{
    font-size:38px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
    line-height:1.3;
}

.section-heading p{
    max-width:800px;
    margin:auto;
    color:#6b7280;
    font-size:18px;
    line-height:1.8;
}

.content-card{
    background:#ffffff;
    padding:35px;
    border-radius:20px;
    margin-bottom:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.content-card h2{
    font-size:30px;
    margin-bottom:20px;
    color:#111827;
}

.content-card p{
    color:#4b5563;
    line-height:1.9;
    margin-bottom:18px;
    font-size:16px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin:40px 0;
}

.feature-box{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:all .3s ease;
    border:1px solid #eef2f7;
}

.feature-box:hover{
    transform:translateY(-6px);
}

.feature-box h3{
    color:#2563eb;
    font-size:22px;
    margin-bottom:12px;
}

.feature-box p{
    color:#6b7280;
    line-height:1.8;
    margin:0;
}

/* FAQ SECTION */

.seo-faq{
    margin-top:50px;
}

.seo-faq h2{
    text-align:center;
    margin-bottom:30px;
    font-size:34px;
    color:#111827;
}

.faq-item{
    background:#fff;
    border-radius:16px;
    padding:25px;
    margin-bottom:20px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.faq-item h3{
    color:#111827;
    font-size:20px;
    margin-bottom:10px;
}

.faq-item p{
    color:#6b7280;
    line-height:1.8;
    margin:0;
}

/* INTERNAL LINKS */

.related-links{
    margin-top:50px;
    background:#f8fafc;
    padding:30px;
    border-radius:20px;
}

.related-links h2{
    margin-bottom:20px;
    color:#111827;
}

.related-links ul{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:12px;
    list-style:none;
    padding:0;
    margin:0;
}

.related-links a{
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
}

.related-links a:hover{
    text-decoration:underline;
}

/* MOBILE */

@media(max-width:768px){

    .section-heading h2{
        font-size:28px;
    }

    .content-card{
        padding:25px;
    }

    .content-card h2{
        font-size:24px;
    }

    .feature-box{
        padding:22px;
    }

    .seo-faq h2{
        font-size:28px;
    }

}