::selection {
    background-color: #10b981;
    color: #ffffff;
}

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

body {
    background-color: #030712;
    color: #f3f4f6;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: #10b981;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #34d399;
}

/* Header Styles */
.header {
    background-color: rgba(3, 7, 18, 0.9);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    animation: slipIn 0.5s ease-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #9ca3af;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
    color: #10b981;
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* CTA styles */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s;
    cursor: pointer;
}

.btn-primary, .header-cta {
    background-color: #10b981;
    color: #030712;
    border: 1px solid #10b981;
}

.btn-primary:hover, .header-cta:hover {
    background-color: #34d399;
    border-color: #34d399;
    transform: translateY(-2px);
    color: #030712;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* Hero Block */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: grayscale(1) contrast(1.1);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(3, 7, 18, 0.8) 0%, rgba(3, 7, 18, 0.98) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.superscript {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #10b981;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-lead {
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 32px;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 40px;
}

.hero-bullets li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #f3f4f6;
}

.hero-bullets li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: #10b981;
}

.hero-ctas {
    display: flex;
    gap: 16px;
}

/* Principles Section */
.principles-sec {
    padding: 100px 0;
    background-color: #030712;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.principles-sec h2 {
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 60px;
    color: #ffffff;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.principle-card {
    background-color: #0c111d;
    padding: 48px 32px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.25);
}

.principle-card .num {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(16, 185, 129, 0.2);
    margin-bottom: 24px;
}

.principle-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.principle-card p {
    color: #9ca3af;
}

/* Accordion (For whom) */
.for-whom-sec {
    padding: 100px 0;
    background-color: #080c14;
}

.split-header {
    margin-bottom: 60px;
}

.split-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.for-whom-sub {
    color: #9ca3af;
    font-size: 1.15rem;
    max-width: 600px;
}

.accordion {
    max-width: 800px;
}

.acc-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    user-select: none;
}

.acc-header:hover {
    color: #10b981;
}

.acc-header .icon {
    font-weight: 400;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.acc-inner {
    padding-bottom: 24px;
    color: #9ca3af;
    font-size: 1.05rem;
}

.acc-item.opened .acc-body {
    max-height: 200px;
}

.acc-item.opened .acc-header {
    color: #10b981;
}

.acc-item.opened .acc-header .icon {
    transform: rotate(45deg);
}

/* Showcase (Grid layout) */
.showcase-sec {
    padding: 100px 0;
    background-color: #030712;
}

.showcase-sec h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #ffffff;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.showcase-card {
    background-color: #0c111d;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.showcase-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.showcase-card p {
    color: #9ca3af;
    margin-bottom: 32px;
    font-size: 1rem;
}

.showcase-card .card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(1) brightness(0.6);
    transition: filter 0.4s ease;
}

.showcase-card:hover .card-img {
    filter: grayscale(0.5) brightness(0.8);
}

/* Testimonials Area */
.testimonials-sec {
    padding: 100px 0;
    background-color: #0c111d;
}

.testimonials-sec h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #ffffff;
}

.cases-container {
    display: grid;
    grid-template-columns: 1.51fr 1fr;
    gap: 40px;
}

.main-case {
    background-color: #030712;
    padding: 60px 48px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.main-case blockquote {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 40px;
    color: #ffffff;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #111827;
}

.hidden {
    display: none;
}

.author-name {
    font-weight: 700;
    color: #ffffff;
}

.author-title {
    color: #6b7280;
    font-size: 0.9rem;
}

.cases-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.case-subcard {
    background-color: #030712;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sub-quote {
    font-size: 1.15rem;
    color: #f3f4f6;
    margin-bottom: 24px;
}

/* Forms / Consultation block */
.form-sec {
    padding: 100px 0;
    background-color: #030712;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #ffffff;
}

.form-info p {
    color: #9ca3af;
    font-size: 1.1rem;
    margin-bottom: 48px;
}

.contact-settings {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
}

.contact-item p {
    font-size: 1rem;
    margin-bottom: 4px;
}

.form-container {
    background-color: #080c14;
    padding: 48px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-input-group {
    margin-bottom: 24px;
}

.form-input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
}

.form-input-group input,
.form-input-group textarea {
    width: 100%;
    background-color: #030712;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input-group input:focus,
.form-input-group textarea:focus {
    outline: none;
    border-color: #10b981;
}

.form-math-verify {
    margin-bottom: 24px;
    font-size: 0.95rem;
    color: #f3f4f6;
}

.form-math-verify strong {
    color: #10b981;
}

.form-math-verify input {
    background-color: #030712;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
    width: 120px;
    margin-left: 12px;
    font-family: inherit;
    text-align: center;
}

.form-consent {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.form-consent input {
    margin-top: 4px;
}

.form-consent label {
    font-size: 0.9rem;
    color: #9ca3af;
}

.form-submit {
    width: 100%;
}

.form-error-fallback {
    margin-top: 16px;
    color: #ef4444;
    font-size: 0.9rem;
}

/* Footer block */
.footer {
    background-color: #030712;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 16px;
    display: inline-block;
}

.brand-subtext {
    font-size: 0.9rem;
    color: #6b7280;

}

.footer-grid h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 24px;
}

.footer-grid a,
.footer-grid button {
    display: block;
    color: #9ca3af;
    margin-bottom: 12px;
    font-size: 0.95rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    width: auto;
}

.footer-grid a:hover,
.footer-grid button:hover {
    color: #10b981;
}

.footer-nap p {
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 8px;
}

.footer-nap a {
    display: inline;
    color: inherit;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Sub Pages Layout */
.sub-hero {
    padding: 160px 0 80px;
    background-color: #080c14;
}

.sub-hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #ffffff;
    margin-top: 12px;
    max-width: 800px;
}

.lead-text {
    font-size: 1.25rem;
    color: #9ca3af;
    margin-top: 24px;
    max-width: 800px;
}

.section-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    padding: 100px 24px;
}

.text-col h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 24px;
}

.text-col p {
    color: #9ca3af;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.milestones {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

.milestone .m-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
    display: block;
}

.milestone p {
    font-size: 0.95rem;
    color: #6b7280;
}

.img-col img {
    width: 100%;
    border-radius: 8px;
    filter: grayscale(1) brightness(0.6);
}

.cta-strip {
    padding: 100px 0;
    text-align: center;
    background-color: #0c111d;
}

.cta-strip h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 32px;
}

/* Services specific layout */
.services-detail {
    background-color: #030712;
    padding: 60px 0;
}

.detailed-service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detailed-service-row.rev {
    direction: rtl;
}

.detailed-service-row.rev .text-area {
    direction: ltr;
}

.detailed-service-row.rev .img-area {
    direction: ltr;
}

.detailed-service-row h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.detailed-service-row p {
    color: #9ca3af;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

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

.points-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #f3f4f6;
}

.points-list li::before {
    content: '▫';
    position: absolute;
    left: 0;
    color: #10b981;
}

.img-area img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(1) brightness(0.6);
}

/* Contact details section */
.contacts-details-section {
    background-color: #030712;
    padding: 60px 0;
}

.contact-cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.c-card {
    background-color: #080c14;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.c-card strong {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 8px;
}

.c-card p {
    margin: 0 !important;
    font-size: 1.1rem !important;
    color: #ffffff !important;
}

.align-right-form {
    background-color: #080c14;
    padding: 48px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Blog pages styling */
.blog-posts-grid-sec {
    padding: 80px 0;
    background-color: #030712;
}

.blog-cards-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card-item {
    background-color: #080c14;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card-item:hover {
    transform: translateY(-4px);
}

.blog-card-item .img-wrap {
    height: 200px;
    overflow: hidden;
}

.blog-card-item .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.6);
    transition: scale 0.4s ease;
}

.blog-card-item:hover .img-wrap img {
    scale: 1.05;
}

.card-body-content {
    padding: 32px;
}

.card-body-content .date {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 12px;
}

.card-body-content h3 {
    font-size: 1.3rem;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 16px;
}

.card-body-content p {
    color: #9ca3af;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* Article template */
.article-viewer-sec {
    padding: 160px 0 100px;
    background-color: #030712;
}

.compact-article-container {
    max-width: 800px;
}

.meta-strip {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 12px;
    margin-bottom: 40px;
}

.featured-banner-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(1) brightness(0.6);
    margin-bottom: 48px;
}

.article-body p {
    font-size: 1.15rem;
    color: #9ca3af;
    margin-bottom: 32px;
    line-height: 1.7;
}

.article-body blockquote {
    border-left: 2px solid #10b981;
    padding-left: 24px;
    font-style: italic;
    font-size: 1.3rem;
    color: #f3f4f6;
    margin: 40px 0;
}

.article-inner-cta {
    background-color: #080c14;
    padding: 48px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 80px;
}

.article-inner-cta h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.article-inner-cta p {
    color: #9ca3af;
    margin-bottom: 32px;
}

/* Legal structural frameworks */
.legal-page-content {
    padding: 160px 0 100px;
    background-color: #030712;
}

.legal-container {
    max-width: 800px;
}

.legal-container h1 {
    font-size: 3rem;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-bottom: 8px;
}

.last-updated {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 48px;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-container p,
.legal-container ul {
    color: #9ca3af;
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.legal-container ul {
    padding-left: 20px;
}

.legal-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 1rem;
}

.legal-container th,
.legal-container td {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    text-align: left;
}

.legal-container th {
    background-color: #080c14;
    color: #ffffff;
}

.legal-container td {
    color: #9ca3af;
}

/* Cookie consent banner modules */
.cookie-banner {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 10000;
    background-color: #0c111d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    width: 480px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.8);
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
}

.cookie-banner.shown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-banner h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.cookie-banner p {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.choice-lbl {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #ffffff;
    cursor: pointer;
    background-color: #030712;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-actions {
    display: flex;
    gap: 8px;
}

.cookie-btn {
    flex: 1;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.cookie-btn.btn-accent {
    background-color: #10b981;
    color: #030712;
    border-color: #10b981;
}

.cookie-btn.btn-accent:hover {
    background-color: #34d399;
}

/* Scroll reveals & motion keyframes */
@keyframes slipIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cases-container {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #030712;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        display: none;
    }
    .nav.nav-active {
        display: flex;
    }
    .burger {
        display: flex;
    }
    .header.opened .burger span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .header.opened .burger span:nth-child(2) {
        opacity: 0;
    }
    .header.opened .burger span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .principles-grid {
        grid-template-columns: 1fr;
    }
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .detailed-service-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .detailed-service-row.rev {
        direction: ltr;
    }
    .section-two-col {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .blog-cards-flex {
        grid-template-columns: 1fr;
    }
    .cookie-banner {
        width: calc(100% - 48px);
        left: 24px;
        bottom: 24px;
    }
    .cookie-actions {
        flex-direction: column;
    }
}