/* ==========================================================
   REINSTEINS TECHNOLOGY V2
========================================================== */

/* Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

/* Reset */

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

html{

scroll-behavior:smooth;

}

body{
    font-family:'Manrope',sans-serif;
    background:var(--background);
    color:var(--text);
    overflow-x:hidden;
    line-height:1.8;
    font-size:16px;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

/* Variables */

:root{
    /* Brand Colors */
    --primary:#171717;
    --primary-light:#2F3133;

    --secondary:#B19463;
    --secondary-light:#D4B98B;

    --background:#F7F4ED;
    --surface:#FFFFFF;

    --heading:#111111;
    --text:#5B5B5B;
    --border:#E8E8E8;

    /* Shadows */
    --shadow-sm:0 8px 20px rgba(0,0,0,.06);
    --shadow-md:0 15px 35px rgba(0,0,0,.10);
    --shadow-lg:0 25px 60px rgba(0,0,0,.15);

    --shadow:var(--shadow-md);

    /* Radius */
    --radius-sm:12px;
    --radius-md:20px;
    --radius-lg:30px;

    /* Transition */
    --transition:.35s ease;
}

/* Common */

.container{

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

}

section{
    padding:100px 0;
    position:relative;
}

img{
    max-width:100%;
    display:block;
    transition:transform .4s ease;
}

img:hover{
    transform:scale(1.02);
}

a{
    text-decoration:none;
    color:inherit;
    transition:color .3s ease;
}

ul{

list-style:none;

}

button{

cursor:pointer;
font-family:'Manrope',sans-serif;

}

h1,h2,h3,h4{
    font-family:'Cormorant Garamond',serif;
    color:var(--heading);
    line-height:1.2;
    font-weight:700;
}

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

.section-heading p{
    color:var(--secondary);
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:14px;
    font-weight:700;
    margin-bottom:12px;
}

.section-heading h2{
    font-size:54px;
    margin-bottom:18px;
}

.section-heading h2::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:var(--secondary);
    margin:18px auto 0;
    border-radius:10px;
}
/* ==========================================================
PRELOADER
========================================================== */

#preloader{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#ffffff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:opacity .5s ease, visibility .5s ease;

}

.loader-content{

    text-align:center;

}

.loader-content img{

    width:120px;
    margin-bottom:20px;

}

.loader-content h2{

    font-size:34px;
    letter-spacing:3px;
    margin-bottom:8px;

}

.loader-content span{

    letter-spacing:4px;
    color:#B19463;
    font-size:13px;

}

#preloader.hide{

    opacity:0;
    visibility:hidden;

}

/* ==========================================================
NAVBAR
========================================================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:rgba(255,255,255,.96);
    backdrop-filter:blur(18px);

    transition:all .35s ease;

    border-bottom:1px solid rgba(0,0,0,.05);
}

header.scrolled{

    background:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;
    width:100%;
}

.logo img{

    height:58px;

    transition:.35s;

}

.logo img:hover{

    transform:scale(1.05) rotate(-3deg);

}

nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:85px;

}

.nav-menu{
    display:flex;
    align-items:center;
    gap:40px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-menu li{
    margin:0;
    padding:0;
}

.nav-menu a{

    position:relative;

    font-weight:600;

    color:var(--primary);

    transition:.3s;

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.3s;

}

.nav-menu a:hover{

    color:var(--secondary);

}

.nav-menu a:hover::after{

    width:100%;

}

.nav-right{

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

}

.login-btn{

padding:14px 30px;
background:#171717;
color:white;
border-radius:40px;
transition:.3s;

}

.login-btn:hover{

background:#B19463;

}

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

.menu-toggle{

    display:none;

    font-size:30px;

    cursor:pointer;

    transition:.3s;

}


.menu-toggle:hover{

    color:var(--secondary);

}

.menu-btn span{

width:30px;
height:3px;
background:#171717;
transition:.3s;

}

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

.hero{

min-height:100vh;
display:flex;
align-items:center;
padding-top:120px;
background:var(--background) url('../images/hero-bg-circuit.svg') no-repeat center top/cover;
position:relative;
overflow:hidden;

}

.hero-blob{

position:absolute;
border-radius:50%;
filter:blur(70px);
opacity:.35;
pointer-events:none;
z-index:0;

}

.hero-blob-1{

width:420px;
height:420px;
top:-120px;
right:-100px;
background:radial-gradient(circle at 30% 30%,#B19463,transparent 70%);
animation:blobFloat1 14s ease-in-out infinite;

}

.hero-blob-2{

width:340px;
height:340px;
bottom:-140px;
left:-80px;
background:radial-gradient(circle at 60% 40%,#171717,transparent 70%);
opacity:.12;
animation:blobFloat2 18s ease-in-out infinite;

}

@keyframes blobFloat1{

0%,100%{ transform:translate(0,0) scale(1); }
50%{ transform:translate(-30px,40px) scale(1.12); }

}

@keyframes blobFloat2{

0%,100%{ transform:translate(0,0) scale(1); }
50%{ transform:translate(25px,-30px) scale(1.08); }

}

.hero-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:90px;
align-items:center;
position:relative;
z-index:1;

}

.hero-tag{

letter-spacing:4px;
font-size:14px;
text-transform:uppercase;
color:#B19463;
font-weight:700;

}

.hero-left h1{

font-size:82px;
line-height:1.08;
margin:25px 0;

}

.hero-left span{

color:#B19463;

}

.hero-left span.shimmer-text{

background:linear-gradient(90deg,#8a713f 0%,#B19463 25%,#f0d9ab 50%,#B19463 75%,#8a713f 100%);
background-size:250% auto;
-webkit-background-clip:text;
background-clip:text;
-webkit-text-fill-color:transparent;
color:transparent;
animation:shimmer 5s linear infinite;

}

@keyframes shimmer{

0%{ background-position:0% center; }
100%{ background-position:250% center; }

}

@media(prefers-reduced-motion:reduce){

.hero-blob, .hero-left span.shimmer-text{
animation:none;
}

}

.hero-description{

font-size:18px;
color:#666;
margin-bottom:40px;
max-width:650px;

}

.hero-logo{

    width:100%;
    max-width:500px;
    display:block;
    margin:auto;

    filter:drop-shadow(0 25px 40px rgba(0,0,0,.15));

    transition:.4s;

}

.hero-logo:hover{

    transform:scale(1.03);

}

.hero-buttons{

display:flex;
gap:20px;
margin-bottom:50px;

}

.primary-btn{

padding:18px 42px;
background:#171717;
color:white;
border-radius:50px;
transition:.35s;

}

.primary-btn:hover{

background:#B19463;

}

.secondary-btn{

padding:18px 42px;
border:1px solid #171717;
border-radius:50px;
transition:.35s;

}

.secondary-btn:hover{

background:#171717;
color:white;

}



.hero-card{

background:white url('../images/hero-pattern.svg') no-repeat top right/cover;
border-radius:35px;
padding:60px;
box-shadow:var(--shadow);
position:relative;
overflow:hidden;

}

.hero-card-top{

display:flex;
align-items:center;
gap:12px;
margin-bottom:30px;

}

.status{

width:14px;
height:14px;
background:#2ecc71;
border-radius:50%;

}

.hero-card h3{

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

}

.hero-icons{

display:flex;
gap:15px;
margin-top:35px;

}

.hero-icons div{

width:55px;
height:55px;
background:#171717;
color:white;
display:flex;
justify-content:center;
align-items:center;
border-radius:16px;
transition:.35s;
animation:heroIconPop .6s ease backwards;

}

.hero-icons div:nth-child(1){ animation-delay:.15s; }
.hero-icons div:nth-child(2){ animation-delay:.3s; }
.hero-icons div:nth-child(3){ animation-delay:.45s; }
.hero-icons div:nth-child(4){ animation-delay:.6s; }

@keyframes heroIconPop{

0%{ opacity:0; transform:scale(.4) translateY(14px); }
70%{ opacity:1; transform:scale(1.08) translateY(-2px); }
100%{ opacity:1; transform:scale(1) translateY(0); }

}

.hero-icons div:hover{

background:#B19463;
transform:translateY(-8px);

}
/* ==========================================================
ABOUT
========================================================== */

.about{

background:#ffffff;

}

.about-grid{

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

}

.about-card{

    width:500px;
    height:520px;

    border-radius:35px;

    position:relative;

    overflow:hidden;

    margin:auto;

    box-shadow:var(--shadow);

}

.about-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.5s ease;

}

.about-card:hover img{

    transform:scale(1.05);

}

.about-badge{
    position:absolute;
    left:25px;
    bottom:25px;
    background:rgba(23,23,23,.88);
    color:#fff;
    padding:16px 24px;
    border-left:4px solid #B19463;
    border-radius:14px;
    font-weight:600;
    font-size:18px;
    backdrop-filter:blur(10px);
}

.about-text h2{

font-size:56px;
margin:20px 0;

}

.about-text p{

font-size:17px;
color:#666;
margin-bottom:22px;

}

.about-features{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
margin-top:35px;

}

.about-features div{

display:flex;
align-items:center;
gap:12px;
font-weight:600;

}

.about-features i{

color:#B19463;
font-size:20px;

}

/* ==========================================================
TEAM IN ACTION
========================================================== */

.team-showcase{

background:var(--background);

}

.team-photos-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:30px;

}

.team-photo-card{

border-radius:28px;
overflow:hidden;
box-shadow:var(--shadow);
height:380px;

}

.team-photo-card img{

width:100%;
height:100%;
object-fit:cover;
display:block;
transition:.5s ease;

}

.team-photo-card:hover img{

transform:scale(1.06);

}

/* ==========================================================
MISSION
========================================================== */

.mission{

background:#171717;

}

.mission-grid{

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

}

.mission-card{

background:#242424;
padding:55px;
border-radius:28px;
transition:.35s;

}

.mission-card:hover{

transform:translateY(-10px);

}

.mission-icon{

width:75px;
height:75px;
background:#B19463;
border-radius:20px;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
color:white;
margin-bottom:30px;

}

.mission-card h3{

color:white;
font-size:40px;
margin-bottom:18px;

}

.mission-card p{

color:#d7d7d7;

}

/* ==========================================================
VALUES
========================================================== */

.values{

background:#F7F4ED;

}

.values-grid{

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

}

.value-card{

background:white;
padding:45px;
border-radius:25px;
text-align:center;
box-shadow:var(--shadow);
transition:.35s;

}

.value-card:hover{

transform:translateY(-12px);

}

.value-card i{

font-size:42px;
color:#B19463;
margin-bottom:25px;

}

.value-card h3{

font-size:34px;
margin-bottom:18px;

}

.value-card p{

color:#666;

}

/* ==========================================================
SECTION TAG
========================================================== */

.section-tag{

color:#B19463;
letter-spacing:4px;
font-size:14px;
text-transform:uppercase;
font-weight:700;

}
/* ==========================================================
SERVICES
========================================================== */

.services{

background:#ffffff;

}

.services-grid{

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

}

.service-card{

background:#F7F4ED;
padding:40px;
border-radius:25px;
transition:.35s;
box-shadow:var(--shadow);
border:1px solid rgba(0,0,0,.05);
position:relative;
overflow:hidden;

}

.service-card::before{

content:"";
position:absolute;
left:0;
top:0;
width:0;
height:100%;
background:linear-gradient(135deg,#171717,#3A3B3B);
transition:.45s;
z-index:0;

}

.service-card *{

position:relative;
z-index:2;

}

.service-card:hover::before{

width:100%;

}

.service-card:hover{

transform:translateY(-12px);

}

.service-card:hover h3,
.service-card:hover p{

color:white;

}

.service-card:hover .service-icon{

background:#B19463;
color:white;
transform:rotate(-8deg) scale(1.1);

}

.service-icon{

width:70px;
height:70px;
border-radius:18px;
display:flex;
justify-content:center;
align-items:center;
font-size:30px;
background:#171717;
color:white;
margin-bottom:25px;
transition:.35s;

}

.service-card h3{

font-size:30px;
margin-bottom:18px;

}

.service-card p{

color:#666;

}

/* ==========================================================
STATISTICS
========================================================== */

.statistics{

background:#171717;

}

.statistics-grid{

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

}

.stat-card{

background:#242424;
padding:45px;
text-align:center;
border-radius:25px;
transition:.35s;

}

.stat-card:hover{

transform:translateY(-10px);
background:#2E2E2E;

}

.stat-card h1{

font-size:62px;
color:#B19463;
margin-bottom:15px;

}

.stat-card span{

color:white;
font-size:18px;

}

/* ==========================================================
WHY REINSTEINS
========================================================== */

.why{

background:#F7F4ED;

}

.why-grid{

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

}

.why-left h2{

font-size:58px;
margin:20px 0;

}

.why-left p:last-child{

color:#666;
font-size:18px;

}

.why-image{

margin-top:35px;
border-radius:28px;
overflow:hidden;
box-shadow:var(--shadow);
max-width:460px;

}

.why-image img{

width:100%;
height:auto;
display:block;
transition:.5s ease;

}

.why-image:hover img{

transform:scale(1.02);

}

.feature-box{

display:flex;
gap:20px;
align-items:flex-start;
background:white;
padding:28px;
border-radius:20px;
margin-bottom:25px;
box-shadow:var(--shadow);
transition:.35s;

}

.feature-box:hover{

transform:translateX(10px);

}

.feature-box i{

width:55px;
height:55px;
background:#B19463;
color:white;
display:flex;
justify-content:center;
align-items:center;
border-radius:16px;
font-size:20px;
flex-shrink:0;

}

.feature-box h3{

font-size:28px;
margin-bottom:8px;

}

.feature-box p{

color:#666;

}
/* ==========================================================
INDUSTRIES
========================================================== */

.industries{

background:#ffffff;

}

.industries-banner{

border-radius:26px;
overflow:hidden;
box-shadow:var(--shadow);
margin-bottom:45px;

}

.industries-banner img{

width:100%;
height:auto;
display:block;

}

.industry-grid{

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

}

.industry-card{

background:#F7F4ED;
padding:40px;
border-radius:25px;
text-align:center;
transition:.35s;
box-shadow:var(--shadow);

}

.industry-card:hover{

transform:translateY(-12px);
background:#171717;
color:white;

}

.industry-card:hover p{

color:#d9d9d9;

}

.industry-card:hover i{

background:#B19463;

}

.industry-card i{

width:75px;
height:75px;
display:flex;
justify-content:center;
align-items:center;
margin:auto;
margin-bottom:25px;
font-size:30px;
background:#171717;
color:white;
border-radius:20px;
transition:.35s;

}

.industry-card h3{

font-size:32px;
margin-bottom:15px;

}

.industry-card p{

color:#666;

}

/* ==========================================================
PROJECTS
========================================================== */

.projects{

background:#F7F4ED;

}

.projects-grid{

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

}

.project-card{

background:white;
padding:45px;
border-radius:28px;
box-shadow:var(--shadow);
transition:.35s;
position:relative;
overflow:hidden;

}

.project-thumb{

display:block;
width:calc(100% + 90px);
height:230px;
object-fit:contain;
object-position:center;
background:#0a1628;
padding:14px 0;
box-sizing:border-box;
margin:-45px -45px 28px -45px;

}

.project-card::after{

content:"";
position:absolute;
left:0;
bottom:0;
width:100%;
height:5px;
background:#B19463;
transform:scaleX(0);
transition:.35s;

}

.project-card:hover{

transform:translateY(-12px);

}

.project-card:hover::after{

transform:scaleX(1);

}

.project-card span{

display:inline-block;
background:#171717;
color:white;
padding:8px 18px;
border-radius:30px;
font-size:13px;
margin-bottom:25px;

}

.project-card h3{

font-size:34px;
margin-bottom:18px;

}

.project-card p{

color:#666;

}

/* ==========================================================
TECHNOLOGY
========================================================== */

.technology{

background:#171717;

}

.technology .section-heading h2{

color:white;

}

.tech-grid{

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

}

.tech-item{

    background:#2b2b2b;
    color:white;
    padding:30px;
    border-radius:20px;
    transition:.35s;
    text-align:left;
    min-height:220px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    line-height:1.8;
    box-shadow:var(--shadow);

}

.tech-icon{

    width:60px;
    height:60px;
    border-radius:16px;
    background:#B19463;
    color:#171717;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    margin-bottom:20px;
    transition:.35s;

}

.tech-item:hover .tech-icon{

    background:#171717;
    color:#B19463;
    transform:scale(1.12) rotate(6deg);

}

.tech-item strong{

    color:#B19463;
    font-size:20px;
    display:block;
    margin-bottom:8px;
    font-family:'Cormorant Garamond',serif;

}

.tech-item:hover{

    background:#B19463;
    color:#ffffff;
    transform:translateY(-10px);

}

.tech-item:hover strong{

    color:#171717;

}

/* ==========================================================
CALL TO ACTION
========================================================== */

.cta{

    background:#171717;

}

.cta-box{

    background:linear-gradient(135deg,rgba(23,23,23,.94),rgba(58,59,59,.94)),
               url('../images/cta-pattern-bg.svg');
    background-size:cover,cover;
    background-position:center,center;
    background-repeat:no-repeat,no-repeat;
    padding:80px;
    border-radius:35px;
    text-align:center;
    color:#ffffff;
    box-shadow:var(--shadow);
    animation:ctaGlow 4s ease-in-out infinite;

}

@keyframes ctaGlow{

0%,100%{ box-shadow:var(--shadow), 0 0 0 rgba(177,148,99,0); }
50%{ box-shadow:var(--shadow), 0 0 60px rgba(177,148,99,.25); }

}

@media(prefers-reduced-motion:reduce){

.cta-box{ animation:none; }

}

.cta-box h2{

    font-size:58px;
    margin:20px 0;
    color:#ffffff;

}

.cta-box p{

    max-width:850px;
    margin:0 auto 40px;
    color:#d8d8d8;
    line-height:1.9;

}

/* ==========================================================
PROCESS
========================================================== */

.process{

background:#ffffff;

}

.process-flow{

max-width:1000px;
margin:0 auto 10px;

}

.process-flow img{

width:100%;
display:block;

}

.process-grid{

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

}

.process-card{

background:#F7F4ED;
padding:40px;
text-align:center;
border-radius:25px;
transition:.35s;
box-shadow:var(--shadow);

}

.process-card:hover{

transform:translateY(-12px);

}

.process-card h1{

font-size:70px;
color:#B19463;
margin-bottom:15px;

}

.process-card h3{

font-size:30px;
margin-bottom:18px;

}

.process-card p{

color:#666;

}
/* ==========================================================
TESTIMONIALS
========================================================== */

.testimonials{

background:#F7F4ED;

}

.testimonial-grid{

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

}

.testimonial-card{

background:#ffffff;
padding:40px;
border-radius:25px;
box-shadow:var(--shadow);
transition:.35s;
position:relative;

}

.testimonial-card:hover{

transform:translateY(-12px);

}

.quote{

width:70px;
height:70px;
border-radius:18px;
background:#171717;
display:flex;
justify-content:center;
align-items:center;
color:white;
font-size:28px;
margin-bottom:25px;

}

.testimonial-card p{

color:#666;
margin-bottom:30px;

}

.client h4{

font-size:26px;
margin-bottom:5px;

}

.client span{

color:#B19463;
font-weight:600;

}

/* ==========================================================
FAQ
========================================================== */

.faq{

background:#ffffff;

}

.faq-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;

}

.faq-card{

background:#F7F4ED;
padding:35px;
border-radius:22px;
box-shadow:var(--shadow);
transition:.35s;

}

.faq-card:hover{

transform:translateY(-10px);

}

.faq-card h3{

font-size:28px;
margin-bottom:15px;

}

.faq-card p{

color:#666;

}

/* ==========================================================
CONTACT
========================================================== */

.contact{

background:#171717;

}

.contact-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(420px,560px);
    gap:80px;
    align-items:center;
}

.contact-left h2{

font-size:58px;
color:white;
margin:20px 0;

}

.contact-left p{

color:#d7d7d7;

}

.contact-info{
    margin-top:50px;
    display:flex;
    flex-direction:column;
    gap:28px;
}

.contact-feature{
    background:rgba(255,255,255,.04);
    padding:24px;
    border-radius:20px;
    transition:.3s;
}

.contact-feature:hover{
    background:rgba(255,255,255,.08);
}

.contact-feature{
    display:flex;
    align-items:flex-start;
    gap:22px;
}

.contact-feature i{
    width:70px;
    height:70px;
    min-width:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#B19463;
    color:#fff;
    border-radius:18px;
    font-size:28px;
    transition:.35s ease;
}

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

.contact-feature h3{
    color:#fff;
    font-size:30px;
    margin-bottom:8px;
}

.contact-feature p{
    color:#cfcfcf;
    line-height:1.8;
    font-size:16px;
    max-width:420px;
}

.contact-right{
    display:flex;
    justify-content:center;
    align-items:flex-start;
}

.contact-right form{
    width:100%;
    max-width:720px;
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:var(--shadow);
}

.contact-right form{
    box-shadow:0 35px 80px rgba(0,0,0,.22);
}

.contact-right input,
.contact-right textarea{

width:100%;
padding:18px;
margin-bottom:20px;
border:none;
background:#F7F4ED;
border-radius:15px;
font-size:16px;
font-family:'Manrope',sans-serif;
outline:none;

}

.contact-right textarea{

resize:none;

}

.contact-right button{

width:100%;
padding:18px;
background:#171717;
color:white;
border:none;
border-radius:40px;
font-size:17px;
transition:.35s;

}

.contact-right button:hover{

background:#B19463;

}

.contact-left .section-tag::after{
    content:"";
    display:block;
    width:70px;
    height:3px;
    background:#B19463;
    margin-top:16px;
}

/* ==========================================================
NEWSLETTER
========================================================== */

.newsletter{

background:#B19463 url('../images/newsletter-pattern.svg') no-repeat center center/cover;
text-align:center;
color:white;
position:relative;

}

.newsletter h2{

font-size:54px;
margin-bottom:15px;

}

.newsletter p{

margin-bottom:35px;

}

.newsletter-form{

display:flex;
justify-content:center;
gap:15px;
max-width:700px;
margin:auto;

}

.newsletter-form input{

flex:1;
padding:18px;
border:none;
border-radius:40px;
outline:none;
font-size:16px;

}

.newsletter-form button{

padding:18px 40px;
border:none;
border-radius:40px;
background:#171717;
color:white;
font-size:16px;
transition:.35s;

}

.newsletter-form button:hover{

background:white;
color:#171717;

}

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

.footer{
    background:#111111;
    color:#ffffff;
    padding:90px 0 0;
}

/* -----------------------------
Top Section
----------------------------- */

.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;
    padding-bottom:50px;
}

.footer-brand{
    max-width:500px;
}

.footer-brand h2{
    font-size:34px;
    line-height:1.2;
    max-width:420px;
}

.footer-brand p{
    color:#cfcfcf;
    line-height:1.9;
    font-size:17px;
}

/* -----------------------------
Social Icons
----------------------------- */

.footer-social{

    display:flex;
    gap:16px;
    margin-top:35px;
    flex-wrap:wrap;

}

.footer-social a{

    width:48px;
    height:48px;

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

    border-radius:50%;

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

    color:#ffffff;

    text-decoration:none;

    transition:all .35s ease;

    font-size:18px;

}

.footer-social a:hover{

    background:#B19463;

    border-color:#B19463;

    color:#111111;

    transform:translateY(-5px);

    box-shadow:0 12px 30px rgba(177,148,99,.35);

}

/* -----------------------------
Divider
----------------------------- */

.footer-divider{
    border:none;
    height:1px;
    background:rgba(255,255,255,.08);
    margin-bottom:60px;
}

/* -----------------------------
Grid
----------------------------- */

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:60px;
    align-items:start;
}

.footer-grid h3{
    color:#ffffff;
    font-size:28px;
    margin-bottom:28px;
    position:relative;
}

.footer-grid h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:45px;
    height:3px;
    background:#B19463;
    border-radius:20px;
}

.footer-grid ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-grid li{
    margin-bottom:16px;
    color:#cfcfcf;
    font-size:16px;
    transition:.3s ease;
}

.footer-grid li a{
    color:#cfcfcf;
    text-decoration:none;
    transition:.3s ease;
}

.footer-grid li:hover,
.footer-grid li a:hover{
    color:#B19463;
    padding-left:6px;
}

/* -----------------------------
Responsive
----------------------------- */

@media(max-width:1200px){

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

}

@media(max-width:768px){

.footer-social{
    justify-content:center;
}

    .footer{
    text-align:center;
}

.footer-top{
    flex-direction:column;
    align-items:center;
}

.footer-brand{
    max-width:100%;
}

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

.footer-grid h3::after{
    left:50%;
    transform:translateX(-50%);
}

.footer-grid li:hover,
.footer-grid li a:hover{
    padding-left:0;
}

}

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

#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #171717;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    opacity: 0;
    transform: scale(.5) translateY(10px);
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease, background .35s ease;
    z-index: 999;
}

#scrollTopBtn.show{
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

#scrollTopBtn:hover {
    background: #B19463;
    color: #fff;
    transform: scale(1) translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,.35);
}
/* ==========================================================
RESPONSIVE DESIGN
========================================================== */

/* ==========================
Large Laptop
========================== */

@media (max-width:1400px){

.container{
    width:min(90%,1400px);
    margin-inline:auto;
}

}

/* ==========================
Laptop
========================== */

@media (max-width:1200px){

.hero-grid,
.about-grid,
.why-grid{

    grid-template-columns:1fr;
    gap:60px;

}

.hero{
    padding-top:150px;
}

.about-card{
    width:100%;
    max-width:500px;
    height:500px;
}

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

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

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

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

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

.tech-grid{
    grid-template-columns:repeat(3,1fr);
}

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

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

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

}
/* ==========================
Tablet
========================== */

@media (max-width:992px){

.process-flow{

display:none;

}

.menu-btn{

display:flex;

}


.nav-menu.mobile-menu{

display:flex;
flex-direction:column;
position:absolute;
top:90px;
left:0;
width:100%;
background:#ffffff;
padding:30px;
gap:20px;
box-shadow:0 20px 40px rgba(0,0,0,.08);
animation:navSlideDown .35s ease;

}

@keyframes navSlideDown{

from{ opacity:0; transform:translateY(-14px); }
to{ opacity:1; transform:translateY(0); }

}

.login-btn{

display:none;

}

.hero-left h1{

font-size:60px;

}

.section-heading h2{

font-size:44px;

}

.hero-buttons{

flex-direction:column;
align-items:flex-start;

}


.tech-grid{

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

}

}

/* ==========================
Mobile
========================== */

@media (max-width:768px){

section{

padding:80px 0;

}

.hero{

padding-top:140px;

}

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.team-photos-grid{

grid-template-columns:1fr;

}

.team-photo-card{

height:260px;

}

.hero-left h1{

font-size:46px;

}

.hero-description{

font-size:16px;

margin:auto;

margin-bottom:30px;

}

.hero-buttons{

align-items:center;

}

.hero-buttons a{

width:100%;

max-width:320px;

text-align:center;

}

.hero-stats{

justify-content:center;

}

.hero-card{

padding:35px;

}

.hero-card h3{

font-size:32px;

}

.about-text{

text-align:center;

}

.about-features{

grid-template-columns:1fr;

}

.mission-grid{

grid-template-columns:1fr;

}

.values-grid{

grid-template-columns:1fr;

}

.services-grid{

grid-template-columns:1fr;

}

.statistics-grid{

grid-template-columns:1fr;

}

.why-grid{

grid-template-columns:1fr;

}

.industry-grid{

grid-template-columns:1fr;

}

.projects-grid{

grid-template-columns:1fr;

}

.tech-grid{

grid-template-columns:1fr;

}

.process-grid{

grid-template-columns:1fr;

}

.testimonial-grid{

grid-template-columns:1fr;

}

.faq-grid{

grid-template-columns:1fr;

}

.contact-grid{

grid-template-columns:1fr;

}

.newsletter-form{

flex-direction:column;

}

.newsletter-form button{

width:100%;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.contact-info div{

justify-content:center;

}

}

/* ==========================
Small Mobile
========================== */

@media (max-width:480px){

.logo h2{

font-size:26px;

}

.logo span{

font-size:10px;

}

.hero-left h1{

font-size:36px;

}

.section-heading h2{

font-size:34px;

}

.hero-card{

padding:25px;

}

.about-card{

height:380px;

}

.about-content-box h2{

font-size:40px;

}

.contact-left h2{
    font-size:68px;
    line-height:1.1;
}

.newsletter h2{

font-size:38px;

}

.footer h2{

font-size:32px;

}

}

/* ==========================================================
SCROLLBAR
========================================================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#ece8df;

}

::-webkit-scrollbar-thumb{

background:#B19463;

border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

background:#171717;

}
/* ==========================================================
LOGIN PAGE
========================================================== */

.login-body{

background:linear-gradient(135deg,#171717,#3A3B3B);
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
font-family:'Manrope',sans-serif;
padding:40px;

}

.login-container{

width:1200px;
max-width:100%;
display:grid;
grid-template-columns:1fr 1fr;
background:white;
border-radius:30px;
overflow:hidden;
box-shadow:0 30px 80px rgba(0,0,0,.25);

}

.login-left{

background:linear-gradient(135deg,#171717,#3A3B3B);
display:flex;
justify-content:center;
align-items:center;
padding:70px;
color:white;
position:relative;

}

.login-left::before{

content:"";
position:absolute;
width:350px;
height:350px;
background:#B19463;
border-radius:50%;
opacity:.15;
top:-120px;
right:-120px;

}

.login-left::after{

content:"";
position:absolute;
width:250px;
height:250px;
background:white;
border-radius:50%;
opacity:.05;
bottom:-100px;
left:-100px;

}

.login-brand{

position:relative;
z-index:2;
text-align:center;

}

.login-brand h1{

font-size:62px;
letter-spacing:4px;
margin-bottom:20px;

}

.login-brand p{

font-size:18px;
color:#dddddd;
line-height:1.8;

}

.login-right{

display:flex;
justify-content:center;
align-items:center;
padding:60px;

}

.login-box{

width:100%;
max-width:420px;

}

.login-box h2{

font-size:48px;
margin-bottom:10px;
color:#171717;

}

.login-box p{

color:#666;
margin-bottom:35px;

}

.input-box{

position:relative;
margin-bottom:22px;

}

.input-box i{

position:absolute;
left:18px;
top:18px;
color:#B19463;
font-size:18px;

}

.input-box input{

width:100%;
padding:18px 18px 18px 55px;
border:none;
background:#F7F4ED;
border-radius:14px;
font-size:16px;
outline:none;
transition:.3s;

}

.input-box input:focus{

background:#ffffff;
box-shadow:0 0 0 2px #B19463;

}

.login-options{

display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:30px;
font-size:14px;

}

.login-options a{

color:#B19463;
font-weight:600;

}

.login-box button{

width:100%;
padding:18px;
background:#171717;
color:white;
border:none;
border-radius:40px;
font-size:17px;
font-weight:600;
transition:.35s;

}

.login-box button:hover{

background:#B19463;

}

.login-divider{

display:flex;
align-items:center;
justify-content:center;
margin:30px 0;
color:#999;

}

.login-divider span{

padding:0 20px;

}

.login-divider::before,
.login-divider::after{

content:"";
flex:1;
height:1px;
background:#ddd;

}

.create-account{

display:block;
text-align:center;
padding:16px;
background:#F7F4ED;
border-radius:40px;
font-weight:700;
margin-bottom:20px;
transition:.3s;

}

.create-account:hover{

background:#171717;
color:white;

}

.back-home{

display:block;
text-align:center;
color:#666;
font-size:15px;

}

.back-home:hover{

color:#B19463;

}

/* ==========================
Responsive Login
========================== */

@media(max-width:900px){

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

    .login-left{
        display:none;
    }

    .login-right{
        padding:40px 25px;
    }

    .login-box h2{
        font-size:38px;
    }

}

/* ==========================
Selection
========================== */

::selection{
    background:var(--secondary);
    color:#fff;
}

button:focus,
input:focus,
textarea:focus,
a:focus{
    outline:3px solid var(--secondary);
    outline-offset:3px;
}

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

.footer-bottom-divider{
    border:0;
    height:1px;
    background:rgba(255,255,255,.08);
    margin:60px 0 35px;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    padding-bottom:35px;
}

.footer-bottom-links{
    display:flex;
    align-items:center;
    gap:35px;
}

.footer-bottom-links a{
    color:#bfbfbf;
    font-size:15px;
    text-decoration:none;
    transition:.3s ease;
}

.footer-bottom-links a:hover{
    color:#B19463;
}

.footer-copyright{
    text-align:right;
}

.footer-copyright p{
    color:#d7d7d7;
    font-size:15px;
    margin-bottom:5px;
}

.footer-copyright span{
    color:#8c8c8c;
    font-size:14px;
    letter-spacing:.3px;
}

/* Mobile */

@media (max-width:768px){

    .footer-bottom{
        flex-direction:column;
        justify-content:center;
        text-align:center;
        gap:20px;
    }

    .footer-bottom-links{
        justify-content:center;
        flex-wrap:wrap;
        gap:20px;
    }

    .footer-copyright{
        text-align:center;
    }

}

/*==================================================
LEGAL PAGE
==================================================*/

.legal-header{
    background:#0f1117;
    border-bottom:1px solid rgba(255,255,255,.08);
    position:sticky;
    top:0;
    z-index:999;
}

.legal-header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.legal-header nav a{
    color:#ffffff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.legal-header nav a:hover{
    color:#D4AF37;
}

.legal-hero{
    padding:120px 0 80px;
    text-align:center;
    background:linear-gradient(180deg,#111827,#0b0d12);
}

.legal-tag{
    display:inline-block;
    padding:8px 18px;
    border:1px solid rgba(212,175,55,.4);
    border-radius:50px;
    color:#D4AF37;
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:20px;
}

.legal-hero h1{
    font-size:58px;
    color:#ffffff;
    margin-bottom:20px;
}

.legal-hero p{
    color:#c8c8c8;
    font-size:18px;
    line-height:1.8;
}

/* ===========================================
   Legal Header Logo
=========================================== */

.legal-header .logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.legal-header .logo img{
    height:60px;
    width:auto;
    display:block;
    object-fit:contain;
}

/*==========================================
  LEGAL CONTENT
==========================================*/

.legal-content{
    padding:100px 0;
    background:
        radial-gradient(circle at top right, rgba(212,175,55,0.05), transparent 30%),
        radial-gradient(circle at bottom left, rgba(74,53,94,0.10), transparent 35%),
        linear-gradient(180deg,#111827 0%, #0F172A 45%, #0B1220 100%);
}

.legal-hero{
    padding:130px 0 90px;
    text-align:center;
    background:
        radial-gradient(circle at top center, rgba(212,175,55,.08), transparent 25%),
        linear-gradient(180deg,#111827 0%, #0F172A 100%);
}

.legal-header{
    background:rgba(15,23,42,.92);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.legal-content ul{
    margin:25px 0 35px;
    padding-left:28px;
}

.legal-content li{
    color:#F3F4F6;
    font-size:17px;
    line-height:2;
    margin-bottom:10px;
}

.legal-content li::marker{
    color:#D4AF37;
}

.legal-content .container{
    max-width:900px;
    margin:0 auto;
}

.legal-content h2{
    color:#FFFFFF;
    font-size:34px;
    font-weight:700;
    margin-top:70px;
    margin-bottom:25px;
    position:relative;
    padding-left:22px;
    letter-spacing:.5px;
}

.legal-content h2::before{
    content:"";
    position:absolute;
    left:0;
    top:4px;
    width:5px;
    height:34px;
    background:#D4AF37;
    border-radius:10px;
}

.legal-content p{
    color:#E5E7EB;
    font-size:17px;
    line-height:1.9;
    margin-bottom:22px;
}

.legal-content strong{
    color:#ffffff;
    font-weight:600;
}

/* ==========================================
SUCCESS POPUP
========================================== */

.success-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);

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

    visibility:hidden;
    opacity:0;

    transition:.3s ease;

    z-index:99999;
}

.success-popup.show{
    visibility:visible;
    opacity:1;
}

.success-box{
    width:450px;
    max-width:90%;

    background:#fff;

    padding:40px;

    border-radius:20px;

    text-align:center;

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

    animation:popup .35s ease;
}

@keyframes popup{

    from{
        transform:scale(.8);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }

}

.success-icon{
    font-size:70px;
    color:#22c55e;
    margin-bottom:20px;
}

.success-box h2{
    font-size:34px;
    margin-bottom:15px;
}

.success-box p{
    color:#555;
    line-height:1.8;
    margin-bottom:15px;
}

.popup-subtext{
    color:#777;
}

.popup-btn{
    margin-top:15px;

    width:180px;
    height:50px;

    border:none;
    border-radius:40px;

    background:#4A355E;
    color:#fff;

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

    cursor:pointer;
}

.popup-btn:hover{
    background:#36264a;
}
/* ==========================================================
MARQUEE TICKER
========================================================== */

.marquee-section{

background:#171717;
overflow:hidden;
padding:22px 0;
white-space:nowrap;

}

.marquee-track{

display:flex;
width:max-content;
animation:marqueeScroll 26s linear infinite;

}

.marquee-section:hover .marquee-track{

animation-play-state:paused;

}

.marquee-group{

display:flex;
align-items:center;
flex-shrink:0;

}

.marquee-group span{

font-family:'Manrope',sans-serif;
font-size:16px;
font-weight:700;
letter-spacing:1.5px;
color:#EDE6D8;
padding:0 18px;

}

.marquee-group span.dot{

color:#B19463;
padding:0 6px;

}

@keyframes marqueeScroll{

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

}

@media(prefers-reduced-motion:reduce){

.marquee-track{ animation:none; }

}

/* ==========================================================
BUTTON SHINE SWEEP
========================================================== */

.primary-btn,
.secondary-btn{

position:relative;
overflow:hidden;
display:inline-block;

}

.primary-btn::before,
.secondary-btn::before{

content:"";
position:absolute;
top:0;
left:-120%;
width:60%;
height:100%;
background:linear-gradient(120deg,transparent,rgba(255,255,255,.35),transparent);
transform:skewX(-20deg);
transition:left .65s ease;
pointer-events:none;

}

.primary-btn:hover::before,
.secondary-btn:hover::before{

left:130%;

}

/* ==========================================================
SCROLL REVEAL (staggered, JS-driven)
========================================================== */

.reveal-up{

opacity:0;
transform:translateY(45px);
transition:opacity .7s ease, transform .7s ease;

}

.reveal-up.in-view{

opacity:1;
transform:translateY(0);

}

/* ==========================================================
CARD TILT (JS-driven via inline transform, this enables perspective)
========================================================== */

.service-card,
.project-card,
.tech-item,
.value-card,
.process-card,
.stat-card{

will-change:transform;

}

/* ==========================================================
SCROLL PROGRESS BAR
========================================================== */

#scrollProgress{

position:fixed;
top:0;
left:0;
height:3px;
width:0%;
background:linear-gradient(90deg,#171717,#B19463);
z-index:2000;
transition:width .1s ease-out;

}

/* ==========================================================
AI SHOWCASE
========================================================== */

.ai-showcase{

background:#171717;
overflow:hidden;

}

.ai-showcase-grid{

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

}

.ai-showcase-text h2{

color:#ffffff;
font-size:46px;
margin:18px 0 22px;
line-height:1.2;

}

.ai-showcase-text p{

color:#c9c9c9;
line-height:1.9;
max-width:520px;

}

.ai-status-pill{

display:inline-flex;
align-items:center;
gap:12px;
margin-top:32px;
padding:12px 22px;
border-radius:50px;
background:rgba(177,148,99,.12);
border:1px solid rgba(177,148,99,.35);
color:#EDE6D8;
font-size:14px;
font-weight:600;
letter-spacing:.3px;

}

.ai-status-dot{

width:10px;
height:10px;
border-radius:50%;
background:#B19463;
box-shadow:0 0 0 0 rgba(177,148,99,.6);
animation:statusPulse 1.6s ease-out infinite;

}

@keyframes statusPulse{

0%{ box-shadow:0 0 0 0 rgba(177,148,99,.55); }
70%{ box-shadow:0 0 0 12px rgba(177,148,99,0); }
100%{ box-shadow:0 0 0 0 rgba(177,148,99,0); }

}

.ai-showcase-visual{

position:relative;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;

}

.ai-head-stage{

position:relative;
width:420px;
height:420px;
max-width:100%;
display:flex;
align-items:center;
justify-content:center;

}

.ai-head-stage::before{

content:"";
position:absolute;
inset:0;
margin:auto;
width:320px;
height:320px;
border-radius:50%;
background:radial-gradient(circle,rgba(177,148,99,.35),transparent 70%);
filter:blur(20px);
animation:aiGlowPulse 3.2s ease-in-out infinite;

}

@keyframes aiGlowPulse{

0%,100%{ opacity:.55; transform:scale(1); }
50%{ opacity:.9; transform:scale(1.08); }

}

.ai-head-stage canvas{

position:relative;
z-index:1;
width:100% !important;
height:100% !important;
}

.ai-head-fallback{

position:relative;
z-index:1;
width:220px;
height:220px;
border-radius:50%;
background:radial-gradient(circle at 35% 30%,#2b2b2b,#0d0d0d 70%);
border:2px solid rgba(177,148,99,.5);
display:flex;
align-items:center;
justify-content:center;
animation:aiFallbackSpin 6s linear infinite;

}

.ai-head-fallback::after{

content:"";
width:70%;
height:70%;
border-radius:50%;
border:1px dashed rgba(177,148,99,.4);

}

@keyframes aiFallbackSpin{

from{ transform:rotate(0deg); }
to{ transform:rotate(360deg); }

}

.ai-waveform{

display:flex;
align-items:flex-end;
gap:6px;
height:40px;
margin-top:10px;

}

.ai-waveform span{

width:5px;
height:8px;
border-radius:3px;
background:#B19463;
animation:waveBar 1.1s ease-in-out infinite;

}

.ai-waveform span:nth-child(1){ animation-delay:.0s; }
.ai-waveform span:nth-child(2){ animation-delay:.1s; }
.ai-waveform span:nth-child(3){ animation-delay:.2s; }
.ai-waveform span:nth-child(4){ animation-delay:.3s; }
.ai-waveform span:nth-child(5){ animation-delay:.4s; }
.ai-waveform span:nth-child(6){ animation-delay:.5s; }
.ai-waveform span:nth-child(7){ animation-delay:.4s; }
.ai-waveform span:nth-child(8){ animation-delay:.3s; }
.ai-waveform span:nth-child(9){ animation-delay:.2s; }
.ai-waveform span:nth-child(10){ animation-delay:.1s; }

@keyframes waveBar{

0%,100%{ height:8px; }
50%{ height:36px; }

}

@media(max-width:992px){

.ai-showcase-grid{
grid-template-columns:1fr;
text-align:center;
gap:40px;
}

.ai-showcase-text p{
margin-inline:auto;
}

.ai-showcase-visual{
order:-1;
}

.ai-head-stage{
width:300px;
height:300px;
}

}

@media(prefers-reduced-motion:reduce){

.ai-status-dot, .ai-head-stage::before, .ai-waveform span, .ai-head-fallback{
animation:none;
}

}

/* ==========================================================
AI VOICE ASSISTANT — INTERACTIVE UI
========================================================== */

.ai-input-row{

display:flex;
align-items:center;
gap:16px;
margin-top:26px;
max-width:480px;

}

.ai-mic-btn{

width:58px;
height:58px;
min-width:58px;
border:none;
border-radius:50%;
background:#B19463;
color:#171717;
font-size:22px;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
transition:.3s ease;
position:relative;

}

.ai-mic-btn:hover{

transform:scale(1.08);

}

.ai-mic-btn.listening{

background:#e64545;
color:#fff;
animation:micPulseRing 1.2s ease-out infinite;

}

.ai-mic-btn.speaking{

background:#171717;
color:#B19463;

}

.ai-mic-btn:disabled{

opacity:.4;
cursor:not-allowed;

}

@keyframes micPulseRing{

0%{ box-shadow:0 0 0 0 rgba(230,69,69,.5); }
70%{ box-shadow:0 0 0 18px rgba(230,69,69,0); }
100%{ box-shadow:0 0 0 0 rgba(230,69,69,0); }

}

.ai-text-input{

flex:1;
padding:16px 20px;
border-radius:40px;
border:1px solid rgba(177,148,99,.4);
background:rgba(255,255,255,.06);
color:#fff;
font-size:15px;
font-family:'Manrope',sans-serif;
outline:none;
transition:.3s;

}

.ai-text-input::placeholder{

color:#9c9c9c;

}

.ai-text-input:focus{

border-color:#B19463;
background:rgba(255,255,255,.1);

}

.ai-note{

margin-top:14px;
font-size:13px;
color:#8a8a8a;
min-height:18px;

}

.ai-response-bubble{

margin-top:22px;
max-width:360px;
background:rgba(255,255,255,.06);
border:1px solid rgba(177,148,99,.3);
border-radius:20px;
padding:18px 22px;
color:#EDE6D8;
font-size:15px;
line-height:1.7;
text-align:left;
opacity:0;
transform:translateY(10px);
transition:opacity .4s ease, transform .4s ease;

}

.ai-response-bubble.show{

opacity:1;
transform:translateY(0);

}

.ai-waveform.active span{

animation-duration:.5s;
background:#e64545;

}

.ai-waveform.speaking span{

animation-duration:.4s;
background:#B19463;

}
