/* =========================================================
IT DIGITAL STRATEGY
MASTER PRODUCTION STYLESHEET
PART 1 — FOUNDATION
========================================================= */


/* =========================================================
ROOT DESIGN SYSTEM
========================================================= */

:root{

--bg-primary:#0B0F14;
--bg-secondary:#111821;
--bg-soft:#151E29;
--bg-alt:#0F1620;
--bg-card:#151E29;

--text-primary:#FFFFFF;
--text-secondary:#A7B4C2;

--accent:#00F5FF;
--accent-soft:rgba(0,245,255,.15);
--accent-glow:rgba(0,245,255,.6);

--divider:rgba(255,255,255,.06);

--radius:14px;
--glow-soft:0 0 18px rgba(0,245,255,.35);

}


/* =========================================================
RESET
========================================================= */

*{
box-sizing:border-box;
}

html,body{
margin:0;
padding:0;
overflow-x:hidden;
}

body{

font-family:'Inter',sans-serif;

background:var(--bg-primary);

color:var(--text-secondary);

line-height:1.7;

-webkit-font-smoothing:antialiased;

}


/* =========================================================
TYPOGRAPHY
========================================================= */

h1,h2,h3,h4{

margin-top:0;

color:var(--text-primary);

font-weight:600;

}

p{
margin-top:0;
margin-bottom:16px;
}

a{
transition:.25s ease;
text-decoration:none;
}

a:focus,button:focus{
outline:1px solid var(--accent);
outline-offset:3px;
}


/* =========================================================
CONTAINER
========================================================= */

.container{

width:90%;
max-width:1200px;
margin:auto;

}


/* =========================================================
MICRO CONTACT BAR
========================================================= */

.micro-bar{

background:linear-gradient(
90deg,
transparent,
#2a7d85,
#226369,
transparent
);
padding:3px 0;
font-size:12px;
font-weight:700;

}

.micro-bar .container{

display:flex;
justify-content:flex-end;
gap:20px;

}

.micro-bar a{
color:white;
text-decoration:none;
}


/* =========================================================
HEADER
========================================================= */

header{
position:sticky;
top:0;
z-index:1000;

background:linear-gradient(
180deg,
rgba(18,24,31,0.98),
rgba(11,15,20,0.96)
);

backdrop-filter:blur(14px);

border-bottom:1px solid rgba(255,255,255,0.08);

box-shadow:
inset 0 1px 0 rgba(255,255,255,0.05),
0 8px 22px rgba(0,0,0,0.45);
}

/* Metallic trim line */

header::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:100%;
height:3px;

background:linear-gradient(
90deg,
transparent,
rgba(0,245,255,0.65),
transparent
);

opacity:.35;
}

/* Header layout */

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

/* Logo container */

.logo-block{
display:flex;
align-items:center;
gap:12px;
text-decoration:none;
}

/* Logo image */

.logo-block img{
height:56px;
width:auto;
}

/* Company name */

.company-name{
font-size:15px;
font-weight:600;
color:var(--text-primary);
line-height:1.2;
}

/* Tagline */

.tagline{
font-size:10px;
letter-spacing:.5px;
text-transform:uppercase;
color:var(--text-secondary);
margin-top:2px;
}

/* Navigation */

nav{
display:flex;
align-items:center;
gap:22px;
}

/* Nav links */

nav a{
font-size:15px;
font-weight:600;
color:white;
text-decoration:none;
position:relative;
white-space:nowrap;
}

/* Nav underline animation */

nav a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;

background:linear-gradient(
90deg,
#00F5FF,
#00C3FF
);

transition:width .25s ease;
}

nav a:hover::after{
width:100%;
}

/* CTA button */

.nav-cta{
padding:10px 20px;
border-radius:8px;

border:1px solid var(--accent);

background:transparent;

color:white !important;

font-size:13px;
font-weight:600;

display:flex;
align-items:center;
gap:8px;

white-space:nowrap;

transition:.25s ease;
}

.nav-cta:hover{
background:var(--accent-soft);
box-shadow:0 0 18px var(--accent-glow);
transform:translateY(-1px);
}

/* =========================================================
NAVIGATION
========================================================= */

nav{

display:flex;
align-items:center;
gap:8px;

}

nav a{

font-size:15px;
color:white;
position:relative;
white-space:nowrap;

}

nav a::after{

content:"";
position:absolute;
bottom:-6px;
left:0;
width:0;
height:1px;
background:var(--accent);
transition:.3s;

}

nav a:hover::after{
width:100%;
}


/* =========================================================
DROPDOWN MENU
========================================================= */

.dropdown{
position:relative;
}

.dropdown-content{

position:absolute;
top:100%;
left:0;

background:var(--bg-soft);

border:1px solid var(--divider);
border-radius:0 0 8px 8px;

padding:16px 20px;
min-width:220px;

opacity:0;
visibility:hidden;

transform:translateY(6px);
transition:.25s;

}

.dropdown:hover .dropdown-content{

opacity:1;
visibility:visible;
transform:translateY(0);

}

.dropdown-content a{

display:block;
padding:8px 0;
font-size:13px;
color:var(--text-secondary);

}

.dropdown-content a:hover{
color:var(--accent);
}


/* =========================================================
BUTTONS
========================================================= */

.btn-primary{

padding:10px 22px;

border-radius:8px;
border:1px solid var(--accent);

background:transparent;
color:white;

font-size:13px;

}

.btn-primary:hover{

background:var(--accent-soft);
box-shadow:0 0 18px var(--accent-glow);

}

/* =========================================================
PART 2 — PAGE MODULES
========================================================= */


/* =========================================================
HERO
========================================================= */

.hero{

position:relative;
padding:100px 0;

background-size:cover;
background-position:center;

}

.hero-overlay{

position:absolute;
inset:0;
background:rgba(11,15,20,.75);

}

.hero-content{

position:relative;
z-index:2;
max-width:900px;

}

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

.hero p{

font-size:18px;
margin-top:24px;

}

.hero .container{
max-width:1400px;
margin:0 auto;
padding-left:28px;
padding-right:28px;
}

/* =========================================================
HERO FORMULA TILES
========================================================= */

.hero-formula{

margin-top:40px;

display:flex;
align-items:center;
justify-content:center;
gap:20px;
flex-wrap:wrap;

}

.formula-tile{

background:rgba(15,25,35,0.9);

border:1px solid rgba(0,245,255,0.25);

padding:20px;

border-radius:10px;

width:200px;

text-align:center;

box-shadow:0 0 12px rgba(0,245,255,0.15);

}

.formula-result{

background:rgba(0,245,255,0.08);

border:1px solid rgba(0,245,255,0.4);

padding:22px;

border-radius:10px;

width:240px;

text-align:center;

box-shadow:0 0 18px rgba(0,245,255,0.35);

}

.formula-symbol{

font-size:32px;
color:var(--accent);
font-weight:600;

}


/* =========================================================
SECTIONS
========================================================= */

.section{
padding:110px 0;
}

.section-alt{
background:var(--bg-alt);
}

.section h2{
font-size:34px;
margin-bottom:40px;
}

.section-intro{
max-width:800px;
margin-bottom:30px;
}


/* =========================================================
TWO COLUMN LAYOUT
========================================================= */

.two-column{

display:grid;
grid-template-columns:360px 1fr;
gap:60px;
align-items:center;

}

.image-column img{

width:100%;
max-width:360px;
border-radius:10px;

}

.text-column{
max-width:650px;
}


/* =========================================================
SERVICE CARDS
========================================================= */

.grid-services{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;

}

.card{

background:var(--bg-soft);

padding:30px;

border-radius:var(--radius);

border:1px solid rgba(0,245,255,.08);

transition:.3s;

}

.card:hover{

transform:translateY(-6px);

border-color:rgba(0,245,255,.3);

box-shadow:0 12px 35px rgba(0,0,0,.5);

}


/* =========================================================
ADVISORY MODEL
========================================================= */

.advisory-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:40px;

}

.advisory-tile{

background:var(--bg-soft);

border:1px solid rgba(0,245,255,.08);

border-radius:12px;

padding:30px;

text-align:center;

}

.advisory-icon svg{

width:42px;
height:42px;
margin-bottom:12px;
color:var(--accent);

}

/* =========================================================
PART 3 — SITE SYSTEMS
========================================================= */


/* =========================================================
TRANSFORMATIONAL CAPABILITIES
========================================================= */

.capabilities-wrapper{

display:flex;
gap:25px;
overflow-x:auto;
padding-bottom:10px;
scroll-snap-type:x mandatory;

}

.capability-card{

min-width:260px;

background:var(--bg-soft);

padding:30px;

border-radius:12px;

border:1px solid rgba(0,245,255,.08);

flex-shrink:0;
scroll-snap-align:start;

}

.capability-icon svg{

width:36px;
height:36px;
margin-bottom:14px;

}


/* =========================================================
OUTCOME GRID
========================================================= */

.outcomes-grid{

display:grid;
grid-template-columns:repeat(5,1fr);
gap:40px;
margin-top:60px;

}

.outcome-tile{

background:var(--bg-soft);
padding:40px 30px;
border-radius:var(--radius);
border:1px solid rgba(0,245,255,.08);
text-align:center;
transition:.3s ease;
position:relative;
overflow:hidden;

}

.outcome-tile:hover{

border-color:var(--accent-glow);
box-shadow:var(--glow-soft);
transform:translateY(-4px);

}

.outcome-icon svg{

width:36px;
height:36px;
color:var(--accent-glow);
margin-bottom:20px;

}


/* =========================================================
OUTCOME HOVER SERVICES
========================================================= */

.outcome-services{

position:absolute;
bottom:-100%;
left:0;

width:100%;

background:rgba(0,245,255,0.08);

padding:15px;

font-size:13px;

transition:.3s ease;

border-top:1px solid rgba(0,245,255,0.2);

}

.outcome-tile:hover .outcome-services{
bottom:0;
}


/* =========================================================
CLIENT STRIP
========================================================= */

.client-wrapper{

display:flex;
align-items:center;
margin-top:40px;

}

.client-track{

display:flex;
gap:60px;
overflow:hidden;

}

.client-track img{

height:80px;
opacity:.8;

}

.client-track img:hover{

opacity:1;
transform:scale(1.05);

}

.client-arrow{

font-size:28px;
cursor:pointer;
padding:0 20px;
color:white;

}

.client-arrow:hover{
color:var(--accent-glow);
}


/* =========================================================
INSIGHTS GRID
========================================================= */

.insights-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;

}

.insight-card{

background:var(--bg-soft);
padding:35px;
border-radius:14px;
border:1px solid rgba(0,245,255,.08);

}

.insight-image{

height:180px;
background-size:cover;
background-position:center;
border-radius:10px;
margin-bottom:20px;

}


/* =========================================================
FOOTER
========================================================= */

footer{

background:linear-gradient(180deg,#0E141B,#0B0F14);
padding:90px 0 40px;
border-top:1px solid var(--divider);

}

.footer-container{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:60px;

}

.footer-column h4{

font-size:14px;
margin-bottom:20px;

}

.footer-column a{

display:block;
color:var(--text-secondary);
font-size:13px;
margin-bottom:10px;

}

.footer-column a:hover{
color:var(--accent);
}

.footer-contact-item{

display:flex;
align-items:center;
gap:8px;
margin-bottom:10px;

}

.footer-contact-item svg{

width:16px;
height:16px;

}

.footer-bottom{

margin-top:60px;
border-top:1px solid var(--divider);
padding-top:20px;
text-align:center;
font-size:12px;

}


/* =========================================================
BACK TO TOP
========================================================= */

#backToTop{

position:fixed;
bottom:40px;
right:40px;

background:#0077bc;

border:1px solid var(--accent);

color:white;

padding:10px 14px;

border-radius:50%;

display:none;

cursor:pointer;

}


/* =========================================================
COOKIE TAB
========================================================= */

.cookie-tab{

position:fixed;

right:0;

top:50%;

transform:translateY(-50%);

background:#084340;

color:white;

padding:10px 6px;

writing-mode:vertical-rl;

font-size:12px;

cursor:pointer;

}


/* =========================================================
MOBILE NAV
========================================================= */

.menu-toggle{

display:none;
cursor:pointer;
font-size:22px;
color:white;

}

.mobile-menu{

display:none;
flex-direction:column;
background:var(--bg-soft);
padding:20px;

}

.mobile-menu a{

padding:8px 0;
color:var(--text-secondary);

}

.mobile-menu.active{
display:flex;
}


/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1000px){

.grid-services{
grid-template-columns:repeat(2,1fr);
}

.footer-container{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

nav{
display:none;
}

.menu-toggle{
display:block;
}

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

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

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

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

}

/* =========================================================
SERVICES PYRAMID
========================================================= */

.services-pyramid{

display:flex;
flex-direction:column;
align-items:center;
gap:12px;
margin-top:60px;

}

.pyramid-level{

background:var(--bg-soft);

border:1px solid rgba(0,245,255,0.15);

border-radius:8px;

padding:16px 22px;

text-align:center;

font-size:14px;

color:var(--text-primary);

box-shadow:0 0 10px rgba(0,245,255,0.1);

transition:.25s ease;

}

.pyramid-level:hover{

border-color:var(--accent);

box-shadow:0 0 18px rgba(0,245,255,0.35);

}

/* pyramid widths */

.pyramid-base{
width:80%;
}

.pyramid-level-2{
width:70%;
}

.pyramid-level-3{
width:60%;
}

.pyramid-level-4{
width:50%;
}

.pyramid-level-5{
width:40%;
}

.pyramid-level-6{
width:30%;
}

.pyramid-top{
width:20%;
}

/* =========================================================
POSITIONING SECTION
========================================================= */

.positioning-section{
padding:120px 0;
}

.positioning-content{
max-width:1000px;
margin:0 auto;
}

.positioning-content h2{
margin-bottom:25px;
}

.positioning-content p{
margin-bottom:20px;
line-height:1.7;
}

.positioning-credentials{
margin-top:35px;
font-weight:500;
opacity:.85;
}

.positioning-content h2::after{

content:"";

display:block;

width:80px;
height:3px;

margin-top:15px;

background:var(--accent);

box-shadow:0 0 12px var(--accent-glow);

}

/* =========================================================
INTERACTIVE SYSTEMS
ASSESSMENT + FORMS + SCHEDULER
=========================================================*/


/* ==============================
MODAL OVERLAY
============================== */

.modal-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(3,10,14,0.85);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
backdrop-filter:blur(6px);
}

.modal-overlay.active{
display:flex;
}


/* ==============================
MODAL CARD
============================== */

.modal-card{

background:linear-gradient(
180deg,
rgba(15,43,58,0.95),
rgba(10,32,45,0.95)
);

max-width:760px;
width:90%;

padding:50px;

border-radius:22px;

border:1px solid rgba(255,255,255,0.08);

box-shadow:0 25px 60px rgba(0,0,0,0.6);

position:relative;

text-align:center;

}


/* ==============================
MODAL CLOSE BUTTON
============================== */

.modal-close{

position:absolute;

top:18px;
right:18px;

background:rgba(255,255,255,0.05);

border:1px solid rgba(255,255,255,0.1);

width:40px;
height:40px;

border-radius:50%;

color:white;

font-size:18px;

cursor:pointer;

transition:.2s ease;

}

.modal-close:hover{

background:var(--accent);

color:#07141c;

}


/* ==============================
ASSESSMENT PROGRESS BAR
============================== */

.assessment-progress{

margin-bottom:28px;
text-align:left;

}

.assessment-progress-header{

font-size:13px;
opacity:.75;
margin-bottom:8px;

}

.assessment-progress-bar{

width:100%;
height:8px;

background:rgba(255,255,255,0.08);

border-radius:10px;

overflow:hidden;

}

#assessmentProgressFill{

height:100%;
width:0%;

background:linear-gradient(
90deg,
#00F5FF,
#00C3FF
);

box-shadow:0 0 12px rgba(0,245,255,.6);

transition:width .35s ease;

}


/* ==============================
ASSESSMENT QUESTION
============================== */

#assessmentQuestion{

font-size:24px;

line-height:1.35;

margin-bottom:32px;

}


/* ==============================
ANSWER GRID
============================== */

.assessment-answers{

display:grid;

grid-template-columns:1fr 1fr;

gap:14px;

margin-bottom:24px;

}


/* ==============================
ANSWER TILE
============================== */

.answer-tile{

padding:16px 18px;

border-radius:12px;

border:1px solid rgba(255,255,255,0.12);

background:rgba(255,255,255,0.04);

cursor:pointer;

transition:
transform .15s ease,
background .2s ease,
border-color .2s ease,
box-shadow .2s ease;

}

.answer-tile:hover{

transform:translateY(-2px);

border-color:var(--accent);

background:rgba(0,245,255,0.08);

box-shadow:0 6px 16px rgba(0,0,0,0.35);

}

.answer-tile.selected{

border-color:var(--accent);

background:rgba(0,245,255,0.18);

box-shadow:
0 0 12px rgba(0,245,255,0.45),
inset 0 0 8px rgba(0,245,255,0.15);

}


/* ==============================
ASSESSMENT TEXTAREA
============================== */

#assessmentTextarea{

width:100%;

height:180px;

border-radius:16px;

padding:20px;

font-size:16px;

background:rgba(255,255,255,0.05);

border:1px solid rgba(255,255,255,0.12);

color:white;

resize:none;

outline:none;

}

#assessmentTextarea:focus{

border-color:var(--accent);

background:rgba(255,255,255,0.07);

box-shadow:0 0 10px rgba(0,245,255,0.4);

}


/* ==============================
ASSESSMENT NAVIGATION
============================== */

.assessment-navigation{

display:flex;

justify-content:space-between;

margin-top:28px;

}

.assessment-next,
.assessment-back{

font-size:14px;

letter-spacing:.3px;

padding:12px 26px;

border-radius:10px;

border:1px solid rgba(255,255,255,0.15);

background:transparent;

color:white;

cursor:pointer;

transition:.2s ease;

}

.assessment-next{

border-color:var(--accent);

color:var(--accent);

}

.assessment-next:hover{

background:var(--accent);

color:#07141c;

box-shadow:0 0 12px rgba(0,245,255,.5);

}


/* =========================================================
CONTACT FORM GRID
========================================================= */

.contact-form-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:16px;

margin-top:20px;

}

.contact-form-grid input,
.contact-form-grid textarea,
.contact-form-grid select{

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

padding:12px;

border-radius:8px;

color:white;

font-family:Inter;

font-size:14px;

}

.contact-form-grid textarea{

grid-column:span 2;

min-height:100px;

resize:vertical;

}

.contact-form-grid button{

grid-column:span 2;

margin-top:10px;

}


/* =========================================================
CONSULTATION SCHEDULER
========================================================= */

.scheduler-overlay{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.75);

display:none;

align-items:center;
justify-content:center;

z-index:2000;

backdrop-filter:blur(8px);

}

.scheduler-overlay.active{
display:flex;
}


/* Scheduler Container */

.scheduler-container{

width:960px;

max-width:95%;

display:flex;

background:#0f1419;

border-radius:14px;

overflow:hidden;

border:1px solid rgba(255,255,255,.08);

box-shadow:0 20px 60px rgba(0,0,0,.5);

position:relative;

}


/* Panels */

.scheduler-left{
flex:2;
padding:40px;
}

.scheduler-right{

flex:1;

background:#121a22;

padding:40px;

border-left:1px solid rgba(255,255,255,.05);

}


/* Calendar */

.calendar-grid{

display:grid;

grid-template-columns:repeat(7,1fr);

gap:8px;

margin-top:20px;

}

.calendar-day{

padding:12px;

text-align:center;

border-radius:8px;

background:#1a232b;

cursor:pointer;

transition:.15s;

font-size:14px;

}

.calendar-day:hover{

background:var(--accent);

color:black;

}

.calendar-disabled{

opacity:.25;

pointer-events:none;

}

.selected-day{

background:var(--accent);

color:black;

}


/* Time Slots */

.time-slots{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:10px;

margin-top:20px;

}

.time-slot{

padding:10px;

background:#1a232b;

border-radius:8px;

cursor:pointer;

text-align:center;

transition:.15s;

font-size:14px;

}

.time-slot:hover{

background:var(--accent);

color:black;

}

.selected-time{

background:var(--accent);

color:black;

}


/* =========================================================
MODAL ANIMATIONS
========================================================= */

.modal-overlay{
animation:modalFade .25s ease forwards;
}

@keyframes modalFade{

from{opacity:0;}
to{opacity:1;}

}

.modal-card{

transform:translateY(20px) scale(.98);

animation:modalSlide .35s ease forwards;

}

@keyframes modalSlide{

to{transform:translateY(0) scale(1);}

}


/* =========================================================
MOBILE
========================================================= */

@media(max-width:800px){

.scheduler-container{
flex-direction:column;
}

.scheduler-right{

border-left:none;

border-top:1px solid rgba(255,255,255,.05);

}

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

.contact-form-grid textarea,
.contact-form-grid button{
grid-column:span 1;
}

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

}

/* =========================================================
PREMIUM UI POLISH
ENTERPRISE VISUAL ENHANCEMENTS
Add this block at the END of the stylesheet
========================================================= */


/* ==============================
SVG ALIGNMENT FIX
============================== */

svg{
display:block;
}


/* ==============================
SECTION DEPTH ENHANCEMENT
============================== */

.section{
position:relative;
}

.section::after{

content:"";

position:absolute;

bottom:0;
left:0;

width:100%;
height:1px;

background:linear-gradient(
90deg,
transparent,
rgba(0,245,255,0.15),
transparent
);

}


/* ==============================
CARD INTERACTION UPGRADE
============================== */

.card,
.capability-card,
.advisory-tile,
.outcome-tile{

transition:
transform .25s ease,
box-shadow .25s ease,
border-color .25s ease;

}

.card:hover,
.capability-card:hover,
.advisory-tile:hover,
.outcome-tile:hover{

transform:translateY(-6px) scale(1.01);

box-shadow:
0 10px 25px rgba(0,0,0,.45),
0 0 18px rgba(0,245,255,.15);

}


/* ==============================
TYPOGRAPHY POLISH
============================== */

h1,h2,h3{

letter-spacing:.2px;

}

h1{

line-height:1.25;

}

h2{

line-height:1.35;

}

.section-intro{

font-size:18px;

opacity:.9;

}


/* ==============================
ACCENT UNDERLINE FOR SECTION TITLES
============================== */

.section h2::after{

content:"";

display:block;

width:70px;
height:3px;

margin-top:14px;

background:linear-gradient(
90deg,
var(--accent),
transparent
);

box-shadow:0 0 10px var(--accent-glow);

}


/* =========================================================
PART 4 — APPLICATION MODULES
Forms, Assessment Tool, Scheduler, Cookie Modal
========================================================= */


/* =========================================================
COOKIE MODAL
========================================================= */

.cookie-modal{
position:fixed;
inset:0;
background:rgba(0,0,0,0.6);
display:none;
align-items:center;
justify-content:center;
z-index:2000;
}

.cookie-modal.active{
display:flex;
}

.cookie-box{
background:var(--bg-card);
padding:30px;
border-radius:var(--radius);
width:320px;
text-align:center;
}


/* =========================================================
OUTCOME BULLET LIST
========================================================= */

.outcome-list{
list-style:none;
padding:0;
}

.outcome-list li{
margin-bottom:10px;
padding-left:18px;
position:relative;
}

.outcome-list li::before{
content:"•";
position:absolute;
left:0;
color:var(--accent);
}


/* =========================================================
PROFILE IMAGE
========================================================= */

.profile-image{
width:250px;
max-width:100%;
height:auto;
border-radius:8px;
object-fit:cover;
}


/* =========================================================
CONSULTATION PAGE
========================================================= */

.consultation-wrapper{
padding:100px 0;
}

.consultation-intro{
text-align:center;
max-width:800px;
margin:0 auto 60px auto;
}

.consultation-intro h1{
font-size:38px;
margin-bottom:20px;
}

.consultation-intro p{
font-size:16px;
color:var(--text-secondary);
}

.consultation-content{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;
}


/* Process Steps */

.process-steps{
display:flex;
flex-direction:column;
gap:40px;
}

.process-step{
display:flex;
gap:20px;
}

.step-number{
font-size:22px;
font-weight:600;
color:var(--accent-glow);
min-width:40px;
}

.process-step h4{
margin-bottom:8px;
}


/* Consultation Card */

.consultation-card{
background:rgba(30,42,53,0.75);
backdrop-filter:blur(12px);
padding:40px;
border-radius:12px;
border:1px solid rgba(255,255,255,0.08);
}

.assessment-launch-btn{
width:100%;
margin-top:25px;
padding:14px;
border-radius:8px;
border:1px solid var(--accent-glow);
background:transparent;
color:#fff;
cursor:pointer;
transition:.3s ease;
}

.assessment-launch-btn:hover{
background:rgba(0,245,255,0.08);
}


/* =========================================================
ASSESSMENT TOOL
========================================================= */

.assessment-page{
padding:120px 20px;
max-width:900px;
margin:0 auto;
text-align:center;
}

.assessment-hero-inner h1{
font-size:36px;
margin-bottom:16px;
}

.assessment-hero-inner p{
max-width:700px;
margin:0 auto 40px auto;
line-height:1.6;
opacity:.85;
}


/* Assessment Modal */

.assessment-modal-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(3,10,14,0.85);
display:none;
align-items:center;
justify-content:center;
z-index:3000;
}

.assessment-modal-card{
background:linear-gradient(
180deg,
rgba(15,43,58,0.95),
rgba(10,32,45,0.95)
);
max-width:760px;
width:90%;
padding:56px;
border-radius:22px;
box-shadow:0 25px 60px rgba(0,0,0,0.6);
position:relative;
text-align:center;
border:1px solid rgba(255,255,255,0.08);
}


/* Close Button */

.assessment-close-button{
position:absolute;
top:18px;
right:18px;
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.1);
width:40px;
height:40px;
border-radius:50%;
color:#fff;
font-size:18px;
cursor:pointer;
transition:.2s ease;
}

.assessment-close-button:hover{
background:#00F5FF;
color:#07141c;
}


/* Question */

#assessmentQuestion{
font-size:24px;
line-height:1.35;
margin-bottom:32px;
}


/* Answers */

.assessment-answers{
display:grid;
grid-template-columns:1fr 1fr;
gap:14px;
margin-bottom:24px;
}

.answer-tile{
padding:16px 18px;
border-radius:12px;
border:1px solid rgba(255,255,255,0.12);
background:rgba(255,255,255,0.04);
cursor:pointer;
transition:all .2s ease;
}

.answer-tile:hover{
transform:translateY(-2px);
border-color:#00F5FF;
background:rgba(0,245,255,0.08);
}

.answer-tile.selected{
border-color:#00F5FF;
background:rgba(0,245,255,0.18);
}


/* Text Area */

#assessmentTextarea{
width:100%;
height:180px;
border-radius:16px;
padding:20px;
font-size:16px;
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.12);
color:white;
resize:none;
}


/* Navigation */

.assessment-navigation{
display:flex;
justify-content:space-between;
margin-top:28px;
}

.assessment-back,
.assessment-next{
font-size:14px;
padding:12px 26px;
border-radius:10px;
border:1px solid rgba(255,255,255,0.15);
background:transparent;
color:white;
cursor:pointer;
}

.assessment-next{
border-color:#00F5FF;
color:#00F5FF;
}

.assessment-next:hover{
background:#00F5FF;
color:#07141c;
}


/* Progress Bar */

.assessment-progress-bar{
width:100%;
height:8px;
background:rgba(255,255,255,0.08);
border-radius:10px;
overflow:hidden;
}

#assessmentProgressFill{
height:100%;
width:0%;
background:linear-gradient(90deg,#00F5FF,#00C3FF);
box-shadow:0 0 12px rgba(0,245,255,.6);
}


/* Completion */

.assessment-complete-message{
background:rgba(255,255,255,0.04);
border:1px solid rgba(255,255,255,0.08);
border-radius:16px;
padding:36px;
margin-top:40px;
}


/* =========================================================
CONTACT FORM GRID
========================================================= */

.contact-form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:14px;
margin-top:20px;
}

.contact-form-grid input,
.contact-form-grid textarea,
.contact-form-grid select{
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
padding:12px;
border-radius:8px;
color:white;
font-family:Inter;
font-size:14px;
}

.contact-form-grid textarea{
grid-column:span 2;
min-height:100px;
resize:vertical;
}

.contact-form-grid button{
grid-column:span 2;
margin-top:10px;
}


/* =========================================================
SCHEDULER SYSTEM
========================================================= */

.scheduler-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.75);
display:none;
align-items:center;
justify-content:center;
z-index:4000;
backdrop-filter:blur(8px);
}

.scheduler-container{
width:960px;
max-width:95%;
display:flex;
background:#0f1419;
border-radius:14px;
overflow:hidden;
border:1px solid rgba(255,255,255,.08);
box-shadow:0 20px 60px rgba(0,0,0,.5);
position:relative;
}

.scheduler-left{
flex:2;
padding:40px;
}

.scheduler-right{
flex:1;
background:#121a22;
padding:40px;
border-left:1px solid rgba(255,255,255,.05);
}

.calendar-grid{
display:grid;
grid-template-columns:repeat(7,1fr);
gap:8px;
}

.calendar-day{
padding:12px;
text-align:center;
border-radius:8px;
background:#1a232b;
cursor:pointer;
}

.calendar-day:hover{
background:#00f5ff;
color:black;
}

.selected-day{
background:#00f5ff;
color:black;
}

.time-slots{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:10px;
margin-top:20px;
}

.time-slot{
padding:10px;
background:#1a232b;
border-radius:8px;
cursor:pointer;
text-align:center;
}

.time-slot:hover{
background:#00f5ff;
color:black;
}

.selected-time{
background:#00f5ff;
color:black;
}


/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:900px){

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

.scheduler-container{
flex-direction:column;
}

.scheduler-right{
border-left:none;
border-top:1px solid rgba(255,255,255,.05);
}

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

.contact-form-grid textarea,
.contact-form-grid button{
grid-column:span 1;
}

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

}

html{
scroll-behavior:smooth;
}

/* =========================================================
PREMIUM TECH GRID BACKGROUND
========================================================= */

.tech-grid{

position:fixed;
top:0;
left:0;

width:100%;
height:100%;

z-index:-2;

background-image:

linear-gradient(
rgba(0,245,255,.06) 1px,
transparent 1px
),

linear-gradient(
90deg,
rgba(0,245,255,.06) 1px,
transparent 1px
);

background-size:60px 60px;

mask-image:radial-gradient(
circle at center,
black 20%,
transparent 90%
);

pointer-events:none;

}


/* floating glow layer */

.tech-glow{

position:fixed;
top:0;
left:0;

width:100%;
height:100%;

background:

radial-gradient(
600px circle at var(--mouse-x) var(--mouse-y),
rgba(0,245,255,.08),
transparent 40%
);

z-index:-1;

pointer-events:none;

transition:background .15s ease;

}


/* slow grid drift animation */

@keyframes gridMove{

0%{
transform:translate(0,0);
}

100%{
transform:translate(60px,60px);
}

}

.tech-grid{

animation:gridMove 60s linear infinite;

}

/* =========================================================
SCROLL REVEAL ANIMATION
========================================================= */

.reveal{
opacity:0;
transform:translateY(30px);
transition:all .7s ease;
}

.reveal.visible{
opacity:1;
transform:translateY(0);
}

.section{
position:relative;
}

.section::after{
content:"";
position:absolute;
bottom:0;
left:0;
width:100%;
height:1px;
background:linear-gradient(
90deg,
transparent,
rgba(0,245,255,.18),
transparent
);
}

.service-icon{
margin-bottom:14px;
}

.service-icon svg{
width:32px;
height:32px;
}


/* capability images */

.capability-image{

width:100%;
height:120px;

object-fit:cover;

border-radius:8px;

margin-bottom:16px;

}


/* horizontal scroll */

.capability-wrapper{

display:flex;
align-items:center;
gap:20px;

}

.outcomes-grid{

display:flex;
gap:30px;

overflow-x:auto;

scroll-behavior:smooth;

}

.outcome-tile{

min-width:260px;

padding:26px;

}


/* arrows */

.capability-arrow{

font-size:28px;
cursor:pointer;
color:white;

}
/* =========================================================
HOMEPAGE UI REFINEMENTS
========================================================= */


/* ==============================
NAVIGATION SPACING REDUCTION
============================== */

.nav{
padding:4px 0;
}

nav{
gap:10px;
}

nav a{
font-size:14px;
padding:4px 6px;
}

.nav-cta{
padding:6px 10px;
font-size:13px;
}


/* ==============================
SEQUENTIAL ADVISORY MODEL ICONS
============================== */

.service-icon svg{

width:34px;
height:34px;

fill:var(--accent);
stroke:none;

margin-bottom:14px;

}


/* ==============================
INSIGHTS CTA BUTTON
============================== */

.insight-card a{

display:inline-block;

margin-top:14px;



color:white;

padding:8px 16px;

border-radius:6px;

font-size:13px;

transition:.2s ease;

}

.insight-card a:hover{

background:#00d7e2;

}


/* ==============================
TRANSFORMATIONAL CAPABILITIES
============================== */

.outcomes-grid{

display:flex;
gap:20px;
overflow-x:auto;

}

.outcome-tile{

min-width:300px;

padding:20px;

text-align:left;

}

.outcome-tile h3{

margin-top:10px;
margin-bottom:10px;

}

.outcome-tile p{

text-align:left;

font-size:14px;

line-height:1.6;

}


/* reduce image height */

.capability-image{

width:100%;
height:120px;

object-fit:cover;

border-radius:6px;

margin-bottom:10px;

}


/* ==============================
CAPABILITY SERVICES TEXT
============================== */

.outcome-services{

font-size:12px;

margin-top:10px;

line-height:1.5;

}
.hero-content{
opacity:0;
transform:translateY(20px);
animation:heroFade 1s ease forwards;
animation-delay:.2s;
}

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

.hero{
min-height:100vh;
display:flex;
align-items:center;
position:relative;
}



/* FORMULA TILE */

.hero-formula-card{
margin-top:28px;
display:flex;
align-items:center;
gap:16px;
background:rgba(12,18,32,.65);
border:1px solid rgba(0,245,255,.25);
border-radius:10px;
padding:46px 20px;
backdrop-filter:blur(8px);
Width:100 px
}

.formula-item{
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.1);
padding:16px 16px;
border-radius:6px;
font-weight:600;
color:#fff;
}

.formula-symbol{
font-size:22px;
font-weight:700;
color:#00eaff;
}

.formula-result{
color:#00eaff;
border-color:#00eaff;
}
/* =========================================================
HERO VIDEO FIX (OVERRIDE)
This block safely fixes hero video layout
========================================================= */

.hero{

height:72vh;
min-height:520px;

display:flex;
align-items:center;

overflow:hidden;

position:relative;

padding:0;

}

/* video behaves like background */

.hero-video{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

object-fit:cover;

z-index:0;

}

/* overlay sits above video */

.hero-overlay{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

background:linear-gradient(
180deg,
rgba(8,12,18,.55),
rgba(8,12,18,.75)
);

z-index:1;

}

/* hero text sits above overlay */

.hero-content{

position:relative;

z-index:2;

max-width:900px;

}

/* fix hero container spacing */

.hero .container{

padding-left:28px;
padding-right:28px;

}

/* headline */

.hero h1{

font-size:46px;
line-height:1.25;

}

/* sub text */

.hero p{

font-size:18px;

margin-top:20px;

}

/* formula card spacing */

.hero-formula-card{

margin-top:28px;

}

/* HERO HEIGHT ADJUSTMENT */

.hero{

height:85vh;
min-height:650px;

}

/* =========================================================
HOME HERO FORMULA REFINEMENT
========================================================= */

.home-hero .hero-content{
max-width:1080px;
}

.home-hero .hero-formula-card{
margin-top:36px;
display:grid;
grid-template-columns:minmax(0,1fr) auto minmax(0,1fr) auto minmax(0,1.15fr);
align-items:stretch;
gap:18px;
max-width:980px;
padding:18px;
border-radius:24px;
background:linear-gradient(135deg,rgba(7,12,20,.78),rgba(10,24,36,.56));
border:1px solid rgba(0,245,255,.18);
box-shadow:
0 24px 80px rgba(0,0,0,.38),
inset 0 1px 0 rgba(255,255,255,.08);
backdrop-filter:blur(14px);
}

.home-hero .formula-step{
display:flex;
flex-direction:column;
justify-content:space-between;
gap:12px;
padding:22px 22px 20px;
border-radius:18px;
background:linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.03));
border:1px solid rgba(255,255,255,.08);
min-height:100%;
}

.home-hero .formula-step-label{
display:block;
font-size:11px;
font-weight:600;
letter-spacing:.18em;
text-transform:uppercase;
color:rgba(255,255,255,.62);
}

.home-hero .formula-step-title{
display:block;
font-size:clamp(24px,2.4vw,32px);
font-weight:600;
line-height:1.05;
color:var(--text-primary);
}

.home-hero .formula-step-copy{
display:block;
font-size:14px;
line-height:1.6;
color:var(--text-secondary);
}

.home-hero .formula-step-result{
background:linear-gradient(135deg,rgba(0,245,255,.16),rgba(0,195,255,.05));
border-color:rgba(0,245,255,.34);
box-shadow:0 0 28px rgba(0,245,255,.12);
}

.home-hero .formula-step-result .formula-step-label{
color:rgba(204,252,255,.82);
}

.home-hero .formula-step-result .formula-step-title{
color:#b7fbff;
}

.home-hero .formula-symbol{
display:grid;
place-items:center;
align-self:center;
width:52px;
height:52px;
border-radius:50%;
background:rgba(0,245,255,.12);
border:1px solid rgba(0,245,255,.28);
box-shadow:inset 0 0 18px rgba(0,245,255,.12);
font-size:24px;
font-weight:700;
color:var(--text-primary);
}

.home-hero .formula-symbol-equals{
background:rgba(255,255,255,.08);
border-color:rgba(255,255,255,.14);
color:var(--accent);
}

@media (max-width:980px){

.home-hero .hero-content{
max-width:760px;
}

.home-hero .hero-formula-card{
grid-template-columns:1fr;
max-width:560px;
gap:14px;
padding:16px;
}

.home-hero .formula-step{
text-align:center;
padding:20px 18px;
}

.home-hero .formula-symbol{
justify-self:center;
width:46px;
height:46px;
font-size:22px;
}

}

@media (max-width:640px){

.home-hero .hero-formula-card{
margin-top:28px;
}

.home-hero .formula-step-title{
font-size:24px;
}

.home-hero .formula-step-copy{
font-size:13px;
}

}

/* =========================================================
SERVICE PILLARS
========================================================= */

.page-kicker{
display:inline-block;
margin-bottom:14px;
font-size:11px;
font-weight:700;
letter-spacing:.18em;
text-transform:uppercase;
color:rgba(183,251,255,.82);
}

.services-hero .hero-content{
max-width:980px;
}

.services-hero-links{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-top:28px;
}

.services-hero-link{
display:inline-flex;
align-items:center;
justify-content:center;
padding:12px 18px;
border-radius:999px;
border:1px solid rgba(0,245,255,.2);
background:rgba(12,22,33,.55);
color:var(--text-primary);
font-size:13px;
font-weight:600;
letter-spacing:.02em;
}

.services-hero-link:hover{
background:rgba(0,245,255,.12);
border-color:rgba(0,245,255,.36);
box-shadow:0 0 18px rgba(0,245,255,.16);
}

.services-pillars-grid{
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:24px;
margin-top:36px;
}

.service-pillar-card{
display:flex;
flex-direction:column;
gap:18px;
padding:32px;
border-radius:22px;
background:linear-gradient(180deg,rgba(18,27,39,.92),rgba(13,20,30,.96));
border:1px solid rgba(0,245,255,.1);
box-shadow:0 16px 40px rgba(0,0,0,.28);
}

.service-pillar-card h3{
margin-bottom:0;
font-size:28px;
}

.service-pillar-card p{
margin-bottom:0;
}

.service-pillar-index{
display:inline-flex;
align-items:center;
justify-content:center;
width:44px;
height:44px;
border-radius:50%;
background:rgba(0,245,255,.12);
border:1px solid rgba(0,245,255,.24);
color:#b7fbff;
font-size:12px;
font-weight:700;
letter-spacing:.16em;
}

.pillar-service-list{
display:flex;
flex-wrap:wrap;
gap:10px;
}

.pillar-service-list span{
display:inline-flex;
align-items:center;
padding:8px 12px;
border-radius:999px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
color:var(--text-primary);
font-size:12px;
line-height:1.3;
}

.pillar-section-heading{
max-width:820px;
margin-bottom:32px;
}

.pillar-section-heading h2{
margin-bottom:18px;
}

.service-library-grid{
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:22px;
}

.service-library-card{
display:flex;
flex-direction:column;
gap:16px;
padding:28px;
border-radius:20px;
background:linear-gradient(180deg,rgba(18,27,39,.92),rgba(13,20,30,.96));
border:1px solid rgba(0,245,255,.1);
box-shadow:0 16px 40px rgba(0,0,0,.24);
}

.service-library-card h3{
margin-bottom:0;
font-size:24px;
}

.service-library-card p{
margin-bottom:0;
}

.service-card-meta{
display:flex;
flex-wrap:wrap;
gap:10px;
}

.service-card-tag{
display:inline-flex;
align-items:center;
padding:7px 12px;
border-radius:999px;
font-size:11px;
font-weight:700;
letter-spacing:.12em;
text-transform:uppercase;
}

.service-card-tag-existing{
background:rgba(0,245,255,.12);
border:1px solid rgba(0,245,255,.24);
color:#b7fbff;
}

.service-card-tag-new{
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.12);
color:var(--text-primary);
}

.service-card-tag-shared{
background:rgba(0,195,255,.14);
border:1px solid rgba(0,195,255,.24);
color:#d7fbff;
}

.service-library-card .btn-primary,
.service-pillar-card .btn-primary{
align-self:flex-start;
margin-top:auto;
}

@media (max-width:1080px){

.services-pillars-grid,
.service-library-grid{
grid-template-columns:repeat(2,minmax(0,1fr));
}

}

@media (max-width:720px){

.services-pillars-grid,
.service-library-grid{
grid-template-columns:1fr;
}

.service-pillar-card,
.service-library-card{
padding:24px;
}

.services-hero-links{
gap:10px;
}

.services-hero-link{
width:100%;
}

}
