html{
scroll-behavior:smooth;
}


body{
font-family:Arial, Helvetica, sans-serif;
margin:0;
line-height:1.7;
color:#222;
font-size:17px;
}


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

header{
position:fixed;
top:0;
width:100%;
background:#fff;
border-bottom:1px solid #ddd;
z-index:1000;
}

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

.logo img{
height:40px;
}

nav a{
margin-left:26px;
font-size:15px;
letter-spacing:0.3px;
text-decoration:none;
color:#333;
font-weight:500;
}

nav a.ceo-blog{
font-weight:700;
}

nav a.ceo-blog::after{
content:"↗";
font-size:12px;
margin-left:5px;
opacity:0.6;
}


nav a.active{
color:#000;
border-bottom:2px solid #000;
padding-bottom:3px;
}

.hero{
height:90vh;
background:
linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
url("../images/hero.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}


.hero h1{
font-size:48px;
margin-bottom:10px;
}

.section{
padding:100px 0;
margin-top:60px;
}

.gray{
background:#f5f5f5;
}

.two-col{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.case-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
margin-top:40px;
}

.case{
background:#fff;
padding:30px;
border:1px solid #ddd;
border-radius:4px;
box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

.media-list{
columns:2;
}

form{
display:flex;
flex-direction:column;
gap:15px;
max-width:500px;
}

input,textarea{
padding:10px;
font-size:16px;
border:1px solid #ccc;
}

button{
background:#111;
color:white;
padding:14px;
border:none;
cursor:pointer;
font-size:16px;
transition:opacity 0.2s ease;
}

button:hover{
opacity:0.85;
}

footer{
background:#111;
color:white;
padding:30px 0;
}

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

.social a svg{
width:22px;
height:22px;
fill:white;
margin-left:15px;
}

.honeypot{
display:none;
}

@media(max-width:768px){

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

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

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

nav{
display:none;
}

}

nav a:hover{
color:#000;
border-bottom:2px solid #000;
padding-bottom:3px;
}

h2{
font-size:32px;
margin-bottom:30px;
position:relative;
}

h2::after{
content:"";
display:block;
width:50px;
height:3px;
background:#000;
margin-top:10px;
}

.section{
opacity:0;
transform:translateY(20px);
animation:fadeInUp 0.8s ease forwards;
}

.section:nth-of-type(2){animation-delay:0.1s;}
.section:nth-of-type(3){animation-delay:0.2s;}
.section:nth-of-type(4){animation-delay:0.3s;}
.section:nth-of-type(5){animation-delay:0.4s;}
.section:nth-of-type(6){animation-delay:0.5s;}
.section:nth-of-type(7){animation-delay:0.6s;}

@keyframes fadeInUp{
to{
opacity:1;
transform:translateY(0);
}
}

textarea{
min-height:140px;
resize:vertical;
}

input:focus,
textarea:focus{
outline:none;
border-color:#000;
}

section{
scroll-margin-top:100px;
}
