/*
=========================================
JB Web Studio - Desktop Stylesheet
Default styles only. Responsive rules live in mobile.css.
=========================================
*/

/* =========================
   VARIABLES & GLOBAL
========================= */

:root {
    --background: #090909;
    --background2: #111111;
    --card: #161616;
    --primary: #FFFFFF;
    --secondary: #B5B5B5;
    --accent: #3B82F6;
    --border: #2A2A2A;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top right, rgba(59,130,246,.15), transparent 35%),
                radial-gradient(circle at bottom left, rgba(59,130,246,.08), transparent 40%),
                #090909;
    color: var(--primary);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: .25;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    width: 700px;
    height: 700px;
    background: #3B82F6;
    filter: blur(250px);
    opacity: .12;
    right: -250px;
    top: -250px;
    z-index: -3;
}

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

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: transform .4s ease;
}

.navbar {
    max-width: 1300px;
    margin: 20px auto;
    padding: 18px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20,20,20,.55);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
}

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

.logo img {
    width: 125px;
}

.logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #cfcfcf;
    font-weight: 500;
    transition: .3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.active {
    color: white!important;
}

.btn-nav {
    text-decoration: none;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    background: var(--accent);
    transition: .3s;
    font-weight: 600;
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0,212,255,.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 20px;
    transition: 0.3s;
}

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

.hero {
    min-height: 100vh;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 140px 40px 60px;
}

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-right img {
    width: 100%;
    max-width: 500px;
}

.hero-right::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle,
    rgba(59,130,246,.25),
    transparent 70%);
    filter: blur(70px);
    z-index: -1;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 30px;
    max-width: 700px;
}

.hero p {
    color: #BFBFBF;
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin: 40px 0 30px;
}

.hero-tag {
    color: var(--accent);
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-description {
    color: var(--secondary);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 650px;
}

.small-title {
    color: var(--accent);
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.scroll-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 80px;
    opacity: 1;
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    color: white;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: .4s ease;
    animation: float 2.5s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: .8rem;
    letter-spacing: 4px;
    color: var(--secondary);
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-arrow {
    font-size: 26px;
    color: #2F80FF;
}

.mouse {
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 10px;
    margin-top: 8px;
    animation: scrollWheel 2s infinite;
}

.logo-animation {
    width: 520px;
    animation: floatLogo 6s ease-in-out infinite;
}

.logo-animation object {
    width: 100%;
    filter: drop-shadow(0 0 20px rgba(59,130,246,.35));
}

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

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-primary {
    background: #3B82F6;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(59,130,246,.35);
}

.btn-secondary {
    border: 2px solid #3B82F6;
    color: #fff;
    background: transparent;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: #fff;
    background: #3B82F6;
    transform: translateY(-4px);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* =========================
   SECTION HEADINGS
========================= */

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

.section-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-heading h2 {
    font-size: 3.5rem;
    max-width: 800px;
    margin: auto;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-heading p {
    max-width: 650px;
    margin: auto;
    color: var(--secondary);
    line-height: 1.8;
}

.section-tag {
    color: var(--accent);
    letter-spacing: 2px;
    font-size: .85rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.page-hero {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 160px 8% 100px;
}

.page-hero-content {
    max-width: 850px;
}

.page-hero h1 {
    font-size: 4rem;
    margin: 30px 0;
    line-height: 1.1;
}

.page-hero p {
    color: #9ca3af;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.section-heading .btn-primary {
    display: inline-block;
    margin-top: 25px;
}

/* =========================
   BROWSER MOCKUP
========================= */

.browser-window {
    width: 620px;
    background: #171717;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
    animation: float 5s ease-in-out infinite;
    max-width: 1200px;
    transition: .4s;
}

.browser-window:hover {
    transform: translateY(-10px);
    box-shadow: 0 50px 140px rgba(0,0,0,.55),
        0 0 140px rgba(59,130,246,.18);
}

.browser-top {
    height: 60px;
    background: #202020;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.browser-top span {
    width: 13px;
    height: 13px;
    border-radius: 50%;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-url {
    flex: 1;
    background: #2A2A2A;
    padding: 8px;
    border-radius: 30px;
    text-align: center;
    color: #9f9f9f;
    font-size: .8rem;
}

.browser-image img {
    width: 100%;
    display: block;
}

.browser-buttons {
    display: flex;
    gap: 8px;
}

.browser-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-address {
    flex: 1;
    background: #2a2a2a;
    color: #bbb;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
}

.browser-preview img {
    width: 100%;
    display: block;
}

.browser {
    width: 700px;
    border-radius: 22px;
    overflow: hidden;
    background: #101010;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 40px 100px rgba(0,0,0,.45),
        0 0 80px rgba(59,130,246,.12);
    transition: .4s;
}

.browser:hover {
    transform: translateY(-12px);
    box-shadow: 0 60px 120px rgba(0,0,0,.55),
        0 0 120px rgba(59,130,246,.25);
}

.browser-header {
    height: 48px;
    background: #181818;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.address-bar {
    margin-left: 15px;
    flex: 1;
    height: 30px;
    border-radius: 25px;
    background: #2A2A2A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8E8E8E;
    font-size: .8rem;
}

.browser-body {
    background: white;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.browser-body img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

.browser-content {
    background: #fff;
}

.browser-content img {
    width: 100%;
    display: block;
}

.browser-stack {
    position: relative;
    width: 700px;
    height: 520px;
    transform-style: preserve-3d;
    transition: transform .25s ease;
}

.browser-card {
    position: absolute;
    width: 100%;
    background: #101010;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 35px 80px rgba(0,0,0,.45),
        0 0 60px rgba(59,130,246,.12);
    transition: .6s cubic-bezier(.2,.8,.2,1);
}

.browser-card img {
    width: 100%;
    display: block;
}

.browser-screen {
    aspect-ratio: 16/10;
    background: white;
}

.browser-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-1 {
    z-index: 3;
    transform: translate(0,0) scale(1);
}

.card-2 {
    z-index: 2;
    transform: translate(45px,40px) scale(.93);
    opacity: .75;
}

.card-3 {
    z-index: 1;
    transform: translate(90px,80px) scale(.86);
    opacity: .55;
}

.front {
    z-index: 3;
    transform: translate(0,0)
    scale(1);
    animation: float 6s ease-in-out infinite;
}

.middle {
    z-index: 2;
    transform: translate(40px,35px)
    scale(.94);
    opacity: .75;
}

.back {
    z-index: 1;
    transform: translate(80px,70px)
    scale(.88);
    opacity: .5;
}

.browser-stack:hover .card-1 {
    transform: translateY(-18px);
}

.browser-stack:hover .card-2 {
    transform: translate(45px,55px) scale(.93);
}

.browser-stack:hover .card-3 {
    transform: translate(90px,95px) scale(.86);
}

.red {
    background: #ff5f57;
}

.yellow {
    background: #febc2e;
}

.green {
    background: #28c840;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(59,130,246,.15);
    border: 1px solid rgba(59,130,246,.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent);
    font-weight: 700;
}

/* =========================
   TRUSTED BY
========================= */

.trusted {
    max-width: 1300px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.trusted p {
    color: var(--secondary);
    font-size: .95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.trusted-logos {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.logo-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 35px;
    color: white;
    font-weight: 600;
    transition: .35s;
    cursor: pointer;
}

.logo-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(59,130,246,.15);
}

.trusted-title {
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

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

.trusted-card {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    transition: .35s;
}

.trusted-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(59,130,246,.15);
}

.trusted-card img {
    max-width: 160px;
    max-height: 70px;
}

.soon {
    color: #666;
    font-weight: 600;
}

.reeds-logo {
    width: 220px;
    height: auto;
}

/* =========================
   CLIENTS (HOME)
========================= */

.clients .projects-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.clients .project-card {
    background: #111827;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: .35s;
}

.clients .project-card:hover {
    transform: translateY(-10px);
    border-color: #2F80FF;
    box-shadow: 0 20px 50px rgba(47,128,255,.20);
}

.clients .project-card img {
    height: 120px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 25px;
}

.clients .project-card h3 {
    color: white;
    font-size: 1.9rem;
    margin-bottom: 10px;
}

.clients .project-card p {
    color: var(--secondary);
    margin-bottom: 25px;
}

.clients .project-card ul {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.clients .project-card li {
    color: white;
    margin: 12px 0;
}

.clients .project-card li::before {
    content: "✔";
    color: var(--accent);
    margin-right: 10px;
}

.clients .project-card a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.clients .project-card a:hover {
    color: #fff;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* =========================
   PROCESS (HOME)
========================= */

.process {
    max-width: 1000px;
    margin: 180px auto;
    padding: 0 40px;
}

.process .timeline {
    position: relative;
    margin-top: 80px;
}

.process .timeline-line {
    position: absolute;
    left: 29px;
    top: 0;
    width: 3px;
    height: 100%;
    background: rgba(255,255,255,.08);
}

.process .timeline-item {
    display: flex;
    gap: 35px;
    margin-bottom: 70px;
    position: relative;
}

.process .timeline-number {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 0 30px rgba(59,130,246,.35);
}

.process .timeline-content {
    width: 100%;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    transition: .35s;
}

.process .timeline-content:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
}

.process .timeline-content h3 {
    margin-bottom: 15px;
}

.process .timeline-content p {
    color: var(--secondary);
    line-height: 1.8;
}

/* =========================
   SERVICES (HOME)
========================= */

.process ~ .services {
    max-width: 1300px;
    margin: 180px auto;
    padding: 0 40px;
}

.process ~ .services .services-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin-top: 70px;
}

.process ~ .services .service-card {
    position: relative;
    padding: 45px;
    border-radius: 25px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    transition: .35s;
}

.process ~ .services .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(59,130,246,.18),transparent 60%);
    opacity: 0;
    transition: .35s;
}

.process ~ .services .service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(59,130,246,.5);
}

.process ~ .services .service-card:hover::before {
    opacity: 1;
}

.process ~ .services .service-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,.08);
    margin-bottom: 30px;
}

.process ~ .services .service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.process ~ .services .service-card p {
    color: var(--secondary);
    line-height: 1.8;
}

/* =========================
   LATEST WORK
========================= */

.latest-work {
    max-width: 1400px;
    margin: 180px auto;
    padding: 0 40px;
}

.showcase-browser {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.project-info {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.info-card {
    padding: 35px;
    border-radius: 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
}

.info-card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.info-card p {
    color: var(--secondary);
    line-height: 1.8;
}

.info-card ul {
    margin-top: 15px;
    padding-left: 20px;
}

.info-card li {
    color: var(--secondary);
    margin-bottom: 12px;
}

/* =========================
   FEATURED PROJECT
========================= */

.featured-project {
    max-width: 1300px;
    margin: 180px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 40px;
}

.project-description {
    margin: 30px 0;
    color: var(--secondary);
    line-height: 1.9;
}

.project-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.feature {
    padding: 18px;
    border-radius: 15px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.project-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.project-browser {
    display: flex;
    justify-content: center;
}

.project-browser .browser {
    width: 100%;
    transition: .4s;
}

.project-browser .browser:hover {
    transform: translateY(-15px) rotate(-1deg);
}

.project-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.project-info h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.project-info p {
    color: var(--secondary);
    line-height: 1.8;
    margin-bottom: 35px;
}

.tech-stack {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.tech-stack span {
    padding: 10px 20px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px;
}

/* =========================
   WHY CHOOSE US (HOME)
========================= */

.why-us {
    max-width: 1300px;
    margin: 180px auto;
    padding: 0 40px;
}

.why-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.why-card {
    padding: 45px;
    border-radius: 22px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    transition: .4s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--accent);
    transition: .4s;
}

.why-card:hover {
    transform: translateY(-12px);
    border-color: rgba(59,130,246,.4);
}

.why-card:hover::before {
    height: 100%;
}

.why-card span {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,.08);
}

.why-card h3 {
    margin: 20px 0;
    font-size: 1.6rem;
}

.why-card p {
    color: var(--secondary);
    line-height: 1.8;
}

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

.testimonials {
    max-width: 1300px;
    margin: 180px auto;
    padding: 0 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin-top: 70px;
}

.testimonial-card {
    position: relative;
    overflow: visible;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 25px;
    padding: 40px;
}

.testimonial-card {
    position: relative;
    overflow: visible;
}

.bubble-tail {
    position: absolute;
    left: 45px;
    bottom: -18px;
    width: 30px;
    height: 20px;
    fill: rgba(255,255,255,.03);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: #2F80FF;
    box-shadow: 0 20px 45px rgba(47,128,255,.18);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #3B82F6;
}

.stars {
    color: #3B82F6;
    font-size: 24px;
    margin-bottom: 25px;
}

.testimonial-card p {
    color: #cfcfcf;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.client {
    display: flex;
    flex-direction: column;
}

.client strong {
    color: white;
}

.client span {
    color: #888;
}

/* =========================
   FAQ (HOME)
========================= */

.faq {
    max-width: 1000px;
    margin: 180px auto;
    padding: 0 40px;
}

.faq-container {
    margin-top: 60px;
}

.faq .faq-item {
    margin-bottom: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    transition: .35s;
}

.faq .faq-item:hover {
    border-color: #3B82F6;
}

.faq .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 35px;
    cursor: pointer;
}

.faq .faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.faq .faq-question span {
    font-size: 28px;
    color: #3B82F6;
    transition: .3s;
}

.faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq .faq-answer p {
    padding: 0 35px 30px;
    color: #bdbdbd;
    line-height: 1.8;
}

.faq .faq-item.active .faq-answer {
    max-height: 200px;
}

.faq .faq-item.active .faq-question span {
    transform: rotate(45deg);
}

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

footer {
    margin-top: 180px;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 80px 8% 30px;
    background: #080808;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-about img {
    width: 220px;
    margin-bottom: 25px;
}

.footer-about p {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-about span {
    color: #9ca3af;
    line-height: 1.8;
}

.footer-links h4 {
    color: white;
    margin-bottom: 25px;
}

.footer-links a, .footer-links p {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 14px;
    transition: .3s;
}

.footer-links a:hover {
    color: #3B82F6;
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #888;
}

.footer-bottom div {
    display: flex;
    gap: 25px;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
    transition: .3s;
}

.footer-bottom a:hover {
    color: #3B82F6;
}

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

.page-hero ~ .services {
    padding: 160px 8%;
}

.page-hero ~ .services .services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 70px;
}

.page-hero ~ .services .service-card {
    background: #111827;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 40px;
    transition: .35s ease;
    cursor: pointer;
}

.page-hero ~ .services .service-card:hover {
    transform: translateY(-10px);
    border-color: #3B82F6;
    box-shadow: 0 20px 50px rgba(59,130,246,.15);
}

.page-hero ~ .services .service-card i {
    font-size: 42px;
    color: #3B82F6;
    margin-bottom: 25px;
}

.page-hero ~ .services .service-card h3 {
    margin-bottom: 18px;
    font-size: 1.5rem;
}

.page-hero ~ .services .service-card p {
    color: #9ca3af;
    line-height: 1.8;
}

.included {
    padding: 160px 8%;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 70px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #111827;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 25px;
    transition: .35s ease;
}

.included-item:hover {
    transform: translateX(8px);
    border-color: #3B82F6;
}

.included-item i {
    color: #3B82F6;
    font-size: 20px;
}

.included-item span {
    font-size: 1.05rem;
    font-weight: 500;
}

.tech {
    padding: 160px 8%;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 70px;
}

.tech-card {
    text-align: center;
    background: #111827;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 45px 35px;
    transition: .35s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: #3B82F6;
    box-shadow: 0 20px 40px rgba(59,130,246,.15);
}

.tech-card i {
    font-size: 60px;
    color: #3B82F6;
    margin-bottom: 25px;
}

.tech-card h3 {
    margin-bottom: 15px;
}

.tech-card p {
    color: #9ca3af;
    line-height: 1.8;
}

.services-cta {
    padding: 100px 10%;
    text-align: center;
    background: linear-gradient(135deg,#111827,#1f2937);
}

.services-cta h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.services-cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #cbd5e1;
    line-height: 1.8;
}

/* =========================
   PORTFOLIO PAGE
========================= */

.portfolio-hero {
    padding: 160px 10% 100px;
    text-align: center;
    background: #111827;
}

.portfolio-hero h1 {
    font-size: 3rem;
    margin: 25px 0;
}

.portfolio-hero p {
    max-width: 700px;
    margin: auto;
    color: #cbd5e1;
    line-height: 1.8;
}

.featured-projects {
    padding: 100px 10%;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(450px,1fr));
    gap: 40px;
    margin-top: 60px;
}

.featured-card {
    background: #1f2937;
    border-radius: 18px;
    overflow: hidden;
    transition: .35s;
}

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

.featured-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.featured-content {
    padding: 30px;
}

.featured-content span {
    color: #3B82F6;
    font-size: .9rem;
    font-weight: 600;
}

.featured-content h3 {
    margin: 15px 0;
}

.featured-content p {
    color: #cbd5e1;
    margin-bottom: 25px;
}

.featured-content a {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 600;
}

.selected-projects {
    padding: 100px 10%;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    gap: 35px;
    margin-top: 60px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.project-card {
    background: #1f2937;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 20px;
    padding: 40px;
    transition: .35s;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: #3B82F6;
    box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

.project-card img {
    width: 100%;
    height: 450px;
    display: block;
    margin: 0;
    object-fit: contain;
    object-position: top;
}

.project-content {
    padding: 30px;
}

.project-type {
    color: #3B82F6;
    font-weight: 600;
    font-size: .9rem;
}

.project-content h3 {
    margin: 15px 0;
}

.project-content p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 25px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.project-tech span {
    background: #111827;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: .8rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #3B82F6;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.project-link:hover {
    gap: 16px;
}

.coming-soon {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(59,130,246,.15);
    color: #3B82F6;
    font-weight: 600;
}

.why-choose {
    padding: 100px 10%;
    background: #111827;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
    margin-top: 60px;
}

.choose-card {
    background: #1f2937;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.05);
    transition: .35s;
}

.choose-card:hover {
    transform: translateY(-8px);
    border-color: #3B82F6;
    box-shadow: 0 15px 35px rgba(0,0,0,.3);
}

.choose-card i {
    font-size: 2.5rem;
    color: #3B82F6;
    margin-bottom: 20px;
}

.choose-card h3 {
    margin-bottom: 15px;
    color: #fff;
}

.choose-card p {
    color: #cbd5e1;
    line-height: 1.7;
}

.portfolio-faq {
    padding: 100px 10%;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 30px;
    margin-top: 60px;
}

.portfolio-faq .faq-item {
    background: #1f2937;
    padding: 35px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.05);
    transition: .3s;
    margin-bottom: 0;
}

.portfolio-faq .faq-item:hover {
    border-color: #3B82F6;
    transform: translateY(-5px);
}

.portfolio-cta {
    padding: 110px 10%;
    text-align: center;
    background: linear-gradient(135deg,#1f2937,#111827);
}

.portfolio-cta h2 {
    font-size: 2.7rem;
    margin-bottom: 20px;
}

.portfolio-cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #cbd5e1;
    line-height: 1.8;
}

/* =========================
   ABOUT PAGE
========================= */

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 140px 10% 80px;
    text-align: center;
    background: #111827;
}

.about-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 220px;

    background: linear-gradient(
        to bottom,
        rgba(17,24,39,0) 0%,
        rgba(11,15,23,.45) 55%,
        #0b0f17 100%
    );

    pointer-events: none;
}

.about-hero h1 {
    text-shadow: 0 0 40px rgba(47,128,255,.08);
}

.about-hero > * {
    position: relative;
    z-index: 1;
}
.about-hero h1 {
    font-size: 3rem;
    margin: 25px 0;
}

.about-hero p {
    max-width: 750px;
    margin: auto;
    color: #cbd5e1;
    line-height: 1.8;
}

.our-story {
    padding: 100px 10%;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.story-text p {
    margin: 20px 0;
    color: #cbd5e1;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
}

.founder {
    padding: 100px 10%;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid rgba(59,130,246,.2);
}

.founder-content p {
    margin: 20px 0;
    color: #cbd5e1;
    line-height: 1.8;
}

.founder-stats {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat {
    background: #1f2937;
    padding: 20px;
    border-radius: 15px;
    min-width: 150px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.05);
}

.stat h3 {
    color: #3B82F6;
    margin-bottom: 8px;
    font-size: 1.6rem;
}

.stat span {
    color: #cbd5e1;
    font-size: .9rem;
}

.values {
    padding: 100px 10%;
    background: #111827;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: #1f2937;
    padding: 35px 30px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.05);
    transition: .35s;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: #3B82F6;
    box-shadow: 0 15px 35px rgba(0,0,0,.3);
}

.value-card i {
    font-size: 2.5rem;
    color: #3B82F6;
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
}

.value-card p {
    color: #cbd5e1;
    line-height: 1.7;
}

.about-cta {
    padding: 100px 10%;
}

.cta-box {
    max-width: 1000px;
    margin: auto;
    padding: 70px 50px;
    text-align: center;
    background: linear-gradient(135deg,#1f2937,#111827);
    border: 1px solid rgba(59,130,246,.25);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 250px;
    height: 250px;
    background: rgba(59,130,246,.15);
    border-radius: 50%;
}

.cta-box::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 220px;
    height: 220px;
    background: rgba(59,130,246,.08);
    border-radius: 50%;
}

.cta-box>* {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 2.7rem;
    margin: 20px 0;
}

.cta-box p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #cbd5e1;
    line-height: 1.8;
}

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

.process-hero {
    padding: 160px 10% 100px;
    text-align: center;
    background: #111827;
}

.process-hero h1 {
    font-size: 3rem;
    margin: 25px 0;
    line-height: 1.2;
}

.process-hero p {
    max-width: 750px;
    margin: 0 auto;
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1.1rem;
}

.process-timeline {
    padding: 100px 10%;
}

.process-timeline .timeline {
    position: relative;
    max-width: 900px;
    margin: 70px auto 0;
}

.process-timeline .timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #3B82F6;
}

.process-timeline .timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-timeline .timeline-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #3B82F6;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

.process-timeline .timeline-content {
    flex: 1;
    background: #1f2937;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.05);
    transition: .3s;
}

.process-timeline .timeline-content:hover {
    border-color: #3B82F6;
    transform: translateY(-5px);
}

.process-timeline .timeline-content h3 {
    margin-bottom: 15px;
}

.process-timeline .timeline-content p {
    color: #cbd5e1;
    line-height: 1.8;
}

.process-benefits {
    padding: 100px 10%;
    background: #111827;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: #1f2937;
    padding: 35px 30px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.05);
    transition: .35s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: #3B82F6;
    box-shadow: 0 15px 35px rgba(0,0,0,.3);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #3B82F6;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
}

.benefit-card p {
    color: #cbd5e1;
    line-height: 1.7;
}

.pricing-section {
    padding: 110px 10%;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.6rem;
    margin: 20px 0 40px;
}

.pricing-card {
    max-width: 800px;
    margin: auto;
    background: #1f2937;
    border: 1px solid rgba(59,130,246,.4);
    border-radius: 20px;
    padding: 45px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

.pricing-card::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(59,130,246,.08);
    top: -180px;
    right: -180px;
}

.pricing-card::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(59,130,246,.05);
    bottom: -150px;
    left: -150px;
}

.pricing-card>* {
    position: relative;
    z-index: 2;
}

.pricing-card p:last-child {
    max-width: 760px;
    margin: auto;
    color: #cbd5e1;
    line-height: 2;
    font-size: 1.05rem;
}

.pricing-card strong {
    color: #3B82F6;
}

.pricing-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg,#60A5FA,#2563EB);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.8rem;
    color: #fff;
    border: 2px solid rgba(255,255,255,.2);
    box-shadow: 0 0 20px rgba(59,130,246,.5),
        0 0 40px rgba(59,130,246,.2);
}

.pricing-intro {
    margin: 0 auto 40px;
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 720px;
    color: #fff;
}

.divider {
    margin: 40px auto;
    width: 120px;
    height: 3px;
    background: #3B82F6;
    border-radius: 50px;
}

.process-cta {
    padding: 100px 10%;
}

.process-cta-box {
    max-width: 1000px;
    margin: auto;
    padding: 70px 50px;
    text-align: center;
    background: linear-gradient(135deg,#1f2937,#111827);
    border: 1px solid rgba(59,130,246,.25);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.process-cta-box::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -140px;
    width: 280px;
    height: 280px;
    background: rgba(59,130,246,.12);
    border-radius: 50%;
}

.process-cta-box::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 240px;
    height: 240px;
    background: rgba(59,130,246,.08);
    border-radius: 50%;
}

.process-cta-box>* {
    position: relative;
    z-index: 2;
}

.process-cta-box h2 {
    font-size: 2.8rem;
    margin: 20px 0;
}

.process-cta-box p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #cbd5e1;
    line-height: 1.8;
}

.process-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.contact-hero {
    padding: 160px 10% 100px;
    text-align: center;
    background: #111827;
}

.contact-hero h1 {
    font-size: 3rem;
    margin: 25px 0;
    line-height: 1.2;
}

.contact-hero p {
    max-width: 750px;
    margin: 0 auto;
    color: #cbd5e1;
    line-height: 1.8;
}

.contact-info {
    padding: 100px 10%;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}

.contact-card {
    background: #1f2937;
    padding: 40px 30px;
    text-align: center;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.05);
    transition: .3s;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: #3B82F6;
}

.contact-card i {
    font-size: 2.5rem;
    color: #3B82F6;
    margin-bottom: 20px;
}

.contact-card p {
    color: #cbd5e1;
}

.contact-form-section {
    padding: 100px 10%;
}

.contact-form-wrapper {
    max-width: 1000px;
    margin: auto;
    background: #1f2937;
    border-radius: 25px;
    padding: 60px;
    border: 1px solid rgba(59,130,246,.2);
}

.form-content {
    text-align: center;
    margin-bottom: 50px;
}

.form-content p {
    max-width: 650px;
    margin: auto;
    color: #cbd5e1;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

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

.full-width {
    grid-column: 1/-1;
}

.form-group label {
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    background: #111827;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 15px;
    color: white;
    font-size: 1rem;
    transition: .3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 15px rgba(59,130,246,.25);
}

.contact-form button {
    grid-column: 1/-1;
    justify-self: center;
    margin-top: 10px;
}

/* =========================
   LEGAL PAGES
========================= */

.legal-hero {
    padding: 170px 10% 100px;
    text-align: center;
    background: radial-gradient(circle at top left,#2563eb25,transparent 35%),
    radial-gradient(circle at bottom right,#2563eb25,transparent 35%),
    #111827;
    overflow: hidden;
}

.legal-hero h1 {
    font-size: 4rem;
    margin: 20px 0;
}

.legal-hero p {
    max-width: 750px;
    margin: auto;
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1.1rem;
}

.legal-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    color: #94a3b8;
    font-size: .95rem;
}

.legal-breadcrumb a {
    color: #3B82F6;
    text-decoration: none;
}

.legal-breadcrumb .active {
    color: #3B82F6;
}

.hero-divider {
    width: 90px;
    height: 4px;
    background: #3B82F6;
    border-radius: 50px;
    margin: 25px auto;
}

.legal-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 60px;
}

.legal-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #1f2937;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px;
    padding: 22px 28px;
    min-width: 260px;
    transition: .35s;
}

.legal-card:hover {
    transform: translateY(-6px);
    border-color: #3B82F6;
}

.legal-card i {
    font-size: 2rem;
    color: #3B82F6;
}

.legal-card h3 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.legal-card p {
    margin: 0;
    color: #cbd5e1;
    font-size: .95rem;
}

.legal-content {
    padding: 80px 10%;
}

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

.legal-content h2 {
    margin: 50px 0 20px;
    color: #fff;
    font-size: 2rem;
}

.legal-content h3 {
    margin: 35px 0 15px;
    color: #3B82F6;
}

.legal-content p, .legal-content li {
    color: #cbd5e1;
    line-height: 1.9;
}

.legal-content ul {
    margin: 20px 0 20px 25px;
}

.legal-content strong {
    color: #fff;
}

.legal-intro {
    padding: 70px 10% 30px;
}

.legal-intro .container {
    max-width: 850px;
    margin: 0 auto;
}

.legal-intro p {
    max-width: 700px;
    margin: 0 auto;
    color: #cbd5e1;
    line-height: 1.9;
    text-align: center;
    font-size: 1.1rem;
}

.legal-accordion {
    padding: 40px 10% 100px;
}

.accordion {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: #1f2937;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
    transition: .3s;
}

.accordion-item.active {
    border-color: #3B82F6;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.accordion-header i {
    transition: .3s;
    color: #3B82F6;
}

.accordion-item.active i {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.accordion-content p {
    padding: 0 30px 30px;
    line-height: 1.9;
    color: #cbd5e1;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 35px 0;
    overflow: hidden;
    border-radius: 12px;
}

.cookie-table th {
    background: #3B82F6;
    color: #fff;
    padding: 15px;
    text-align: left;
}

.cookie-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: #1f2937;
}

.cookie-table tr:hover td {
    background: #263244;
}

/* =========================
   COOKIE BANNER
========================= */

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 25px;
    width: min(1100px, calc(100% - 40px));
    transform: translateY(200px);
    background: #1f2937;
    border: 1px solid rgba(59,130,246,.25);
    border-radius: 20px;
    padding: 30px;
    z-index: 9999;
    box-shadow: 0 20px 50px rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    backdrop-filter: blur(12px);
    overflow: visible;
}

.cookie-banner.show {
    transform: translate(-50%,0);
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    margin-bottom: 12px;
}

.cookie-text p {
    color: #cbd5e1;
    line-height: 1.8;
}

.cookie-text a {
    color: #3B82F6;
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #ffffff;
    border: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 99999;
    font-weight: 300;
    line-height: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-close:hover {
    background: rgba(59,130,246,0.15);
    color: #3B82F6;
}

.cookie-close i {
    font-size: 22px;
    color: #ffffff;
    line-height: 1;
}

/* =========================
   PORTFOLIO PAGE - PROJECT CARD CHILD SELECTORS
   (Apply to .project-card children on the portfolio page)
========================= */

.project-card a {
    color: #2F80FF;
    text-decoration: none;
    font-weight: 600;
}

.project-card a:hover {
    color: white;
}

.project-card h3 {
    color: white;
    font-size: 30px;
    margin-bottom: 8px;
}

.project-card li {
    color: white;
    margin: 12px 0;
}

.project-card li::before {
    content: "✔";
    color: #2F80FF;
    margin-right: 10px;
}

.project-card p {
    color: #9ca3af;
    margin-bottom: 25px;
}

.project-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

/* =========================
   PORTFOLIO PAGE - FAQ ITEM CHILD SELECTORS
   (Apply to .faq-item children on the portfolio page)
========================= */

.faq-item {
    margin-bottom: 20px;
    border-radius: 18px;
    background: #1f2937;
    border: 1px solid rgba(255,255,255,.05);
    overflow: hidden;
    transition: .3s;
    padding: 35px;
}

.faq-item h3 {
    margin-bottom: 15px;
}

.faq-item p {
    color: #cbd5e1;
    line-height: 1.7;
}

