/* ===== style.css ===== */
body{margin:0;font-family:Arial, sans-serif;background:#0f172a;color:#fff;}
a{color:#38bdf8;text-decoration:none;}
.container{max-width:1200px;margin:auto;padding:20px;}
.btn{background:#2563eb;color:#fff;padding:12px 20px;border-radius:5px;display:inline-block;}


























/* --- HERO VARIABLES --- */
:root {
    --h-bg: #0b1120;
    --h-accent: #38bdf8; /* Sky Blue */
    --h-purple: #818cf8; /* Soft Indigo */
    --h-text: #e2e8f0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* --- HERO SECTION LAYOUT --- */
.hero-section {
    position: relative;
    background-color: var(--h-bg);
    min-height: 100vh; /* Full viewport */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 20px 60px; /* Top padding for fixed header */
}

/* Animated Background Blobs */
.hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
    animation: moveBlob 10s infinite alternate;
}
.glow-1 { top: -100px; left: -100px; background: var(--h-accent); }
.glow-2 { bottom: -100px; right: -100px; background: var(--h-purple); animation-delay: -5s; }

@keyframes moveBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    position: relative;
    z-index: 1;
    align-items: center;
}

/* --- LEFT CONTENT --- */
.hero-content {
    animation: fadeUp 0.8s ease-out;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 30px;
    color: var(--h-accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}
.pulse-dot {
    width: 8px; height: 8px; background: var(--h-accent);
    border-radius: 50%; box-shadow: 0 0 10px var(--h-accent);
    animation: pulse 2s infinite;
}

/* Typography */
.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
}

.text-gradient {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--h-text);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 90%;
    opacity: 0.9;
}
.highlight { color: #fff; border-bottom: 1px dashed var(--h-accent); }

/* Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-primary-glow {
    background: linear-gradient(135deg, var(--h-accent), #2563eb);
    color: #fff;
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
    transition: 0.3s;
    display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary-glow:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(56, 189, 248, 0.5); }

.btn-secondary-outline {
    background: transparent;
    color: #fff;
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
}
.btn-secondary-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

/* Trust Strip */
.hero-trust {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 25px;
    color: #94a3b8;
    font-size: 0.9rem;
}
.trust-icons {
    display: flex; gap: 15px; margin-top: 10px;
}
.trust-pill {
    background: rgba(255,255,255,0.03);
    padding: 5px 12px; border-radius: 4px;
    font-size: 0.85rem; letter-spacing: 0.5px;
}

/* --- RIGHT VISUAL (GLASS STACK) --- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.glass-stack-container {
    position: relative;
    width: 400px;
    height: 500px;
}

/* Glass Card Common Style */
.glass-card {
    background: rgba(17, 25, 40, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    position: absolute;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: 0.3s;
}

/* Card 1: Top Left (Floating) */
.card-1 {
    top: 0; left: 0;
    width: 180px;
    display: flex; align-items: center; gap: 15px;
    animation: float 6s ease-in-out infinite;
}
.card-icon { font-size: 1.5rem; background: rgba(255,255,255,0.05); padding: 10px; border-radius: 8px; }
.card-stat { font-weight: 700; color: #4ade80; margin-left: auto; }

/* Card 2: Center Main (The Engine) */
.card-2 {
    top: 100px; left: 40px; right: -20px;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border: 1px solid var(--h-accent);
    z-index: 2;
    padding: 25px;
}
.card-header { display: flex; gap: 6px; margin-bottom: 20px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.red { background: #ef4444; } .yellow { background: #eab308; } .green { background: #22c55e; }

.progress-bar {
    width: 100%; height: 6px; background: rgba(255,255,255,0.1);
    border-radius: 10px; margin: 15px 0; overflow: hidden;
}
.fill { width: 75%; height: 100%; background: var(--h-accent); }
.mini-row { display: flex; justify-content: space-between; font-size: 0.9rem; margin-top: 10px; color: #cbd5e1; }

/* Card 3: Bottom Right */
.card-3 {
    bottom: 20px; right: 0;
    width: 200px;
    display: flex; align-items: center; gap: 15px;
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}
.check-badge { 
    background: var(--h-accent); color: #000; width: 25px; height: 25px; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-left: auto;
}

/* --- ANIMATIONS --- */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(56, 189, 248, 0); } 100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-trust { display: flex; flex-direction: column; align-items: center; }
    .hero-visual { display: none; } /* Hide complex visual on mobile or simplify it */
    .hero-title { font-size: 3rem; }
}













/* --- TRUST SECTION VARIABLES --- */
:root {
    --t-bg: #0b1120;       /* Dark Navy */
    --t-card: #1e293b;     /* Slate */
    --t-border: rgba(255, 255, 255, 0.05);
    --t-accent: #38bdf8;   /* Neon Cyan */
    --t-text: #94a3b8;     /* Muted Text */
}

/* --- SECTION LAYOUT --- */
.trust-section {
    background-color: var(--t-bg);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* Background Texture (Optional subtle grid) */
.trust-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- HEADER --- */
.trust-header {
    text-align: center;
    margin-bottom: 70px;
}

.trust-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.trust-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--t-text);
}

/* Gradient Text Effect */
.text-gradient {
    background: linear-gradient(to right, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- GRID LAYOUT --- */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center; /* Vertically center items */
}

/* --- CARD STYLES --- */
.trust-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid var(--t-border);
    padding: 40px 30px;
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.trust-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.3);
}

.card-icon-top {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.trust-card h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Dimmed Card (What we don't do) */
.trust-card.dimmed {
    opacity: 0.7;
    border: 1px dashed var(--t-border);
}
.trust-card.dimmed h4 { color: var(--t-text); }

/* Highlight Card (Center Focus) */
.trust-card.highlight-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
    border: 1px solid var(--t-accent);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.15);
    transform: scale(1.05); /* Make it pop slightly */
    z-index: 2;
}

/* --- LIST STYLES --- */
.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-list li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Negative List Icons */
.trust-list.negative li { color: var(--t-text); text-decoration: line-through; }
.trust-list.negative li::before { content: '•'; color: #ef4444; font-size: 1.5rem; line-height: 0; }

/* Positive List Icons */
.trust-list.positive li { color: #fff; font-weight: 600; }
.trust-list.positive li::before { 
    content: '✓'; 
    color: #10b981; /* Green check */
    font-weight: bold;
    background: rgba(16, 185, 129, 0.1);
    width: 24px; height: 24px;
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

/* Description Text */
.trust-desc {
    color: var(--t-text);
    line-height: 1.6;
    font-size: 1.1rem;
}
.trust-desc strong { color: #fff; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .trust-grid { grid-template-columns: 1fr; gap: 40px; }
    .trust-card.highlight-card { transform: scale(1); box-shadow: none; border-color: var(--t-accent); }
    .trust-header { margin-bottom: 50px; }
}

















/* --- ABOUT SECTION VARIABLES --- */
:root {
    --a-bg: #0b1120;       /* Dark Navy */
    --a-glass: rgba(30, 41, 59, 0.4);
    --a-border: rgba(255, 255, 255, 0.08);
    --a-accent: #f472b6;   /* Pink/Purple Accent */
    --a-blue: #38bdf8;     /* Cyan Accent */
}

/* --- SECTION LAYOUT --- */
.about-section {
    position: relative;
    background-color: var(--a-bg);
    padding: 120px 20px;
    overflow: hidden;
}

/* Subtle Background Light */
.about-glow {
    position: absolute;
    right: 0; top: 20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* --- LEFT CONTENT --- */
.section-tag {
    color: var(--a-blue);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.about-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 30px;
}

.about-desc {
    color: #94a3b8;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.highlight-text {
    color: #fff;
    border-bottom: 1px solid var(--a-blue);
}

/* Mission Box */
.mission-box {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.3), rgba(15, 23, 42, 0.6));
    border-left: 4px solid var(--a-accent);
    padding: 25px;
    border-radius: 0 12px 12px 0;
    margin: 40px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.mission-icon { font-size: 2rem; }

.mission-label {
    color: var(--a-accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 700;
}

.mission-statement {
    color: #fff;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
}

/* Button */
.btn-arrow {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.btn-arrow .arrow { transition: 0.3s; color: var(--a-blue); }
.btn-arrow:hover .arrow { transform: translateX(5px); }

/* --- RIGHT VISUAL (SERVICE MATRIX) --- */
.about-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

/* Common Card Style */
.matrix-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid var(--a-border);
    padding: 25px;
    border-radius: 16px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.matrix-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255,255,255,0.2);
}

.matrix-icon { font-size: 2rem; margin-bottom: 15px; }
.matrix-card h5 { color: #fff; font-size: 1.1rem; margin-bottom: 5px; }
.matrix-card span { color: #94a3b8; font-size: 0.9rem; }

/* Positioning Specific Cards for "Floating" Look */
.glass-1 { transform: translateY(20px); }
.glass-2 { transform: translateY(-20px); }
.glass-3 { transform: translateY(-10px); }

/* Main Center Card (Automation) */
.glass-main {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(30, 41, 59, 0.6));
    border: 1px solid rgba(56, 189, 248, 0.3);
    text-align: center;
    align-items: center;
    padding: 35px;
}
.glass-main p { color: var(--a-blue); font-size: 0.95rem; margin: 0; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .about-container { grid-template-columns: 1fr; text-align: center; }
    .mission-box { text-align: left; }
    .service-matrix { max-width: 500px; margin: 0 auto; }
    .glass-1, .glass-2, .glass-3 { transform: none; }
}















/* --- SERVICES SECTION VARIABLES --- */
:root {
    --s-bg: #0b1120;       /* Dark Navy */
    --s-card-bg: rgba(30, 41, 59, 0.4);
    --s-border: rgba(255, 255, 255, 0.08);
    --s-accent: #38bdf8;   /* Cyan */
    --s-purple: #a855f7;   /* Purple */
    --s-text: #94a3b8;     /* Gray */
}

/* --- SECTION LAYOUT --- */
.services-section {
    position: relative;
    background-color: var(--s-bg);
    padding: 120px 20px;
    overflow: hidden;
}

/* Background Glows */
.svc-glow {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.glow-left { top: -10%; left: -10%; }
.glow-right { bottom: -10%; right: -10%; background: radial-gradient(circle, rgba(168, 85, 247, 0.05) 0%, transparent 70%); }

.svc-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- HEADER --- */
.svc-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.svc-tag {
    color: var(--s-accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 30px;
}

.svc-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.svc-subtitle {
    color: var(--s-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* --- GRID LAYOUT --- */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* --- CARD STYLES --- */
.svc-card {
    background: var(--s-card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--s-border);
    padding: 40px 30px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.svc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Icon Box */
.svc-icon-box {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid var(--s-border);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: 0.3s;
}

.svc-card:hover .svc-icon-box {
    background: linear-gradient(135deg, var(--s-accent), var(--s-purple));
    color: #fff;
    border-color: transparent;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
}

/* Content */
.svc-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.svc-card-desc {
    font-size: 1rem;
    color: var(--s-text);
    line-height: 1.7;
    flex-grow: 1; /* Pushes content to fill height */
}

.svc-card-desc strong { color: #fff; }

/* Animated Bottom Border */
.svc-border {
    position: absolute;
    bottom: 0; left: 0;
    width: 0%; height: 3px;
    background: linear-gradient(to right, var(--s-accent), var(--s-purple));
    transition: width 0.4s ease;
}

.svc-card:hover .svc-border { width: 100%; }

/* --- FOOTER CTA --- */
.svc-footer {
    text-align: center;
    margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
    .svc-grid { grid-template-columns: 1fr; }
    .svc-header { margin-bottom: 50px; }
}







:root {
    --primary: #0ea5e9;    /* Electric Blue */
    --secondary: #d946ef;  /* Neon Pink/Purple */
    --glass: rgba(15, 23, 42, 0.8);
    --border: rgba(255, 255, 255, 0.1);
}

.svc-section {
    background: radial-gradient(circle at 50% 50%, #0f172a 0%, #020617 100%);
    padding: 120px 5%;
    overflow: hidden;
}

/* The Bento Grid Magic */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.svc-module {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(15px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Card Variations for "Cool" Layout */
.svc-module.large { grid-column: span 2; grid-row: span 2; }
.svc-module.wide { grid-column: span 2; }

/* Hover Effects: The "Power On" Glow */
.svc-module:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.15), inset 0 0 15px rgba(14, 165, 233, 0.05);
}

.svc-module::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
    filter: blur(40px);
    border-radius: 30px;
}

.svc-module:hover::before { opacity: 0.2; }

/* Icon Styling */
.svc-icon-wrap {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.svc-module:hover .svc-icon-wrap {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px var(--primary);
}

.svc-title { color: #fff; font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.5px; }
.svc-text { color: #94a3b8; line-height: 1.6; font-size: 1rem; }

/* Mobile Optimization */
@media (max-width: 1024px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-module.large, .svc-module.wide { grid-column: span 2; }
}
@media (max-width: 640px) {
    .svc-grid { grid-template-columns: 1fr; }
    .svc-module.large, .svc-module.wide { grid-column: span 1; }
}










:root {
    --p-blue: #38bdf8;
    --p-purple: #818cf8;
    --dark-inner: #0f172a;
}

.why-section {
    background: #020617;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* Background "Radar" Effect */
.why-section::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.why-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Right Side: The Grid of Reasons */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 20px;
    border-radius: 20px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-item:hover {
    background: rgba(56, 189, 248, 0.05);
    border-color: var(--p-blue);
    transform: translateX(5px);
}

.why-item i {
    color: var(--p-blue);
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: block;
}

.why-item h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Left Side: The "Power Core" */
.why-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.why-content span.highlight {
    background: linear-gradient(to right, var(--p-blue), var(--p-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-stat-box {
    margin-top: 40px;
    padding: 20px;
    border-left: 3px solid var(--p-blue);
    background: linear-gradient(to right, rgba(56, 189, 248, 0.1), transparent);
}

.why-stat-box p {
    color: #94a3b8;
    margin: 0;
    font-style: italic;
}

@media (max-width: 992px) {
    .why-container { grid-template-columns: 1fr; text-align: center; }
    .why-stat-box { border-left: none; border-top: 3px solid var(--p-blue); }
}
























:root {
    --p-accent: #06b6d4;
    --p-dark: #020617;
    --p-card: rgba(15, 23, 42, 0.6);
}

.process-section {
    background-color: var(--p-dark);
    padding: 50px 5%;
    position: relative;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* The Connecting Line */
.process-container::before {
    content: "";
    position: absolute;
    left: 31px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent, 
        var(--p-accent) 15%, 
        var(--p-accent) 85%, 
        transparent);
    opacity: 0.3;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    transition: 0.4s ease;
}

/* The Glowing Number Circle */
.step-number {
    width: 64px;
    height: 64px;
    background: var(--p-dark);
    border: 2px solid var(--p-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--p-accent);
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
    font-size: 1.2rem;
}

.process-step:hover .step-number {
    background: var(--p-accent);
    color: #000;
    box-shadow: 0 0 25px var(--p-accent);
    transform: scale(1.1);
}

/* The Content Box */
.step-content {
    background: var(--p-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    flex-grow: 1;
    transition: 0.3s;
}

.process-step:hover .step-content {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateX(10px);
}

.step-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 1rem;
}

/* Mobile Tweak */
@media (max-width: 600px) {
    .process-container::before { left: 21px; }
    .step-number { width: 44px; height: 44px; font-size: 1rem; }
    .process-step { gap: 20px; }
}











:root {
    --neon-blue: #00f2ff;
    --neon-purple: #7000ff;
    --deep-bg: #030303;
    --glass-panel: rgba(20, 20, 20, 0.7);
}

.results-unique-section {
    background-color: var(--deep-bg);
    padding: 50px 5%;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Background floating orb for depth */
.results-unique-section::after {
    content: "";
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.15), transparent 70%);
    top: 10%; right: 5%;
    filter: blur(80px);
}

.center-display {
    max-width: 1100px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--glass-panel);
    border-radius: 40px;
    backdrop-filter: blur(25px);
    padding: 80px 40px;
    position: relative;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

/* The "Glow Line" at the top */
.top-glare {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 40%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}

.unique-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    color: #fff;
    margin-bottom: 20px;
}

.unique-subtitle {
    color: #888;
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Grid of results - non-traditional layout */
.results-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.result-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 30px;
    border-radius: 100px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.result-chip:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* The "Main Result" Highlight */
.growth-focus {
    margin-top: 50px;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.05) 0%, rgba(112, 0, 255, 0.05) 100%);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.growth-focus h3 {
    color: var(--neon-blue);
    font-size: 2rem;
    margin-bottom: 10px;
}









:root {
    --audit-accent: #22c55e; /* Success Green */
    --audit-bg: #050505;
    --audit-glass: rgba(255, 255, 255, 0.02);
}

.audit-section {
    background: var(--audit-bg);
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    position: relative;
}

.audit-terminal {
    max-width: 1000px;
    width: 100%;
    background: var(--audit-glass);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 40px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

/* Glowing Pulse Effect */
.audit-terminal::before {
    content: "";
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
background: linear-gradient(
  135deg,
  #020617,
  rgba(56, 189, 248, 0.35),
  transparent
);

    z-index: -1;
    border-radius: 42px;
    animation: borderGlow 4s linear infinite;
}

@keyframes borderGlow {
    0% { filter: blur(5px); opacity: 0.5; }
    50% { filter: blur(15px); opacity: 1; }
    100% { filter: blur(5px); opacity: 0.5; }
}

.audit-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.audit-title {
    font-size: 3rem;
    color: #fff;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.audit-list {
    list-style: none;
    padding: 0;
}

.audit-list li {
    color: #94a3b8;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.audit-list li::before {
    content: "→";
    color: var(--audit-accent);
    font-weight: bold;
}

/* Form Styling */
.audit-form-box {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.audit-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    color: #fff;
    margin-bottom: 20px;
    outline: none;
}

.audit-input:focus {
    border-color: var(--audit-accent);
    background: rgba(34, 197, 94, 0.05);
}

.audit-btn {
    width: 100%;
    background: #38BDF8;
    color: #000;
    padding: 18px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.audit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.6);
}

@media (max-width: 850px) {
    .audit-grid { grid-template-columns: 1fr; }
    .audit-terminal { padding: 40px 25px; }
}








:root {
    --s-bg: #0b1120;
    --s-accent: #38bdf8;
    --s-purple: #a855f7;
    --s-card: rgba(30, 41, 59, 0.4);
}

.unique-results {
    background-color: var(--s-bg);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.unique-results-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* --- THE HEADER (Asymmetrical) --- */
.unique-results-header {
    border-left: 4px solid var(--s-accent);
    padding-left: 30px;
    margin-bottom: 40px;
}

.unique-results-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
}

/* --- THE SHATTERED GRID --- */
.unique-shattered-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
}

.u-card {
    background: var(--s-card);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.u-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--s-accent);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Positioning cards uniquely */
.u-card-1 { grid-column: 1 / 8; } /* Large Card */
.u-card-2 { grid-column: 8 / 13; } /* Smaller Offset */
.u-card-3 { grid-column: 1 / 6; margin-top: -20px; } /* Overlapping */
.u-card-4 { grid-column: 6 / 13; }

/* The "Glow Number" Background */
.u-card-num {
    position: absolute;
    top: -20px; right: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    opacity: 0.03;
    pointer-events: none;
}

.u-card h3 {
    color: var(--s-accent);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.u-card p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 900px) {
    .unique-shattered-grid { display: flex; flex-direction: column; }
    .u-card { margin-top: 0 !important; }
}





:root {
    --s-bg: #0b1120;
    --s-accent: #38bdf8;
    --s-purple: #a855f7;
    --s-card: rgba(30, 41, 59, 0.6);
}

.final-cta-section {
    background-color: var(--s-bg);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

/* Central Spotlight Glow */
.final-cta-section::before {
    content: "";
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-box {
    max-width: 900px;
    width: 100%;
    background: var(--s-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

/* Subtle Animated Pulse on Border */
.cta-box::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 41px;
    background: linear-gradient(135deg, var(--s-accent), var(--s-purple), var(--s-accent));
    background-size: 200% 200%;
    z-index: -1;
    opacity: 0.3;
    animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1;
}

.cta-subtitle {
    color: #94a3b8;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Button Styling */
.cta-button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-main {
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-audit {
    background: var(--s-accent);
    color: #0b1120;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
}

.btn-audit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.5);
}

.btn-strategy {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-strategy:hover {
    border-color: var(--s-purple);
    background: rgba(168, 85, 247, 0.05);
    transform: translateY(-5px);
}

@media (max-width: 600px) {
    .cta-box { padding: 50px 20px; border-radius: 30px; }
    .btn-main { width: 100%; }
}


























