/* =====================================
   FUTURISTIC ERP INTERFACE SYSTEM
===================================== */

:root{
    --bg:#06111f;
    --bg-deep:#030812;
    --surface:#0c1727;
    --surface-strong:#101f34;
    --surface-soft:rgba(255,255,255,.065);
    --line:rgba(130,232,255,.18);
    --line-strong:rgba(130,232,255,.38);
    --text:#eaf6ff;
    --text-dark:#081321;
    --muted:#9aabc0;
    --muted-strong:#c8d6e6;
    --cyan:#45d9ff;
    --mint:#6df0b5;
    --amber:#ffc861;
    --rose:#ff6f93;
    --white:#ffffff;
    --radius:14px;
    --shadow:0 24px 80px rgba(0,0,0,.34);
    --shadow-soft:0 14px 45px rgba(0,0,0,.22);
    --transition:280ms ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    scroll-behavior:smooth;
}

html{
    scroll-padding-top:96px;
}

body{
    min-height:100vh;
    background-color:var(--bg);
    background-image:
        linear-gradient(rgba(97,214,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(97,214,255,.045) 1px, transparent 1px),
        linear-gradient(125deg, #06111f 0%, #0c1a2f 46%, #111827 100%);
    background-size:72px 72px,72px 72px,100% 100%;
    color:var(--text);
    overflow-x:hidden;
    padding-top:92px;
}

body::selection{
    background:var(--cyan);
    color:var(--text-dark);
}

img{
    max-width:100%;
    display:block;
}

a{
    color:inherit;
    text-decoration:none;
}

button,
input,
textarea{
    font:inherit;
}

section{
    position:relative;
    overflow:hidden;
    padding:clamp(20px,3vw,40px) 8% clamp(76px,9vw,118px);
}

section::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(90deg, transparent 0%, rgba(69,217,255,.055) 50%, transparent 100%);
    opacity:.6;
}

section::after{
    content:"";
    position:absolute;
    bottom:0;
    left:10%;
    width:80%;
    height:1px;
    background:linear-gradient(90deg, transparent 0%, rgba(69,217,255,.35) 30%, rgba(109,240,181,.35) 70%, transparent 100%);
    pointer-events:none;
}

.max-w-7xl{
    width:min(1180px,100%);
    margin-inline:auto;
}

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

.section-header,
.why-header{
    position:relative;
    z-index:1;
    max-width:850px;
    margin:0 auto 32px;
    text-align:center;
}

.section-tag,
.about-badge,
.pricing-plan-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 13px;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:rgba(69,217,255,.08);
    color:var(--cyan);
    font-size:12px;
    font-weight:800;
    letter-spacing:1.8px;
    text-transform:uppercase;
}

.section-tag::before,
.about-badge::before{
    content:"";
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--mint);
    box-shadow:0 0 15px var(--mint);
}

.section-header h2,
.why-header h2,
.contact-left h2{
    margin:18px 0 12px;
    color:var(--text);
    font-size:clamp(34px,5vw,58px);
    line-height:1.02;
    font-weight:900;
}

.section-header p,
.why-header p{
    max-width:690px;
    margin:16px auto 0;
    color:var(--muted);
    font-size:17px;
    line-height:1.8;
}

.title-divider,
.about-line{
    width:96px;
    height:2px;
    margin:22px auto 0;
    border-radius:99px;
    background:linear-gradient(90deg, transparent, var(--cyan), var(--mint), transparent);
    box-shadow:0 0 20px rgba(69,217,255,.45);
}

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

header{
    position:relative;
    z-index:9999;
}

.navbar{
    position:fixed;
    top:0;
    left:0;
    z-index:9999;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    padding:14px 8%;
    border-bottom:1px solid rgba(130,232,255,.16);
    background:rgba(4,12,24,.78);
    box-shadow:0 18px 70px rgba(0,0,0,.34);
    backdrop-filter:blur(18px);
}

.logo-section{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:max-content;
}

.logo-section img{
    width:58px;
    height:58px;
    object-fit:contain;
    border-radius:var(--radius);
    border:1px solid rgba(255,255,255,.14);
    background:var(--white);
    padding:3px;
}

.company-text h2{
    color:var(--white);
    font-size:22px;
    line-height:1.1;
}

.company-text span{
    display:block;
    margin-top:4px;
    color:var(--mint);
    font-size:12px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.nav-links{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:8px;
    list-style:none;
}

.nav-links a{
    display:inline-flex;
    align-items:center;
    min-height:38px;
    padding:8px 12px;
    border:1px solid transparent;
    border-radius:var(--radius);
    color:var(--muted-strong);
    font-size:14px;
    font-weight:700;
    transition:background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active{
    color:var(--white);
    border-color:var(--line);
    background:rgba(69,217,255,.09);
    transform:translateY(-1px);
}

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

.hero{
    isolation:isolate;
    min-height:calc(100vh - 92px);
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(420px,.9fr);
    align-items:center;
    gap:clamp(46px,7vw,96px);
    padding-top:clamp(20px,3vw,40px);
    padding-bottom:clamp(20px,3vw,40px);
    background:
        linear-gradient(115deg, rgba(3,8,18,.98) 0%, rgba(7,21,38,.94) 52%, rgba(22,28,35,.9) 100%);
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-2;
    background:
        linear-gradient(115deg, rgba(69,217,255,.08), transparent 36%),
        conic-gradient(from 240deg at 76% 45%, transparent 0 36deg, rgba(109,240,181,.12) 58deg, transparent 130deg);
    animation:signalSweep 10s ease-in-out infinite alternate;
}

.hero::after{
    content:"";
    position:absolute;
    left:8%;
    right:8%;
    bottom:0;
    z-index:1;
    height:1px;
    background:linear-gradient(90deg, transparent, var(--cyan), var(--mint), transparent);
}

.hero-grid{
    position:absolute;
    inset:35% -10% -24% -10%;
    z-index:-1;
    transform:perspective(760px) rotateX(62deg);
    transform-origin:center bottom;
    background-image:
        linear-gradient(rgba(69,217,255,.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(69,217,255,.13) 1px, transparent 1px);
    background-size:70px 70px;
    opacity:.33;
    animation:floorGrid 16s linear infinite;
}

.hero-left{
    position:relative;
    z-index:2;
}

.hero-badge{
    color:var(--mint);
    border-color:rgba(109,240,181,.28);
    background:rgba(109,240,181,.08);
}

.hero-left h1{
    max-width:780px;
    margin:22px 0;
    color:var(--white);
    font-size:clamp(28px,4vw,52px);
    font-weight:950;
    line-height:1.08;
}

.hero-left p{
    max-width:680px;
    color:var(--muted-strong);
    font-size:18px;
    line-height:1.85;
}

.hero-metrics{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
    max-width:680px;
    margin-top:30px;
}

.hero-metrics div{
    min-height:92px;
    padding:16px;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:rgba(255,255,255,.055);
    backdrop-filter:blur(14px);
}

.hero-metrics strong{
    display:block;
    color:var(--white);
    font-size:28px;
    line-height:1;
}

.hero-metrics span{
    display:block;
    margin-top:9px;
    color:var(--muted);
    font-size:13px;
    line-height:1.4;
    text-transform:uppercase;
    letter-spacing:.9px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:34px;
}

.btn-primary,
.btn-secondary,
.pricing-btn-outline,
.pricing-btn-filled,
.faq-cta-btn,
.contact-submit-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:13px 22px;
    border-radius:var(--radius);
    font-weight:800;
    line-height:1;
    transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.btn-primary,
.pricing-btn-filled,
.contact-submit-btn{
    border:1px solid rgba(255,255,255,.16);
    background:linear-gradient(135deg, var(--cyan), var(--mint));
    color:var(--text-dark);
    box-shadow:0 18px 45px rgba(69,217,255,.18);
}

.btn-secondary,
.pricing-btn-outline,
.faq-cta-btn{
    border:1px solid var(--line-strong);
    background:rgba(255,255,255,.055);
    color:var(--text);
    backdrop-filter:blur(12px);
}

.btn-primary:hover,
.btn-secondary:hover,
.pricing-btn-outline:hover,
.pricing-btn-filled:hover,
.faq-cta-btn:hover,
.contact-submit-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 55px rgba(69,217,255,.22);
}

.hero-right{
    position:relative;
    z-index:2;
    min-height:560px;
    display:flex;
    align-items:center;
    justify-content:center;
    perspective:1100px;
    transform-style:preserve-3d;
}

.dashboard-holo-shell{
    position:relative;
    width:min(100%,640px);
    padding:12px;
    border:1px solid var(--line-strong);
    border-radius:var(--radius);
    background:
        linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.035)),
        linear-gradient(135deg, rgba(69,217,255,.08), rgba(255,200,97,.045));
    box-shadow:
        var(--shadow),
        0 0 70px rgba(69,217,255,.16);
    transform:
        rotateX(calc(8deg + var(--tilt-x, 0deg)))
        rotateY(calc(-12deg + var(--tilt-y, 0deg)))
        translateZ(0);
    transform-style:preserve-3d;
    transition:transform 160ms ease, box-shadow var(--transition);
    animation:panelHover 6s ease-in-out infinite;
}

.dashboard-holo-shell::before{
    content:"";
    position:absolute;
    inset:-1px;
    z-index:-1;
    border-radius:var(--radius);
    background:linear-gradient(135deg, rgba(69,217,255,.65), transparent 24%, rgba(109,240,181,.42) 56%, transparent 80%);
    filter:blur(16px);
    opacity:.38;
}

.dashboard-holo-shell::after{
    content:"";
    position:absolute;
    inset:13px;
    pointer-events:none;
    border-radius:6px;
    background:
        repeating-linear-gradient(0deg, rgba(255,255,255,.045) 0 1px, transparent 1px 5px);
    mix-blend-mode:screen;
    opacity:.34;
}

.hero-device-bar{
    display:flex;
    align-items:center;
    gap:7px;
    height:28px;
    padding:0 10px;
    border:1px solid rgba(255,255,255,.08);
    border-bottom:0;
    border-radius:6px 6px 0 0;
    background:rgba(3,8,18,.66);
}

.hero-device-bar span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--rose);
    box-shadow:0 0 12px currentColor;
}

.hero-device-bar span:nth-child(2){
    background:var(--amber);
}

.hero-device-bar span:nth-child(3){
    background:var(--mint);
}

#sliderImage{
    width:100%;
    height:min(52vh,430px);
    min-height:330px;
    object-fit:cover;
    object-position:top;
    border:1px solid rgba(255,255,255,.1);
    border-radius:0 0 6px 6px;
    filter:brightness(1.08) contrast(1.15) saturate(1.1) sharpen(1);
    image-rendering:crisp-edges;
    opacity:1;
    transition:opacity 380ms ease, filter var(--transition), transform var(--transition);
}

.hero-scanline{
    position:absolute;
    left:12px;
    right:12px;
    top:40px;
    height:90px;
    pointer-events:none;
    background:linear-gradient(180deg, transparent, rgba(69,217,255,.22), transparent);
    opacity:.65;
    animation:scanline 4.4s linear infinite;
}

.hero-float-card{
    position:absolute;
    z-index:3;
    min-width:166px;
    padding:15px 16px;
    border:1px solid var(--line-strong);
    border-radius:var(--radius);
    background:rgba(6,17,31,.74);
    box-shadow:var(--shadow-soft);
    backdrop-filter:blur(16px);
    transform:translateZ(80px);
    animation:floatPanel 5s ease-in-out infinite;
}

.hero-float-card span{
    display:block;
    color:var(--muted);
    font-size:11px;
    font-weight:800;
    letter-spacing:1.2px;
    text-transform:uppercase;
}

.hero-float-card strong{
    display:block;
    margin-top:7px;
    color:var(--white);
    font-size:22px;
}

.float-card-top{
    top:70px;
    left:-22px;
}

.float-card-bottom{
    right:-16px;
    bottom:108px;
    animation-delay:-2.2s;
}

.hero-data-cube{
    position:absolute;
    right:24px;
    bottom:30px;
    width:84px;
    height:84px;
    transform-style:preserve-3d;
    animation:rotateCube 12s linear infinite;
}

.hero-data-cube span{
    position:absolute;
    inset:0;
    border:1px solid rgba(109,240,181,.6);
    background:
        linear-gradient(135deg, rgba(69,217,255,.08), rgba(109,240,181,.06)),
        linear-gradient(rgba(109,240,181,.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(109,240,181,.16) 1px, transparent 1px);
    background-size:auto,16px 16px,16px 16px;
    box-shadow:0 0 24px rgba(109,240,181,.2);
}

.hero-data-cube span:nth-child(1){
    transform:rotateY(0deg) translateZ(42px);
}

.hero-data-cube span:nth-child(2){
    transform:rotateY(90deg) translateZ(42px);
}

.hero-data-cube span:nth-child(3){
    transform:rotateX(90deg) translateZ(42px);
}

/* =====================================
   SHARED PANELS AND CARDS
===================================== */

.challenges,
.services-section,
.products-section,
.industries-section,
.pricing-section,
.faq-section,
.about-section{
    background:
        linear-gradient(180deg, rgba(6,17,31,.98), rgba(9,20,35,.98));
}

.challenge-grid,
.services-grid,
.why-grid,
.industry-grid,
.pricing-grid,
.about-features,
.about-stats,
.pd-stats,
.faq-container,
.contact-wrapper{
    position:relative;
    z-index:1;
}

.challenge-card,
.service-card,
.feature-card,
.stat-box,
.why-card,
.industry-card,
.pricing-card,
.faq-item,
.contact-right,
.product-menu,
.product-display{
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:
        linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
    box-shadow:var(--shadow-soft);
    backdrop-filter:blur(16px);
    transition:transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.challenge-card:hover,
.service-card:hover,
.feature-card:hover,
.stat-box:hover,
.why-card:hover,
.industry-card:hover,
.pricing-card:hover,
.faq-item:hover{
    transform:translateY(-8px);
    border-color:var(--line-strong);
    box-shadow:0 24px 70px rgba(69,217,255,.16);
}

.challenge-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:20px;
}

.challenge-card{
    min-height:260px;
    padding:30px 24px;
    text-align:left;
}

.challenge-icon,
.card-icon,
.why-icon,
.industry-icon,
.stat-icon,
.contact-info-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:54px;
    height:54px;
    margin-bottom:20px;
    border:1px solid rgba(109,240,181,.24);
    border-radius:var(--radius);
    background:rgba(109,240,181,.08);
    color:var(--white);
    font-size:28px;
}

.challenge-card h3,
.service-card h3,
.feature-card h3,
.why-card-content h3,
.industry-card h4{
    color:var(--white);
    font-size:21px;
    line-height:1.25;
    margin-bottom:12px;
}

.challenge-card p,
.service-card p,
.feature-card p,
.why-card-content p,
.industry-card p,
.pricing-subtitle{
    color:var(--muted);
    font-size:15px;
    line-height:1.75;
}

/* =====================================
   ABOUT SECTION
===================================== */

.about-container{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:1fr .95fr;
    align-items:center;
    gap:clamp(34px,6vw,70px);
}

.about-content h2{
    margin:22px 0 18px;
    color:var(--white);
    font-size:clamp(34px,5vw,56px);
    line-height:1.05;
}

.about-content p{
    color:var(--muted-strong);
    font-size:17px;
    line-height:1.9;
}

.about-line{
    margin:0 0 24px;
}

.about-image{
    position:relative;
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:10px;
    background:rgba(255,255,255,.05);
    box-shadow:var(--shadow);
    transform:perspective(900px) rotateY(-7deg) rotateX(3deg);
}

.about-image::after{
    content:"";
    position:absolute;
    inset:10px;
    border-radius:6px;
    background:linear-gradient(135deg, rgba(69,217,255,.12), transparent 38%, rgba(109,240,181,.12));
    pointer-events:none;
}

.about-image img{
    width:100%;
    min-height:330px;
    object-fit:cover;
    object-position:top;
    border-radius:6px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
    margin-top:56px;
}

.feature-card{
    padding:24px;
}

.about-stats{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
    margin-top:28px;
}

.stat-box{
    padding:26px 18px;
    text-align:center;
}

.stat-box h2{
    color:var(--white);
    font-size:clamp(34px,4vw,52px);
    line-height:1;
    margin-bottom:9px;
}

.stat-box span,
.stat-box p{
    display:block;
    color:var(--muted);
    font-size:14px;
    line-height:1.5;
}

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

.services-grid{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:20px;
}

.services-grid .service-card:nth-child(1){ grid-column: 1 / 3; }
.services-grid .service-card:nth-child(2){ grid-column: 3 / 5; }
.services-grid .service-card:nth-child(3){ grid-column: 5 / 7; }
.services-grid .service-card:nth-child(4){ grid-column: 2 / 4; }
.services-grid .service-card:nth-child(5){ grid-column: 4 / 6; }

.service-card{
    position:relative;
    min-height:300px;
    padding:32px 28px;
}

.card-number{
    position:absolute;
    top:18px;
    right:18px;
    color:rgba(255,255,255,.2);
    font-size:30px;
    font-weight:900;
}

.card-line{
    width:56px;
    height:2px;
    margin:18px 0;
    background:linear-gradient(90deg, var(--cyan), transparent);
}

/* =====================================
   PRODUCT EXPLORER
===================================== */

.products-section{
    background:
        linear-gradient(180deg, rgba(8,19,33,.98), rgba(5,13,25,.98));
}

.product-explorer{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:260px minmax(0,1fr);
    gap:22px;
    align-items:center;
    perspective:1000px;
}

.product-menu{
    position:sticky;
    top:112px;
    display:flex;
    flex-direction:column;
    gap:8px;
    padding:12px;
    align-self:center;
}

.product-tab{
    width:100%;
    min-height:54px;
    display:flex;
    align-items:center;
    gap:11px;
    padding:12px 13px;
    border:1px solid transparent;
    border-radius:var(--radius);
    background:transparent;
    color:var(--muted);
    cursor:pointer;
    text-align:left;
    font-size:14px;
    font-weight:800;
    transition:background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.product-tab:hover,
.product-tab.active{
    color:var(--white);
    border-color:var(--line);
    background:rgba(69,217,255,.09);
    transform:translateX(3px);
}

.tab-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:28px;
    min-width:28px;
    height:28px;
    border-radius:6px;
    background:rgba(109,240,181,.08);
}

.tab-label{
    overflow-wrap:anywhere;
}

.product-display{
    overflow:hidden;
    transform:perspective(1200px) rotateX(1deg);
}

.product-display.is-switching{
    animation:dashboardSwitch 460ms ease both;
}

.pd-topbar{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:18px;
    padding:24px 26px 16px;
    background:linear-gradient(90deg, rgba(69,217,255,.09), rgba(255,255,255,.025));
}

.pd-env-label,
.pd-features-label,
.pd-stat-label{
    display:block;
    color:var(--muted);
    font-size:11px;
    font-weight:900;
    letter-spacing:1.4px;
    text-transform:uppercase;
}

.pd-topbar-left h3{
    margin-top:8px;
    color:var(--white);
    font-size:30px;
    line-height:1.15;
}

.pd-status-badge{
    display:flex;
    align-items:center;
    gap:8px;
    min-height:34px;
    padding:8px 12px;
    border:1px solid rgba(109,240,181,.24);
    border-radius:var(--radius);
    background:rgba(109,240,181,.08);
    color:var(--mint);
    font-size:12px;
    font-weight:800;
    white-space:nowrap;
}

.pd-status-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--mint);
    box-shadow:0 0 16px var(--mint);
    animation:pulseDot 1.8s ease-in-out infinite;
}

.pd-divider{
    height:1px;
    background:linear-gradient(90deg, transparent, var(--line), transparent);
}

.pd-description{
    padding:18px 26px;
    color:var(--muted-strong);
    font-size:15px;
    line-height:1.8;
}

.pd-stats{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
    padding:0 26px 22px;
}

.pd-stat-card{
    padding:16px;
    border:1px solid rgba(255,255,255,.09);
    border-radius:var(--radius);
    background:rgba(3,8,18,.38);
}

.pd-stat-value{
    margin-top:7px;
    color:var(--white);
    font-size:21px;
    font-weight:900;
}

.pd-screenshot-wrapper{
    position:relative;
    margin:0 26px 22px;
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:#030812;
}

.pd-screenshot-label{
    padding:9px 14px;
    border-bottom:1px solid rgba(255,255,255,.08);
    background:rgba(3,8,18,.76);
    color:var(--cyan);
    font-size:11px;
    font-weight:900;
    letter-spacing:1.3px;
    text-transform:uppercase;
}

.pd-screenshot-wrapper img{
    width:100%;
    height:240px;
    object-fit:cover;
    object-position:top;
    cursor:zoom-in;
    transition:transform 520ms ease, filter var(--transition);
    filter:brightness(1.08) contrast(1.12) saturate(1.1);
    image-rendering:crisp-edges;
}

.pd-screenshot-wrapper:hover img{
    transform:scale(1.035);
    filter:brightness(1.12) contrast(1.15) saturate(1.2);
}

.pd-screenshot-hint{
    position:absolute;
    right:12px;
    bottom:12px;
    padding:8px 10px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:var(--radius);
    background:rgba(3,8,18,.78);
    color:var(--white);
    font-size:11px;
    font-weight:800;
    backdrop-filter:blur(10px);
}

.pd-footer{
    padding:18px 26px 26px;
    border-top:1px solid rgba(255,255,255,.08);
}

.product-features{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:11px;
}

.product-features span{
    padding:8px 11px;
    border:1px solid rgba(109,240,181,.24);
    border-radius:var(--radius);
    background:rgba(109,240,181,.08);
    color:var(--mint);
    font-size:13px;
    font-weight:800;
}

/* =====================================
   WHY AND INDUSTRIES
===================================== */

.why-section,
.contact-section,
.site-footer{
    background:
        linear-gradient(135deg, #030812 0%, #081424 48%, #101515 100%);
}

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

.industry-grid{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:20px;
}

.industry-grid .industry-card:nth-child(1){ grid-column: 1 / 3; }
.industry-grid .industry-card:nth-child(2){ grid-column: 3 / 5; }
.industry-grid .industry-card:nth-child(3){ grid-column: 5 / 7; }
.industry-grid .industry-card:nth-child(4){ grid-column: 2 / 4; }
.industry-grid .industry-card:nth-child(5){ grid-column: 4 / 6; }

.why-card{
    display:flex;
    gap:18px;
    min-height:190px;
    padding:26px;
}

.why-icon{
    margin-bottom:0;
    min-width:54px;
}

.industry-card{
    min-height:220px;
    padding:28px;
}

/* =====================================
   PRICING
===================================== */

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

.pricing-card{
    position:relative;
    display:flex;
    min-height:560px;
    flex-direction:column;
    padding:30px;
}

.pricing-card.featured{
    border-color:rgba(109,240,181,.46);
    background:
        linear-gradient(180deg, rgba(109,240,181,.12), rgba(255,255,255,.035));
    transform:translateY(-14px);
}

.pricing-card.featured:hover{
    transform:translateY(-20px);
}

.popular-badge{
    position:absolute;
    top:16px;
    right:16px;
    padding:7px 10px;
    border:1px solid rgba(255,200,97,.32);
    border-radius:var(--radius);
    background:rgba(255,200,97,.09);
    color:var(--amber);
    font-size:12px;
    font-weight:900;
}

.price-amount{
    margin-top:24px;
    color:var(--white);
    font-size:clamp(38px,4vw,54px);
    font-weight:950;
    line-height:1;
}

.price-amount span{
    margin-left:5px;
    color:var(--muted);
    font-size:15px;
    font-weight:800;
}

.enterprise-price{
    color:var(--mint);
}

.pricing-subtitle{
    margin-top:14px;
    min-height:58px;
}

.pricing-divider{
    height:1px;
    margin:22px 0;
    background:linear-gradient(90deg, var(--line), transparent);
}

.pricing-features-list{
    display:flex;
    flex:1;
    flex-direction:column;
    gap:14px;
    list-style:none;
}

.pricing-features-list li{
    display:flex;
    align-items:flex-start;
    gap:9px;
    color:var(--muted-strong);
    font-size:15px;
    line-height:1.45;
}

.check-icon{
    color:var(--mint);
    font-weight:950;
}

.cross-icon,
.feature-muted{
    color:rgba(200,214,230,.48);
}

.pricing-btn-outline,
.pricing-btn-filled{
    width:100%;
    margin-top:28px;
}

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

.faq-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    max-width:1180px;
    margin-inline:auto;
}

.faq-column{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.faq-item{
    overflow:hidden;
}

.faq-question{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:20px 22px;
    border:0;
    background:transparent;
    color:var(--white);
    cursor:pointer;
    text-align:left;
}

.faq-question span{
    font-size:15px;
    font-weight:850;
    line-height:1.5;
}

.faq-icon{
    width:32px;
    min-width:32px;
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid var(--line);
    border-radius:var(--radius);
    color:var(--cyan);
    transition:transform var(--transition), color var(--transition), background var(--transition);
}

.faq-item.open{
    border-color:var(--line-strong);
}

.faq-item.open .faq-icon{
    background:rgba(69,217,255,.1);
    color:var(--white);
    transform:rotate(45deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    padding:0 22px;
    transition:max-height 420ms ease, padding 320ms ease;
}

.faq-answer.expanded{
    max-height:340px;
    padding:0 22px 22px;
}

.faq-answer p{
    padding-top:16px;
    border-top:1px solid rgba(255,255,255,.08);
    color:var(--muted);
    font-size:15px;
    line-height:1.85;
}

.faq-cta{
    position:relative;
    z-index:1;
    max-width:680px;
    margin:54px auto 0;
    padding:34px;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:linear-gradient(135deg, rgba(69,217,255,.12), rgba(109,240,181,.08));
    text-align:center;
}

.faq-cta p{
    margin-bottom:18px;
    color:var(--muted-strong);
    font-size:17px;
}

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

.contact-wrapper{
    display:grid;
    grid-template-columns:.92fr 1.08fr;
    gap:clamp(34px,6vw,70px);
    align-items:start;
}

.contact-left{
    position:relative;
    z-index:1;
}

.contact-left > p{
    max-width:560px;
    color:var(--muted-strong);
    font-size:17px;
    line-height:1.8;
    margin-bottom:34px;
}

.contact-info-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-info-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    color:var(--muted);
}

.contact-info-icon{
    margin-bottom:0;
    min-width:54px;
}

.contact-info-item strong{
    display:block;
    margin-bottom:5px;
    color:var(--white);
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.contact-info-item span,
.contact-info-item a{
    color:var(--muted-strong);
    font-size:15px;
    line-height:1.55;
}

.contact-info-item a:hover{
    color:var(--cyan);
}

.contact-right{
    position:relative;
    z-index:1;
    padding:32px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.form-group{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.form-group label{
    color:var(--muted-strong);
    font-size:13px;
    font-weight:850;
}

.form-group input,
.form-group textarea{
    width:100%;
    border:1px solid rgba(255,255,255,.12);
    border-radius:var(--radius);
    background:rgba(3,8,18,.42);
    color:var(--white);
    outline:0;
    padding:14px 15px;
    transition:border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group textarea{
    min-height:132px;
    resize:vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:rgba(200,214,230,.48);
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:var(--cyan);
    background:rgba(3,8,18,.62);
    box-shadow:0 0 0 3px rgba(69,217,255,.11);
}

.contact-submit-btn{
    width:100%;
    border:0;
    cursor:pointer;
}

#form-feedback-alert{
    border-radius:var(--radius) !important;
}

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

.site-footer{
    padding:70px 8% 0;
    border-top:1px solid rgba(130,232,255,.16);
}

.footer-grid-container{
    display:grid;
    grid-template-columns:1.3fr repeat(3,1fr);
    gap:34px;
}

.footer-logo-row{
    display:flex;
    align-items:center;
    gap:13px;
    margin-bottom:18px;
}

.footer-logo-img{
    width:52px;
    height:52px;
    object-fit:contain;
    border-radius:var(--radius);
    background:var(--white);
    padding:3px;
}

.footer-brand-name,
.footer-brand-sub{
    display:block;
    color:var(--white);
    font-weight:950;
    letter-spacing:1px;
}

.footer-brand-sub{
    color:var(--cyan);
    font-size:12px;
}

.footer-mission-statement{
    max-width:310px;
    color:var(--muted);
    font-size:14px;
    line-height:1.8;
}

.footer-social-row,
.footer-badge-row{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:18px;
}

.social-bubble{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:rgba(255,255,255,.045);
    color:var(--muted-strong);
    transition:transform var(--transition), color var(--transition), border-color var(--transition), background var(--transition);
}

.social-bubble:hover{
    color:var(--white);
    border-color:var(--line-strong);
    background:rgba(69,217,255,.1);
    transform:translateY(-3px);
}

.footer-links-column h4{
    margin-bottom:16px;
    color:var(--white);
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.footer-links-list{
    display:flex;
    flex-direction:column;
    gap:11px;
    list-style:none;
}

.footer-links-list li,
.footer-links-list a{
    color:var(--muted);
    font-size:14px;
    line-height:1.55;
    transition:color var(--transition), transform var(--transition);
}

.footer-links-list a:hover{
    color:var(--cyan);
    transform:translateX(2px);
}

.footer-badge{
    padding:7px 9px;
    border:1px solid rgba(109,240,181,.22);
    border-radius:var(--radius);
    background:rgba(109,240,181,.075);
    color:var(--mint);
    font-size:12px;
    font-weight:800;
}

.footer-bottom-ribbon{
    margin-top:54px;
    padding:20px 0;
    border-top:1px solid rgba(255,255,255,.08);
    color:var(--muted);
    font-size:13px;
}

.ribbon-flex-container{
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

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

.service-card-clickable{
    cursor:pointer;
    position:relative;
}

.service-card-clickable:hover{
    transform:translateY(-8px);
    border-color:var(--cyan);
    box-shadow:0 24px 70px rgba(69,217,255,.2);
    background:linear-gradient(180deg, rgba(69,217,255,.09), rgba(255,255,255,.035));
}

.service-card-arrow{
    position:absolute;
    bottom:20px;
    right:22px;
    width:32px;
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid var(--line);
    border-radius:var(--radius);
    color:var(--cyan);
    font-size:16px;
    opacity:0;
    transition:opacity var(--transition), transform var(--transition), background var(--transition);
}

.service-card-clickable:hover .service-card-arrow{
    opacity:1;
    transform:translateX(3px);
    background:rgba(69,217,255,.1);
}

/* =====================================
   SERVICE DETAIL MODALS
===================================== */

.service-modal{
    display:none;
    position:fixed;
    inset:0;
    z-index:10001;
    align-items:flex-start;
    justify-content:flex-end;
}

.service-modal.is-open{
    display:flex;
}

.service-modal-overlay{
    position:absolute;
    inset:0;
    background:rgba(2,6,14,.78);
    backdrop-filter:blur(6px);
    cursor:pointer;
}

.service-modal-panel{
    position:relative;
    z-index:1;
    width:min(780px,100%);
    height:100vh;
    overflow-y:auto;
    background:linear-gradient(160deg, #081424 0%, #050d1a 55%, #0c1727 100%);
    border-left:1px solid var(--line-strong);
    box-shadow:-32px 0 100px rgba(0,0,0,.6);
    animation:slideInPanel 340ms cubic-bezier(.22,1,.36,1) both;
}

@keyframes slideInPanel{
    from{ transform:translateX(60px); opacity:0; }
    to{ transform:translateX(0); opacity:1; }
}

.service-modal-close{
    position:sticky;
    top:20px;
    float:right;
    margin:20px 20px 0 0;
    width:40px;
    height:40px;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:rgba(3,8,18,.7);
    color:var(--white);
    font-size:22px;
    line-height:1;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background var(--transition), border-color var(--transition);
    z-index:10;
}

.service-modal-close:hover{
    background:rgba(69,217,255,.12);
    border-color:var(--line-strong);
}

/* Hero Section */
.smp-hero{
    padding:40px 40px 32px;
    background:linear-gradient(135deg, rgba(69,217,255,.07), rgba(109,240,181,.04));
    border-bottom:1px solid var(--line);
    clear:both;
}

.smp-hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:7px 12px;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:rgba(69,217,255,.08);
    color:var(--cyan);
    font-size:11px;
    font-weight:900;
    letter-spacing:1.6px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.smp-badge-dot{
    display:inline-block;
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--mint);
    box-shadow:0 0 12px var(--mint);
}

.smp-hero h2{
    color:var(--white);
    font-size:clamp(24px,3.5vw,34px);
    font-weight:950;
    line-height:1.12;
    margin-bottom:14px;
}

.smp-hero-sub{
    color:var(--muted-strong);
    font-size:16px;
    line-height:1.8;
    max-width:640px;
    margin-bottom:28px;
}

.smp-hero-stats{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.smp-stat{
    padding:14px 18px;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:rgba(255,255,255,.04);
    min-width:130px;
}

.smp-stat strong{
    display:block;
    color:var(--white);
    font-size:20px;
    font-weight:900;
    line-height:1;
}

.smp-stat span{
    display:block;
    margin-top:6px;
    color:var(--muted);
    font-size:11px;
    letter-spacing:.8px;
    text-transform:uppercase;
}

/* Body */
.smp-body{
    padding:0 40px 40px;
}

.smp-image-block{
    position:relative;
    margin:32px 0;
    border:1px solid var(--line);
    border-radius:var(--radius);
    overflow:hidden;
}

.smp-image-block img{
    width:100%;
    height:260px;
    object-fit:cover;
    object-position:center;
    display:block;
    filter:brightness(.9) saturate(1.1);
}

.smp-img-overlay{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:10px 16px;
    background:linear-gradient(transparent, rgba(3,8,18,.88));
    color:var(--cyan);
    font-size:11px;
    font-weight:900;
    letter-spacing:1.4px;
    text-transform:uppercase;
}

.smp-section{
    margin-bottom:32px;
}

.smp-section h3,
.smp-workflow h3{
    color:var(--white);
    font-size:18px;
    font-weight:900;
    margin-bottom:12px;
    padding-bottom:10px;
    border-bottom:1px solid var(--line);
}

.smp-section p{
    color:var(--muted-strong);
    font-size:15px;
    line-height:1.85;
}

/* Features Grid */
.smp-features-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:32px;
}

.smp-feature-card{
    padding:20px;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
    transition:border-color var(--transition), background var(--transition);
}

.smp-feature-card:hover{
    border-color:var(--line-strong);
    background:linear-gradient(180deg, rgba(69,217,255,.07), rgba(255,255,255,.02));
}

.smp-feat-icon{
    font-size:24px;
    margin-bottom:10px;
}

.smp-feature-card h4{
    color:var(--white);
    font-size:14px;
    font-weight:850;
    margin-bottom:7px;
    line-height:1.3;
}

.smp-feature-card p{
    color:var(--muted);
    font-size:13px;
    line-height:1.7;
}

/* Workflow Steps */
.smp-workflow{
    margin-bottom:32px;
}

.smp-steps{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    margin-top:18px;
}

.smp-step{
    display:flex;
    align-items:flex-start;
    gap:10px;
    padding:14px 16px;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:rgba(255,255,255,.04);
    flex:1;
    min-width:110px;
}

.smp-step-num{
    display:flex;
    align-items:center;
    justify-content:center;
    width:26px;
    min-width:26px;
    height:26px;
    border-radius:50%;
    background:rgba(69,217,255,.14);
    border:1px solid rgba(69,217,255,.3);
    color:var(--cyan);
    font-size:12px;
    font-weight:900;
}

.smp-step h4{
    color:var(--white);
    font-size:12px;
    font-weight:850;
    margin-bottom:3px;
}

.smp-step p{
    color:var(--muted);
    font-size:11px;
    line-height:1.45;
}

.smp-step-arrow{
    color:var(--line-strong);
    font-size:18px;
    flex-shrink:0;
}

/* CTA Strip */
.smp-cta-strip{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
    padding:24px 26px;
    border:1px solid rgba(69,217,255,.22);
    border-radius:var(--radius);
    background:linear-gradient(135deg, rgba(69,217,255,.09), rgba(109,240,181,.05));
    margin-top:8px;
}

.smp-cta-strip p{
    color:var(--muted-strong);
    font-size:15px;
    font-weight:700;
}

/* Body scroll lock when modal is open */
body.modal-open{
    overflow:hidden;
}

@media(max-width:680px){
    .smp-hero,
    .smp-body{
        padding-left:22px;
        padding-right:22px;
    }

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

    .smp-steps{
        flex-direction:column;
        align-items:stretch;
    }

    .smp-step-arrow{
        transform:rotate(90deg);
        align-self:center;
    }

    .smp-cta-strip{
        flex-direction:column;
        text-align:center;
    }

    .smp-hero-stats{
        gap:8px;
    }

    .smp-stat{
        min-width:unset;
        flex:1;
    }
}

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

.modal{
    display:none;
    position:fixed;
    inset:0;
    z-index:10000;
    padding:64px 5vw;
    background:rgba(2,6,12,.94);
    backdrop-filter:blur(14px);
}

.modal img{
    width:min(1180px,100%);
    max-height:84vh;
    margin:auto;
    object-fit:contain;
    border:1px solid var(--line);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.close-btn{
    position:absolute;
    top:18px;
    right:30px;
    color:var(--white);
    font-size:44px;
    line-height:1;
    cursor:pointer;
}

/* =====================================
   ANIMATION STATES
===================================== */

.reveal-ready{
    opacity:0;
    transform:translateY(34px) scale(.985);
}

.show{
    opacity:1;
    transform:translateY(0) scale(1);
    transition:opacity 760ms ease, transform 760ms ease;
}

@keyframes signalSweep{
    0%{ opacity:.52; transform:translateX(-1.5%); }
    100%{ opacity:.88; transform:translateX(1.5%); }
}

@keyframes floorGrid{
    0%{ background-position:0 0,0 0; }
    100%{ background-position:0 140px,140px 0; }
}

@keyframes panelHover{
    0%,100%{ translate:0 0; }
    50%{ translate:0 -10px; }
}

@keyframes scanline{
    0%{ transform:translateY(-95px); opacity:0; }
    12%{ opacity:.65; }
    88%{ opacity:.65; }
    100%{ transform:translateY(430px); opacity:0; }
}

@keyframes floatPanel{
    0%,100%{ translate:0 0; }
    50%{ translate:0 -12px; }
}

@keyframes rotateCube{
    0%{ transform:rotateX(-18deg) rotateY(0deg); }
    100%{ transform:rotateX(-18deg) rotateY(360deg); }
}

@keyframes pulseDot{
    0%,100%{ opacity:1; transform:scale(1); }
    50%{ opacity:.45; transform:scale(.72); }
}

@keyframes dashboardSwitch{
    0%{ opacity:.68; transform:perspective(1200px) rotateX(1deg) translateY(8px); }
    100%{ opacity:1; transform:perspective(1200px) rotateX(1deg) translateY(0); }
}

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

@media(max-width:1180px){
    .hero{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-left p,
    .hero-left h1,
    .hero-metrics{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-right{
        min-height:500px;
        width:min(760px,100%);
        margin-inline:auto;
    }

    .challenge-grid,
    .about-features,
    .about-stats{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .pricing-card.featured{
        transform:none;
    }

    .pricing-card.featured:hover{
        transform:translateY(-8px);
    }
}

@media(max-width:992px){
    body{
        padding-top:132px;
    }

    html{
        scroll-padding-top:136px;
    }

    .navbar{
        flex-direction:column;
        align-items:flex-start;
        padding:12px 6%;
    }

    .nav-links{
        width:100%;
        justify-content:flex-start;
        overflow-x:auto;
        padding-bottom:2px;
    }

    section{
        padding-left:6%;
        padding-right:6%;
    }

    .about-container,
    .contact-wrapper,
    .product-explorer{
        grid-template-columns:1fr;
    }

    .product-menu{
        position:static;
        flex-direction:row;
        overflow-x:auto;
    }

    .product-tab{
        min-width:178px;
    }

    .services-grid,
    .why-grid,
    .industry-grid,
    .pricing-grid,
    .faq-container,
    .footer-grid-container{
        grid-template-columns:1fr 1fr;
    }

    .services-grid .service-card:nth-child(n),
    .industry-grid .industry-card:nth-child(n){
        grid-column: auto;
    }

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

@media(max-width:680px){
    body{
        padding-top:142px;
    }

    section{
        padding-top:32px;
        padding-bottom:68px;
    }

    .logo-section img{
        width:48px;
        height:48px;
    }

    .company-text h2{
        font-size:18px;
    }

    .company-text span{
        font-size:10px;
    }

    .hero{
        min-height:auto;
    }

    .hero-left h1{
        font-size:clamp(34px,12vw,48px);
    }

    .hero-left p{
        font-size:16px;
    }

    .hero-metrics,
    .challenge-grid,
    .services-grid,
    .why-grid,
    .industry-grid,
    .pricing-grid,
    .about-features,
    .about-stats,
    .faq-container,
    .footer-grid-container,
    .form-row{
        grid-template-columns:1fr;
    }

    .services-grid .service-card:nth-child(n),
    .industry-grid .industry-card:nth-child(n){
        grid-column: auto;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
    }

    .hero-right{
        min-height:410px;
    }

    .dashboard-holo-shell{
        transform:rotateX(4deg) rotateY(-5deg);
    }

    #sliderImage{
        min-height:260px;
        height:300px;
    }

    .hero-float-card{
        min-width:138px;
        padding:12px;
    }

    .float-card-top{
        left:0;
        top:28px;
    }

    .float-card-bottom{
        right:0;
        bottom:50px;
    }

    .hero-data-cube{
        display:none;
    }

    .pd-topbar{
        flex-direction:column;
    }

    .pd-status-badge{
        white-space:normal;
    }

    .pd-screenshot-wrapper img{
        height:280px;
    }

    .pricing-card{
        min-height:auto;
    }

    .contact-right,
    .pricing-card,
    .faq-cta{
        padding:24px;
    }
}

@media(prefers-reduced-motion:reduce){
    *,
    *::before,
    *::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        scroll-behavior:auto !important;
        transition-duration:.01ms !important;
    }
}

/* =====================================
   TECHNEXA SECTION — matches Pinnacle theme
===================================== */

/* --- SECTION 1: Technexa Brand Intro --- */

.technexa-brand-section {

padding: clamp(20px, 3vw, 40px) 8%;
    position: relative;
    overflow: hidden;
}

.technexa-brand-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 0%, rgba(69,217,255,.055) 50%, transparent 100%);
    opacity: .6;
}

.technexa-brand-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(69,217,255,.35) 30%, rgba(109,240,181,.35) 70%, transparent 100%);
    pointer-events: none;
}

.technexa-brand-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

/* Left: text block */
.technexa-brand-left {}

.technexa-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(69,217,255,.08);
    color: var(--cyan);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.technexa-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 15px var(--mint);
}

.technexa-brand-left h2 {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 900;
    line-height: 1.04;
    color: var(--text);
    margin-bottom: 8px;
}

.technexa-brand-left h2 span.tx-highlight {
    background: linear-gradient(90deg, var(--cyan), var(--mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.technexa-tagline {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.technexa-divider {
    width: 80px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--mint), transparent);
    box-shadow: 0 0 20px rgba(69,217,255,.45);
    margin-bottom: 26px;
}

.technexa-brand-left p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 520px;
}

.technexa-stats-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.tx-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tx-stat strong {
    font-size: 28px;
    font-weight: 900;
    color: var(--cyan);
    line-height: 1;
}

.tx-stat span {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right: visual panel */
.technexa-brand-right {
    position: relative;
}

.tx-brand-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tx-brand-panel::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(69,217,255,.12) 0%, transparent 70%);
    pointer-events: none;
}

.tx-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.tx-panel-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.tx-live-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px;
    background: rgba(109,240,181,.1);
    border: 1px solid rgba(109,240,181,.25);
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    color: var(--mint);
    letter-spacing: 1px;
}

.tx-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 8px var(--mint);
    animation: txPulse 1.8s ease-in-out infinite;
}

@keyframes txPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(0.7); }
}

.tx-capability-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tx-capability-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(130,232,255,.1);
    border-radius: 10px;
    font-size: 14px;
    color: var(--muted-strong);
    font-weight: 500;
    transition: var(--transition);
}

.tx-capability-list li:hover {
    border-color: var(--line-strong);
    background: rgba(69,217,255,.06);
    color: var(--text);
    transform: translateX(4px);
}

.tx-cap-icon {
    font-size: 18px;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}

/* ==========================================
   SECTION 2: Technexa ERP Module Cards
========================================== */

.technexa-modules-section {
    padding: clamp(76px, 9vw, 118px) 8%;
    position: relative;
    overflow: hidden;
}

.technexa-modules-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 0%, rgba(69,217,255,.04) 50%, transparent 100%);
}

.technexa-modules-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(69,217,255,.35) 30%, rgba(109,240,181,.35) 70%, transparent 100%);
    pointer-events: none;
}

.tx-modules-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.tx-modules-header h2 {
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 900;
    color: var(--text);
    margin: 16px 0 14px;
}

.tx-modules-header p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

/* Module cards grid */
.tx-modules-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
}

.tx-module-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px 28px 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: border-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
    cursor: default;
}

.tx-module-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--mint), transparent);
    opacity: 0;
    transition: opacity 300ms ease;
}

.tx-module-card:hover {
    border-color: rgba(69,217,255,.4);
    transform: translateY(-5px);
    box-shadow: 0 28px 72px rgba(0,0,0,.35), 0 0 40px rgba(69,217,255,.06);
}

.tx-module-card:hover::before {
    opacity: 1;
}

/* Card top row */
.tx-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
}

.tx-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(69,217,255,.1);
    border: 1px solid rgba(69,217,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.tx-card-env {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    text-align: right;
    line-height: 1.4;
    max-width: 140px;
}

/* Card name */
.tx-card-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.1;
}

/* Card description */
.tx-card-desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Key modules chips */
.tx-modules-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 24px;
}

.tx-chip {
    padding: 5px 11px;
    background: rgba(69,217,255,.07);
    border: 1px solid rgba(69,217,255,.15);
    border-radius: 99px;
    font-size: 11px;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Divider */
.tx-card-divider {
    width: 100%;
    height: 1px;
    background: var(--line);
    margin-bottom: 20px;
    flex-shrink: 0;
}

/* Target market label */
.tx-target-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.tx-target-text {
    font-size: 12.5px;
    color: var(--muted-strong);
    line-height: 1.6;
    margin-bottom: 22px;
}

/* CTA Button */
.tx-explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 280ms ease, border-color 280ms ease, color 280ms ease, transform 200ms ease;
    margin-top: auto;
    flex-shrink: 0;
}

.tx-explore-btn:hover {
    background: rgba(69,217,255,.12);
    border-color: var(--cyan);
    color: var(--text);
    transform: translateY(-1px);
}

.tx-explore-btn .btn-arrow {
    transition: transform 220ms ease;
}

.tx-explore-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1080px) {
    .tx-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .technexa-brand-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .technexa-brand-right {
        display: none;
    }
    .tx-modules-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================
   NAV DROPDOWN
===================================== */

.nav-dropdown {
    position: relative;
    list-style: none;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    color: var(--muted-strong);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
    text-decoration: none;
}

.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger {
    color: var(--white);
    border-color: var(--line);
    background: rgba(69,217,255,.09);
}

.dropdown-chevron {
    transition: transform 280ms ease;
    flex-shrink: 0;
}

.nav-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 280px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 8px;
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    z-index: 9999;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 200ms ease;
}

.nav-dropdown-item:hover {
    background: rgba(69,217,255,.08);
}

.dd-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(69,217,255,.08);
    border: 1px solid rgba(69,217,255,.15);
    border-radius: 8px;
}

.dd-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dd-text strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.dd-text small {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

.dd-divider {
    height: 1px;
    background: var(--line);
    margin: 4px 0;
}