.button{
background:linear-gradient(90deg,#e10600,#ff3c00);
padding:14px 28px;
border-radius:30px;
font-weight:600;
color:white;
display:inline-block;
transition:.3s;
}

.button:hover{
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(255,60,0,.3);
}

.card-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:24px;
margin-top:40px;
}

.card{
background:#161e27;
padding:24px;
border-radius:10px;
border:1px solid rgba(255,255,255,0.05);
transition:.25s;
}

.card:hover{
transform:translateY(-4px);
box-shadow:0 8px 20px rgba(0,0,0,.35);
}

.card h3{
margin-bottom:10px;
position:relative;
}

.card h3::before{
content:"";
display:block;
width:40px;
height:3px;
background:#ff5a1f;
margin-bottom:12px;
}

/* NAV DROPDOWN */

nav{
display:flex;
align-items:center;
gap:28px;
}

.nav-dropdown{
position:relative;
}

.dropdown-menu{
position:absolute;
top:100%;
left:0;
background:#161e27;
padding:12px 0;
border-radius:6px;
display:none;
min-width:220px;
box-shadow:0 10px 25px rgba(0,0,0,.35);
}

.dropdown-menu a{
display:block;
padding:10px 20px;
color:#d6dde5;
font-size:14px;
}

.dropdown-menu a:hover{
background:#1f2933;
}

.nav-dropdown:hover .dropdown-menu{
display:block;
}

.nav-cta{
background:#ff5a1f;
padding:10px 20px;
border-radius:4px;
font-weight:600;
}

.nav-button{
margin-left:10px;
padding:8px 18px;
font-size:0.9rem;
white-space:nowrap;
}

/* ========================= */
/* GLOBAL CARD SYSTEM */
/* ========================= */

.card-base{
background:#161e27;
padding:26px;
border-radius:8px;
transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
border:1px solid rgba(255,255,255,0.05);
}

.card-base h3{
margin-bottom:10px;
font-size:18px;
}

.card-base p{
font-size:14.5px;
color:#9aa6b2;
line-height:1.6;
}

.card-base:hover{
transform:translateY(-4px);
box-shadow:0 10px 28px rgba(0,0,0,.35);
border-color:rgba(46,163,255,.35);
}

.card-base h3::before{
content:"";
display:block;
width:40px;
height:3px;
background:#2ea3ff;
margin-bottom:12px;
border-radius:2px;
}

/* ========================= */
/* SECTION HEADING GLOW */
/* ========================= */

.section-glow{
position:relative;
text-align:center;
margin-bottom:40px;
}

.section-glow::before{
content:"";
position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-50%);
width:420px;
height:160px;
background:radial-gradient(
circle,
rgba(46,163,255,0.18),
rgba(46,163,255,0.08),
transparent 70%
);
filter:blur(35px);
opacity:.7;
z-index:-1;
animation:sectionGlow 6s ease-in-out infinite alternate;
}

@keyframes sectionGlow{
from{
opacity:.45;
transform:translate(-50%,-50%) scale(0.9);
}
to{
opacity:.8;
transform:translate(-50%,-50%) scale(1.05);
}
}

/* ========================= */
/* PRODUCT IMAGE LIGHTING */
/* ========================= */

.product-light{
position:relative;
display:inline-block;
}

.product-light::after{
content:"";
position:absolute;
left:50%;
bottom:-30px;
transform:translateX(-50%);
width:70%;
height:120px;

background:radial-gradient(
ellipse at center,
rgba(46,163,255,0.25),
rgba(46,163,255,0.08),
transparent 70%
);

filter:blur(30px);
opacity:.8;
pointer-events:none;
}

.product-light img{
position:relative;
z-index:2;
}

/* ========================= */
/* UNIVERSAL PAGE HERO */
/* ========================= */

.page-hero{
position:relative;
min-height:420px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background-size:cover;
background-position:center;
}

.page-hero::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
rgba(10,15,20,.75),
rgba(10,15,20,.85)
);
}

.hero-overlay{
position:relative;
z-index:2;
padding:20px;
}

.hero-content{
max-width:800px;
margin:auto;
color:white;
}

.page-hero h1{
font-size:clamp(2rem,4vw,3rem);
margin-bottom:18px;
}

.hero-sub{
opacity:.85;
margin-bottom:30px;
font-size:1.05rem;
}

/* ========================= */
/* QUICK SPEC BAR */
/* ========================= */

.quick-spec-bar{
background:#0f141a;
padding:22px 20px;
border-top:1px solid rgba(255,255,255,0.05);
border-bottom:1px solid rgba(255,255,255,0.05);
}

.quick-spec-container{
max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:repeat(5,1fr);
gap:10px;

text-align:center;
font-weight:600;
color:#cfd7df;
font-size:.95rem;
}

/* FOOTER LINKS GRID */

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
max-width:1200px;
margin:auto;
}

/* CHURCHES */

.hero-church{
background:url("church-led-hero.webp") center/cover no-repeat;
}

.card img{
width:100%;
border-radius:12px;
margin-bottom:15px;
}

.partner-card img{
width:100%;
border-radius:6px;
margin-bottom:14px;
display:block;
}

.card-image{
width:100%;
border-radius:6px;
margin-bottom:14px;
display:block;
}