/* File Path: public_html/demo/assets/css/style.css */

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

body{
background:#fff;
color:#111827;
}

/* Global Link Underline Removal */
a {
text-decoration: none !important;
}

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

/* HEADER */
header{
border-bottom:1px solid #eee;
background:#fff;
position:sticky;
top:0;
z-index:1000;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
position:relative;
}

.logo {
margin-left: 20px;
}

.logo img{
height:80px;
}

/* DESKTOP NAV */
nav ul{
display:flex;
list-style:none;
gap:28px;
}

nav a{
color:#0D5BA1;
font-weight:500;
}

/* CTA */
.cta a{
margin-left:15px;
}

.btn-primary{
background:#0D5BA1;
color:#fff !important;
padding:10px 18px;
border-radius:8px;
font-weight:600;
display: inline-block;
transition: all 0.2s;
}

.btn-primary:hover {
background:#0a4882;
}

.btn-outline{
border:1px solid #0D5BA1;
color:#0D5BA1 !important;
padding:10px 18px;
border-radius:8px;
font-weight:600;
display: inline-block;
transition: all 0.2s;
}

.btn-outline:hover {
background:#f0f7ff;
}

/* MOBILE MENU BUTTON */
.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:#0D5BA1;
user-select: none;
width: 30px;
text-align: center;
margin-right: 20px; 
}

/* HERO */
.hero{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
padding:90px 0;
}

.hero-text{
width: 45%;
}

.hero-text h1{
font-size:48px;
margin-bottom:20px;
line-height:1.2;
color: #00286A;
}

.hero-text p{
color:#6b7280;
font-size:18px;
margin-bottom:30px;
}

.hero-buttons a{
margin-right:12px;
}

.hero-image{
width: 50%;
}

.hero-image img{
width:100%;
height:auto;
border-radius: 0; /* Removed curve */
box-shadow:0 15px 40px rgba(0,0,0,0.15);
display: block;
}


/* PREMIUM SAAS PRODUCT SHOWCASE */
.saas-showcase {
padding: 100px 0;
background: #f8fafc; 
border-top: 1px solid #e5e7eb;
}

.saas-showcase-wrapper {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap; 
}

.saas-text-content {
width: 45%;
padding-right: 20px;
}

.saas-visual {
width: 50%;
}

.badge-premium {
display: inline-block;
background: #e0f2fe;
color: #0284c7;
padding: 6px 14px;
border-radius: 50px;
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 24px;
}

.saas-text-content h2 {
font-size: 36px;
color: #0f172a;
margin-bottom: 20px;
line-height: 1.2;
}

.saas-text-content p {
font-size: 18px;
color: #475569;
line-height: 1.6;
margin-bottom: 30px;
}

/* Industry Standard Mac Browser Window */
.mac-window {
background: #ffffff;
border-radius: 0; /* Removed curve */
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
border: 1px solid #cbd5e1;
overflow: hidden;
width: 100%;
}

.mac-header {
background: #f1f5f9;
padding: 12px 16px;
border-bottom: 1px solid #e2e8f0;
display: flex;
gap: 8px;
}

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

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.mac-window img {
width: 100%;
height: auto;
display: block;
}


/* FEATURES */
.features{
background:#ffffff; 
padding:90px 0;
text-align:center;
border-top: 1px solid #f3f4f6;
}

.features h2{
font-size:36px;
margin-bottom:50px;
}

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

.card{
background:#f8fafc;
padding:30px;
border-radius:12px;
border: 1px solid #f1f5f9;
transition: transform 0.2s;
}

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


/* FOOTER */
footer{
background:#111827;
color:#fff;
padding:60px 0;
}

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

footer a{
color:#9ca3af;
margin-top:10px;
display:inline-block;
}


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

nav{
display:none;
position:absolute;
top:100%; 
left:0;
width:100%;
background:#fff;
border-top:1px solid #eee;
border-bottom:1px solid #eee;
max-height: calc(100vh - 76px); 
overflow-y: auto; 
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

nav ul{
flex-direction:column;
padding:10px 20px 30px 20px;
}

nav ul li{
padding:15px 0;
border-bottom:1px solid #f3f4f6;
}

nav ul li:last-child{
border-bottom:none;
}

nav a{
display:block;
font-size:18px;
}

nav.active{
display:block;
}

.menu-toggle{
display:block;
}

.cta{
display:none;
}

.hero, .saas-showcase-wrapper {
flex-direction:column;
text-align:center;
}

.hero-text, .hero-image, .saas-text-content, .saas-visual {
width: 100%;
padding-right: 0;
}

.saas-text-content {
order: 1; 
margin-bottom: 40px;
}

.saas-visual {
order: 2;
}

.saas-text-content h2 {
font-size: 30px;
}

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

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

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

}