/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Color system from Club Zeno (https://www.clubzeno.com/) */
:root {
    --primary-color: #012bfe;
    --primary-dark: #016cf9;
    --secondary-color: #00b7d7;
    --accent-color: #00f7ff;
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-light: #9ca3af;
    --text-muted: #6b7280;
    --bg-primary: #050508;
    --bg-secondary: #0c0c12;
    --bg-dark: #030306;
    --bg-card: #061830;
    --bg-elevated: #0a1628;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(0, 183, 215, 0.3);
    --gradient-1: linear-gradient(90deg, #012bfe 6%, #016cf9 23%, #006fff 42%, #01b2fe 59%, #00f7ff 81%);
    --gradient-text: linear-gradient(90deg, #1b41fe 6%, #0b74fe 23%, #1a7dff 42%, #1bbafe 59%, #0af7ff 81%);
    --gradient-border: linear-gradient(90deg, #012bfe 6%, #00f7ff 81%);
    --glow: 0 0 30px #012dfd40, 0 0 60px #016cfb26;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}

body {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(12, 12, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    display: block;
    height: 36px;
    width: auto;
    max-width: 160px;
}

.logo h2 {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-secondary);
    border-radius: 12px;
    box-shadow: var(--glow);
    list-style: none;
    min-width: 200px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    border: 1px solid var(--border-accent);
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    display: block;
    color: var(--text-primary);
}

.dropdown-menu a:hover {
    background: rgba(1, 108, 251, 0.12);
    color: var(--accent-color);
}

.arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow,
.dropdown.active .arrow {
    transform: rotate(180deg);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    box-shadow: var(--glow);
}

.btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 0 40px #016cfb40;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    display: block;
}

/* Hero Section */
.hero {
    padding: 9rem 0 5.5rem;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 15% 20%, rgba(1, 43, 254, 0.28), transparent 55%),
        radial-gradient(ellipse 70% 50% at 90% 30%, rgba(0, 247, 255, 0.14), transparent 50%),
        radial-gradient(ellipse at bottom, rgba(1, 108, 251, 0.08), transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
    max-width: none;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.hero-title .gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    max-width: none;
}

.hero-meta-item {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(12, 12, 18, 0.85);
    border: 1px solid var(--border-color);
}

.hero-meta-item strong {
    display: block;
    margin-bottom: 0.25rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.95rem;
}

.hero-meta-item span {
    color: var(--text-light);
    font-size: 0.82rem;
}

.hero-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-panel-glow {
    position: absolute;
    inset: 10% -5% -5% 10%;
    background: radial-gradient(circle at center, rgba(1, 108, 251, 0.35), transparent 65%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

.hero-panel-card {
    position: relative;
    z-index: 1;
    background:
        linear-gradient(var(--bg-secondary), var(--bg-secondary)) padding-box,
        var(--gradient-border) border-box;
    border: 1px solid transparent;
    border-radius: 1.25rem;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 0 40px rgba(1, 108, 251, 0.12);
}

.hero-panel-main h3 {
    font-size: 1.45rem;
    margin: 0.35rem 0 0.65rem;
    color: #fff;
}

.hero-panel-main p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.hero-panel-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.hero-panel-stats div {
    padding: 0.85rem 0.7rem;
    border-radius: 0.9rem;
    background: rgba(10, 22, 40, 0.85);
    border: 1px solid rgba(0, 183, 215, 0.2);
    text-align: center;
}

.hero-panel-stats strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-panel-stats span {
    color: var(--text-light);
    font-size: 0.75rem;
}

.hero-panel-stack {
    display: grid;
    gap: 0.75rem;
}

.hero-panel-stack .hero-panel-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
}

.hero-panel-stack .hero-panel-card > span {
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: var(--gradient-1);
    box-shadow: var(--glow);
}

.hero-panel-stack strong {
    display: block;
    color: #fff;
    margin-bottom: 0.15rem;
    font-size: 0.98rem;
}

.hero-panel-stack p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.85rem;
}

.btn-hero {
    background: var(--gradient-1);
    color: #ffffff;
    padding: 0.9rem 1.85rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: opacity 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    box-shadow: var(--glow);
}

.btn-hero:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-content {
        text-align: center;
        max-width: 36rem;
        margin: 0 auto;
    }

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

    .hero-meta {
        justify-items: center;
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 750;
    margin-bottom: 0.85rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Journey Section */
.journey-section {
    background: var(--bg-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(1, 108, 251, 0.15);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Innovations Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Service Detail Sections */
.service-detail {
    padding: 6rem 0;
}

.service-detail.alt {
    background: var(--bg-secondary);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse > * {
    direction: ltr;
}

.service-tag {
    display: inline-block;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.service-detail-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.service-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--border-accent);
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(0, 183, 215, 0.1);
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: none;
}

.service-detail-visual {
    position: relative;
    height: 400px;
}

.visual-card {
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Banking Section */
.banking-section {
    background: var(--bg-secondary);
}

.banking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.banking-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.banking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(1, 108, 251, 0.15);
    border-color: var(--primary-color);
}

.banking-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.banking-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.banking-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.banking-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.banking-link:hover {
    gap: 1rem;
}

/* Payroll Section */
.payroll-section {
    padding: 6rem 0;
}

.payroll-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.payroll-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.payroll-features {
    margin-bottom: 2rem;
}

.payroll-feature {
    margin-bottom: 2rem;
}

.payroll-feature h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.payroll-feature p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.payroll-visual {
    position: relative;
    height: 400px;
}

/* Tools Section */
.tools-section {
    background: var(--bg-secondary);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tool-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tool-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.pricing-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-feature-item span {
    font-weight: 500;
    color: var(--text-primary);
}

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

/* CTA Section */
.cta-section {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #030306 0%, #050508 100%);
    color: var(--text-primary);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.35fr;
    gap: 2rem 2.5rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.footer-section h3 {
    font-size: 1.45rem;
    margin-bottom: 0.85rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-logo-link {
    display: inline-flex;
    margin-bottom: 0.85rem;
    text-decoration: none;
}

.footer-logo {
    display: block;
    height: 32px;
    width: auto;
    max-width: 150px;
}

.footer-section h4 {
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.65rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.25s ease;
    font-size: 0.94rem;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section .contact-info p {
    margin-bottom: 0.7rem;
}

.footer-section .contact-info strong {
    color: #fff;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: left;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
    }

    .footer-section h4 {
        font-size: 0.82rem;
        text-align: center;
    }

    .footer-section a,
    .footer-section p {
        font-size: 0.88rem;
    }

    .footer-section ul {
        text-align: center;
    }

    .footer-section:last-child {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 0.75rem;
        border-top: 1px solid var(--border-color);
    }

    .footer-section:last-child .contact-info p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .hero-meta {
        grid-template-columns: 1fr;
    }

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

    .hero-actions .btn-hero,
    .hero-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .cta-panel {
        padding: 1.5rem 1.15rem;
    }

    .pricing-card,
    .feature-card,
    .partner-step {
        padding: 1.25rem 1.1rem;
    }
}

/* PementsFlow Stats Section */
.pementsflow-stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pementsflow-stats-section .section-tag,
.pementsflow-stats-section .section-title,
.pementsflow-stats-section .section-description {
    color: white;
}

.pementsflow-stats-section .stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pementsflow-stats-section .stat-number {
    color: white;
    -webkit-text-fill-color: white;
}

.pementsflow-stats-section .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.pementsflow-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pementsflow-cta .btn-secondary {
    background: var(--bg-secondary);
    color: var(--primary-color);
    border: 2px solid white;
}

.pementsflow-cta .btn-secondary:hover {
    background: transparent;
    color: white;
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-choose-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.why-choose-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Impact Section */
.impact-section {
    padding: 6rem 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-card {
    background: var(--gradient-1);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Featured Services Section */
.featured-services-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.featured-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.featured-service-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.featured-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.featured-service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.featured-service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.featured-service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.testimonials-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.testimonial-featured {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.testimonial-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
}

.testimonial-avatar {
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.avatar-placeholder-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 1rem;
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.8;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating .star {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonials-grid-compact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card-compact {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.testimonial-header-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-info-compact {
    display: flex;
    flex-direction: column;
}

.testimonial-info-compact strong {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-info-compact span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.testimonial-text-compact {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-rating-small {
    display: flex;
    gap: 0.2rem;
}

.testimonial-rating-small .star {
    color: #fbbf24;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.faq-item {
    background: var(--bg-secondary);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: none;
    overflow: hidden;
    transition: border-color 0.3s ease;
    border: 1px solid var(--border-color);
}

.faq-item:hover {
    border-color: var(--border-accent);
    box-shadow: none;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Updated CTA Section */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* BuckBox Section */
.buckbox-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.buckbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.buckbox-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.buckbox-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.buckbox-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.buckbox-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.buckbox-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-wrapper {
        padding: 0.85rem 0;
        position: relative;
    }

    .logo-img {
        height: 30px;
        max-width: 140px;
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100%;
        max-height: calc(100dvh - 64px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.35rem;
        margin: 0;
        padding: 1.25rem 1.25rem 2rem;
        background:
            radial-gradient(ellipse 80% 40% at 50% 0%, rgba(1, 108, 251, 0.18), transparent 55%),
            rgba(5, 5, 8, 0.98);
        backdrop-filter: blur(24px);
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu > li {
        width: 100%;
        list-style: none;
    }

    .nav-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        padding: 1rem 1.15rem;
        font-size: 1.05rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        color: var(--text-secondary);
        border-radius: 0.85rem;
        text-align: center;
        border: 1px solid transparent;
        transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .nav-menu > li > a:hover,
    .nav-menu > li > a.active {
        color: var(--accent-color);
        background: rgba(1, 108, 251, 0.12);
        border-color: rgba(0, 183, 215, 0.25);
    }

    .nav-menu > li.dropdown > a .arrow {
        font-size: 0.65rem;
        opacity: 0.7;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 1px solid rgba(255, 255, 255, 0.06);
        background: rgba(12, 12, 18, 0.95);
        border-radius: 0.85rem;
        margin: 0.15rem 0 0.5rem;
        padding: 0.4rem;
        min-width: 0;
        width: 100%;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.2rem;
    }

    /* Prevent sticky hover menus on touch devices */
    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.2rem;
    }

    .dropdown-menu li {
        width: 100%;
    }

    .dropdown-menu a {
        display: block;
        width: 100%;
        padding: 0.8rem 0.65rem;
        border-radius: 0.65rem;
        color: var(--text-light);
        text-align: center;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .dropdown-menu a:hover {
        background: rgba(0, 183, 215, 0.12);
        color: var(--accent-color);
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 0.65rem;
        background: rgba(255, 255, 255, 0.03);
    }

    .menu-toggle.active {
        border-color: rgba(0, 183, 215, 0.45);
        background: rgba(1, 108, 251, 0.12);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero {
        padding: 6.5rem 0 3rem;
    }

    .hero-title {
        font-size: clamp(1.85rem, 7vw, 2.4rem);
    }

    .service-detail-content,
    .payroll-content {
        grid-template-columns: 1fr;
    }

    .service-detail-content.reverse {
        direction: ltr;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

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

    .pementsflow-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .pementsflow-cta .btn-primary,
    .pementsflow-cta .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .why-choose-grid,
    .featured-services-grid,
    .impact-grid,
    .buckbox-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-showcase {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons .btn-hero,
    .cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.75rem 1.5rem;
        text-align: left;
    }

    .footer-section.footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 1.25rem;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 0.35rem;
    }

    .footer-logo-link {
        justify-content: center;
        width: 100%;
    }

    .footer-section.footer-brand p,
    .footer-section.footer-brand a {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .footer-section h4 {
        text-align: center;
    }

    .footer-section ul {
        text-align: center;
        padding: 0;
    }

    .footer-section:last-child {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }

    .footer-section:last-child .contact-info p {
        margin-left: auto;
        margin-right: auto;
        max-width: 360px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-detail-text h2 {
        font-size: 2rem;
    }

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

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

    .banking-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-detail-text h2 {
        font-size: 2rem;
    }

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

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

    .banking-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
}

/* Page-specific styles */
.page-header {
    padding: 6.5rem 0 3rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    text-align: left;
    margin-top: 70px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(1, 108, 251, 0.12), transparent 70%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.page-content {
    padding: 4rem 0;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.content-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
}

.content-section ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.content-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 183, 215, 0.5);
}

.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-elevated);
    color: var(--text-primary);
}

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

/* Simple text layouts + designed cards */
.simple-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.simple-list-item,
.feature-card {
    padding: 1.5rem;
    border-radius: 1.25rem;
    background:
        linear-gradient(var(--bg-secondary), var(--bg-secondary)) padding-box,
        var(--gradient-border) border-box;
    border: 1px solid transparent;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 0 30px rgba(1, 108, 251, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.simple-list-item:hover,
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.feature-grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid.three-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid.four-col {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-index {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-color);
}

.simple-list-item h3,
.simple-service h3,
.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 650;
    margin-bottom: 0.65rem;
    color: var(--text-primary);
}

.simple-list-item p,
.simple-service p,
.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 0.98rem;
}

.simple-service {
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 1.25rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.simple-service:last-child {
    margin-bottom: 0;
}

.simple-checklist,
.pricing-checks {
    list-style: none;
    max-width: none;
    margin: 0;
    padding: 0;
}

.simple-checklist li,
.pricing-checks li {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.simple-checklist li:last-child,
.pricing-checks li:last-child {
    border-bottom: none;
}

.simple-checklist li::before,
.pricing-checks li::before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: 700;
}

.pricing-panel,
.cta-panel {
    max-width: 820px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 1.5rem;
    background:
        linear-gradient(180deg, rgba(6, 24, 48, 0.9), rgba(12, 12, 18, 0.95));
    border: 1px solid var(--border-accent);
    box-shadow: var(--glow);
}

.pricing-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.cta-section {
    background: var(--bg-primary);
    border-top: none;
    padding: 4.5rem 0;
}

.cta-panel .cta-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 0.85rem;
    background: none;
    -webkit-text-fill-color: unset;
    color: #fff;
}

.cta-panel .section-tag {
    margin-bottom: 0.75rem;
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--border-accent);
}

.innovations-section,
.featured-services-section,
.payroll-section {
    background: var(--bg-primary);
}

.banking-section,
.pricing-section,
.why-choose-section,
.faq-section {
    background: var(--bg-secondary);
}

.payroll-section .section-header,
.innovations-section .section-header {
    margin-bottom: 2.5rem;
}

.contact-info a,
.content-section a {
    color: var(--accent-color);
}

.page-content {
    background: var(--bg-primary);
}

.page-content .content-section,
.page-content .simple-list-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 1.5rem;
}

.page-content .content-section {
    margin-bottom: 1.5rem;
}

.page-content .content-section h2 {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About page layouts */
.about-hero {
    padding-top: 8.5rem;
}

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

.info-card {
    padding: 1.2rem 1.25rem;
    border-radius: 1.1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.info-card:hover {
    border-color: var(--border-accent);
    box-shadow: 0 0 28px rgba(1, 108, 251, 0.15);
    transform: translateY(-3px);
}

.info-card span {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--accent-color);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.info-card strong {
    color: #fff;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.45;
    word-break: break-word;
}

.info-card a {
    color: var(--accent-color);
    text-decoration: none;
}

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

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

/* Partner page */
.partner-compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
    align-items: stretch;
}

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

.partner-compare .pricing-card.featured:hover {
    transform: translateY(-5px);
}

.partner-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.partner-step {
    position: relative;
    padding: 1.6rem 1.4rem;
    border-radius: 1.25rem;
    background:
        linear-gradient(var(--bg-secondary), var(--bg-secondary)) padding-box,
        var(--gradient-border) border-box;
    border: 1px solid transparent;
    box-shadow: 0 0 30px rgba(1, 108, 251, 0.08);
}

.partner-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
    padding: 0 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: var(--gradient-1);
    box-shadow: var(--glow);
}

.partner-step h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.55rem;
}

.partner-step p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.partner-step a {
    color: var(--accent-color);
}

@media (max-width: 968px) {
    .partner-compare,
    .partner-steps {
        grid-template-columns: 1fr;
    }
}

/* Pricing page cards */
.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.5rem;
    border-radius: 1.4rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-accent);
    box-shadow: 0 0 36px rgba(1, 108, 251, 0.18);
}

.pricing-card.featured {
    background:
        linear-gradient(var(--bg-elevated), var(--bg-elevated)) padding-box,
        var(--gradient-border) border-box;
    border: 1px solid transparent;
    box-shadow: var(--glow);
    transform: translateY(-8px);
}

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

.pricing-badge {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(1, 108, 251, 0.25);
    border: 1px solid rgba(0, 183, 215, 0.35);
}

.pricing-card.featured .pricing-badge {
    background: var(--gradient-1);
    border: none;
}

.pricing-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.55rem;
    color: #fff;
}

.pricing-amount {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 0.55rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-note {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    min-height: 3.2rem;
}

.pricing-card .pricing-checks {
    margin: 0 0 1.5rem;
    flex: 1;
}

.pricing-card .pricing-checks li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.94rem;
}

.pricing-card .btn-hero,
.pricing-card .btn-secondary {
    width: 100%;
    text-align: center;
}

@media (max-width: 968px) {
    .pricing-plans {
        grid-template-columns: 1fr;
    }

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

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

    .pricing-note {
        min-height: 0;
    }
}

@media (max-width: 968px) {
    .feature-grid,
    .feature-grid.two-col,
    .feature-grid.three-col,
    .feature-grid.four-col,
    .simple-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .hero-meta {
        grid-template-columns: 1fr;
    }

    .partner-compare,
    .partner-steps,
    .pricing-plans {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .feature-grid,
    .feature-grid.two-col,
    .feature-grid.three-col,
    .feature-grid.four-col,
    .simple-list-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .hero-meta {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .cta-buttons {
        flex-direction: column;
    }

    .hero-actions .btn-hero,
    .hero-actions .btn-secondary,
    .cta-buttons .btn-hero,
    .cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .section-header {
        text-align: center;
        padding: 0 0.25rem;
    }

    .page-header {
        padding: 5.5rem 0 2rem;
        text-align: center;
    }

    .page-header h1 {
        font-size: 1.9rem;
    }

    .page-header p {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-card,
    .pricing-card,
    .partner-step {
        width: 100%;
    }

    .dropdown.active .dropdown-menu {
        grid-template-columns: 1fr;
    }
}

