:root {
    --primary: #00f2ff;
    --primary-dark: #00c2cc;
    --accent: #008080;
    /* Changed from purple to Teal */
    --bg-dark: #0a0a0c;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --success: #00ff88;
    --error: #ff6b6b;
}

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

body {
    font-family: 'Merriweather', serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Heading Typography - Montserrat */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 50%, rgba(0, 128, 128, 0.15), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Matrix Rain Canvas */
#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Helpers */
.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Typewriter Animation */
.typewriter {
    display: inline;
    border-right: 3px solid var(--primary);
    animation: blink-cursor 0.75s step-end infinite;
}

@keyframes blink-cursor {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--primary);
    }
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-top: -2.5rem;
    margin-bottom: 3.5rem;
    max-width: 700px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

section {
    position: relative;
    overflow: hidden;
}

/* Header / Sidebar */
header {
    padding: 2rem 1rem;
    position: fixed;
    width: 115px;
    /* Narrower sidebar */
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: #050507;
    border-right: 1px solid var(--border);
    border-bottom: none;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 3rem;
    width: 100%;
    text-align: center;
    line-height: 1.1;
}

.logo span {
    color: var(--primary);
    display: block;
    /* Stack parts of logo if two words */
    -webkit-text-stroke: 0;
    font-weight: 700;
}

nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 2rem;
    /* More spacing between stacked items */
    align-items: center;
    width: 100%;
}

nav ul li {
    width: 100%;
}

/* Nav Tab Container Styling */
nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
    border: 1px solid var(--border);
    background: var(--card-bg);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

nav a i {
    width: 1.5rem;
    /* Larger icon relative to text */
    height: 1.5rem;
    stroke-width: 2px;
    margin-bottom: 0px;
}

nav a:hover,
nav a.active {
    color: var(--primary);
    background: rgba(0, 242, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 242, 255, 0.15);
}

/* Style for the "active" item look (filled bg) if we had one */
nav a.nav-item-active {
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary);
    border-color: var(--primary);
}

/* Book a Call - Themed Container */
nav a.btn-primary {
    margin-top: auto;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.15), rgba(0, 128, 128, 0.2));
    border: 1px solid rgba(0, 242, 255, 0.4);
    color: var(--primary) !important;
    font-weight: 800;
    padding: 0.8rem 0.5rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2), inset 0 0 15px rgba(0, 242, 255, 0.05);
    position: relative;
    overflow: hidden;
}

nav a.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

nav a.btn-primary:hover::before {
    left: 100%;
}

nav a.btn-primary:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.25), rgba(0, 128, 128, 0.3));
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.4), inset 0 0 20px rgba(0, 242, 255, 0.1);
    transform: translateY(-2px);
    color: var(--primary) !important;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: #000;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 242, 255, 0.3);
    color: #000 !important;
}

.btn-secondary {
    border: 1px solid var(--border);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: var(--card-bg);
}

.w-full {
    width: 100%;
}

/* Main Content Offset */
main,
footer {
    margin-left: 115px;
    /* Match new sidebar width */
    width: calc(100% - 115px);
}

/* Hero */
.hero {
    padding: 8rem 0 8rem;
    /* Adjusted top padding since header is side */
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    min-height: 4.6em;
    /* Reserve space for 4 lines to prevent layout shift */
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 3rem;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.hero-bullets li i {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    animation: heroImageAnimate 8s ease-in-out infinite;
}

/* Hero Image 8-Second Looping Animation */
@keyframes heroImageAnimate {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 242, 255, 0.2);
    }

    25% {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4), 0 0 50px rgba(0, 242, 255, 0.4);
    }

    50% {
        transform: translateY(-5px) scale(1.01);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45), 0 0 40px rgba(112, 0, 255, 0.3);
    }

    75% {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 35px 55px rgba(0, 0, 0, 0.35), 0 0 60px rgba(0, 242, 255, 0.5);
    }

    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 242, 255, 0.2);
    }
}

/* Services */
.services {
    padding: 8rem 0;
}

/* Services Rows Layout */
.service-rows {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-row-top,
.service-row-bottom {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Ensure cards maintain their size within the rows */
.service-card-wrapper {
    flex: 0 1 380px;
    height: 420px;
    perspective: 1000px;
}

@media (max-width: 1200px) {

    .service-row-top,
    .service-row-bottom {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 800px) {
    .service-card-wrapper {
        flex: 1 1 100%;
        max-width: 450px;
    }
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card-wrapper:hover .service-card-inner {
    transform: rotateY(180deg);
}

/* Card Faces (shared styles) */
.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

/* Front Face */
.service-card-front {
    z-index: 2;
    transition: border-color 0.3s;
}

.service-card-wrapper:hover .service-card-front {
    border-color: var(--primary);
}

.service-card-front .icon-container {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    background: rgba(0, 242, 255, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.service-card-front .icon-container i {
    width: 32px;
    height: 32px;
    stroke-width: 2px;
}

.service-card-front h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card-front p {
    color: var(--text-muted);
    flex-grow: 1;
}

.flip-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--primary);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.flip-hint i {
    width: 16px;
    height: 16px;
    animation: hint-rotate 2s ease-in-out infinite;
}

@keyframes hint-rotate {

    0%,
    100% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(30deg);
    }
}

.service-card-wrapper:hover .flip-hint {
    opacity: 0;
}

/* Back Face */
.service-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.95), rgba(10, 10, 15, 0.98));
    border-color: var(--primary);
    padding: 1.5rem;
    overflow: hidden;
}

.back-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.back-header h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.back-header.resolution {
    margin-top: 1rem;
}

.pain-icon {
    width: 20px;
    height: 20px;
    color: #ff6b6b;
}

.resolution-icon {
    width: 20px;
    height: 20px;
    color: #00ff88;
}

.pain-list,
.resolution-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pain-list li,
.resolution-list li {
    font-size: 0.9rem;
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text-muted);
}

.pain-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-size: 0.75rem;
    font-weight: bold;
}

.resolution-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ff88;
    font-size: 0.85rem;
    font-weight: bold;
}

/* Case Studies */
.case-studies {
    padding: 6rem 0;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
}

.case-item {
    border-radius: 20px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border);
}

.case-img-placeholder img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.case-content {
    padding: 2rem;
}

.case-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Contact / AI Widget Section */
.contact {
    padding: 4rem 0;
}

.glass-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid var(--border);
}

.glass-form-container h2 {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

input,
select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    outline: none;
}

input:focus,
select:focus {
    border-color: var(--primary);
}

.hidden {
    display: none;
}

#form-feedback {
    margin-top: 1rem;
    text-align: center;
    color: var(--primary);
    font-weight: 600;
}

/* AI Voice Assistant Widget - Matches Page Column Width */
.ai-section-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
}

.ai-widget-wrapper {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.25),
        0 0 80px rgba(0, 242, 255, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 242, 255, 0.4);
    background: rgba(15, 15, 20, 0.95);
}

.ai-voice-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

/* Footer */
footer {
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.95rem;
    background: rgba(5, 5, 7, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
    text-align: left;
}

.footer-about .logo {
    text-align: left;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-about .logo span {
    text-align: left;
    display: block;
}

.footer-about p {
    max-width: 300px;
    text-align: left;
}

.footer-grid h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

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

.footer-grid ul li {
    margin-bottom: 0.8rem;
    list-style-type: none;
}

.footer-grid ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.footer-grid ul a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.15);
}

.social-links a i {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    opacity: 0.8;
}

@media (max-width: 1000px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-about .logo,
    .footer-about p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 900px) {

    /* Revert to Top Bar for smaller screens */
    header {
        width: 100%;
        height: auto;
        position: relative;
        padding: 1.5rem;
        background: rgba(10, 10, 12, 0.9);
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    main,
    footer {
        margin-left: 0;
        width: 100%;
    }

    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        margin-bottom: 0;
        width: auto;
    }

    nav ul {
        flex-direction: row;
        gap: 1.5rem;
        margin-top: 0;
        width: auto;
    }

    nav ul li {
        width: auto;
    }

    nav a {
        padding: 0;
        display: inline-block;
    }

    nav a:hover {
        transform: none;
        background: transparent;
        color: var(--primary);
    }

    nav a.btn-primary {
        margin-top: 0;
        padding: 0.6rem 1.5rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    nav {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

/* --- New Sections --- */

/* Problem Section */
.problem-section {
    padding: 10rem 0;
    background: linear-gradient(180deg, transparent, rgba(0, 128, 128, 0.05), transparent);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.problem-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-card h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.problem-card.bottleneck h3 {
    color: var(--error);
}

.problem-card.system h3 {
    color: var(--success);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-muted);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li i {
    width: 20px;
    height: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.bottleneck .comparison-list li i {
    color: var(--error);
}

.system .comparison-list li i {
    color: var(--success);
}

.micro-cta {
    margin-top: 4rem;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.micro-cta a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.micro-cta a:hover {
    border-color: var(--primary);
}

/* Methodology Section */
.methodology-section {
    padding: 10rem 0;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .pillar-grid {
        grid-template-columns: 1fr;
    }
}

.pillar-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.05);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.pillar-icon i {
    width: 30px;
    height: 30px;
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pillar-card p {
    color: var(--text-muted);
}

/* Portfolio Section */
.portfolio-section {
    padding: 10rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.portfolio-tile {
    display: flex;
    flex-direction: column;
}

.tile-tag {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.portfolio-tile h3 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.portfolio-tile p {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Founder Section */
.founder-section {
    padding: 10rem 0;
    background: rgba(0, 128, 128, 0.03);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: center;
}

@media (max-width: 900px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

.founder-image {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.founder-image img {
    width: 100%;
    display: block;
    transform: scale(1.15) translateY(-8%);
    transform-origin: center top;
}

.founder-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.founder-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.authority-bullets {
    list-style: none;
    margin-bottom: 3rem;
}

.authority-bullets li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .authority-bullets li {
        justify-content: center;
    }
}

.authority-bullets li i {
    color: var(--primary);
    width: 24px;
    height: 24px;
}

/* Process Section */
.process-section {
    padding: 10rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.step-card h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 10rem 0;
    background: linear-gradient(180deg, transparent, rgba(0, 242, 255, 0.02), transparent);
}

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

.faq-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Large enough for content */
    padding-bottom: 2rem;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Final CTA Section */
.final-cta {
    padding: 12rem 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 128, 128, 0.15), transparent 70%);
}

.final-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.final-cta p {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 4rem;
}

.final-cta .hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .final-cta h2 {
        font-size: 2.5rem;
    }
}