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

:root {
    --primary-blue: #5bc01a;
    --primary-blue-dark: #5bc01a;
    --primary-blue-light: #49a6c8;
    --accent-green: #49a6c8;
    --accent-green-light: #6bb8d4;
    --text-dark: #0f172a;
    --text-gray: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #f0fdf4 100%);
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

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

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container a {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-container a:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.logo-image {
    height: 55px;
    width: auto;
    display: block;
}

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

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

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}

.dropdown-toggle::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
    color: var(--primary-blue);
    background: rgba(23, 49, 93, 0.05);
    transform: translateY(-1px);
    outline: none;
}

.dropdown.active .dropdown-toggle {
    color: var(--primary-blue);
    background: rgba(23, 49, 93, 0.05);
}

.dropdown-toggle:hover::before,
.dropdown-toggle:focus::before,
.dropdown.active .dropdown-toggle::before {
    transform: scaleX(1);
}

.dropdown-toggle .arrow {
    font-size: 10px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-gray);
    margin-left: 2px;
}

.dropdown.active .dropdown-toggle .arrow {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    min-width: 260px;
    max-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 8px 0;
    margin: 0;
    list-style: none !important;
    list-style-type: none !important;
    overflow: hidden;
}

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

.dropdown-menu li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}

.dropdown-menu li::before,
.dropdown-menu li::after {
    display: none !important;
    content: none !important;
}

.dropdown-menu li::marker {
    display: none !important;
    content: none !important;
}

.dropdown-item {
    display: block;
    padding: 11px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    position: relative;
    line-height: 1.5;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(23, 49, 93, 0.05) 0%, rgba(23, 49, 93, 0.02) 100%);
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
    padding-left: 23px;
}

.dropdown-item:active {
    background: linear-gradient(90deg, rgba(23, 49, 93, 0.1) 0%, rgba(23, 49, 93, 0.05) 100%);
}

.dropdown-item:first-child {
    margin-top: 0;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

/* Mobile menu toggle (hamburger) - hidden on desktop */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s ease;
    z-index: 10001;
    position: relative;
}
.menu-toggle:hover {
    background: rgba(23, 49, 93, 0.08);
}
.menu-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
header.nav-open .menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
header.nav-open .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}
header.nav-open .menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    header.nav-open {
        z-index: 9999;
    }
    .menu-toggle {
        display: flex;
    }
    .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        min-height: 100vh;
        min-height: 100dvh;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        padding: 88px 24px 32px;
        z-index: 9998;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        box-shadow: none;
    }
    header.nav-open .header-nav {
        display: flex;
    }
    header.nav-open .header-nav > .dropdown,
    header.nav-open .header-nav > .header-link,
    header.nav-open .header-nav > .cta-button {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        flex-shrink: 0;
    }
    header.nav-open .header-nav > .dropdown {
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        padding-bottom: 12px;
        margin-bottom: 4px;
    }
    header.nav-open .header-nav > .header-link {
        margin-top: 4px;
        margin-bottom: 4px;
    }
    header.nav-open .header-nav > .cta-button {
        margin-top: 16px;
    }
    header.nav-open .header-nav .dropdown {
        width: 100%;
        max-width: 320px;
    }
    header.nav-open .header-nav .dropdown-toggle {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    header.nav-open .header-nav .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        min-width: auto;
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        transition: max-height 0.3s ease;
    }
    header.nav-open .header-nav .dropdown.active .dropdown-menu {
        max-height: 70vh;
        overflow-y: auto;
        padding: 8px 0;
        border-top: 1px solid rgba(226, 232, 240, 0.8);
    }
    header.nav-open .header-nav .header-link,
    header.nav-open .header-nav .cta-button {
        width: 100%;
        max-width: 320px;
        text-align: center;
        padding: 14px 20px;
        font-size: 16px;
    }
}

.header-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.header-link::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.header-link:hover {
    color: var(--primary-blue);
    background: rgba(23, 49, 93, 0.05);
    transform: translateY(-1px);
}

.header-link:hover::before {
    transform: scaleX(1);
}

.header-link:active {
    transform: translateY(0);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    letter-spacing: 0.3px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
}

.cta-button-white {
    background: white;
    color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.cta-button-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 0px 20px 0px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 30%, #f0fdf4 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(23, 49, 93, 0.08) 0%, transparent 70%);
    animation: pulse 20s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 32px;
    margin-top: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease;
}

.badge-icon {
    font-size: 18px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
    padding-top:80px;
    padding-bottom:80px;
    }
    
    .hero-left{
    max-width:600px;
    }
    
    .hero-features{
    list-style:none;
    padding:0;
    margin:20px 0;
    font-size:16px;
    color:#334155;
    }
    
    .hero-features li{
    margin-bottom:8px;
    }
    
    .hero-right{
    position:relative;
    text-align:center;
    }
    
    .hero-dashboard{
    width:100%;
    max-width:600px;
    border-radius:16px;
    }
    
    .payment-icons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:20px;
    opacity:0.8;
    }
    
    .payment-icons img{
    height:28px;
    }
    
    @media (max-width:900px){
    
    .hero-grid{
    grid-template-columns:1fr;
    text-align:center;
    }
    
    .hero-left{
    margin:auto;
    }
    
    .hero-right{
    margin-top:40px;
    }
    
    }

    .hero-features{
        display:inline-flex;
        flex-direction:column;
        gap:12px;
        margin:20px auto 50px auto;
        padding:0;
        list-style:none;
        text-align:left;
        }
        
        .hero-features li{
        display:flex;
        align-items:center;
        gap:10px;
        font-size:16px;
        color:#334155;
        font-weight:500;
        }
        
        .feature-icon{
        display:flex;
        align-items:center;
        justify-content:center;
        width:22px;
        height:22px;
        background:#22c55e;
        color:#fff;
        border-radius:50%;
        font-size:13px;
        font-weight:bold;
        flex-shrink:0;
        }

.hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text-dark);
    line-height: 1.1;
    position: relative;
    z-index: 1;
    letter-spacing: -1.5px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin: 0 auto 48px;
    font-weight: 400;
    position: relative;
    z-index: 1;
    max-width: 800px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 20px;

    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    padding: 18px 44px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

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

.cta-primary:hover::before {
    left: 100%;
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-primary:hover .cta-arrow {
    transform: translateX(4px);
}

.cta-secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 18px 44px;
    font-size: 16px;
    font-weight: 600;
}

.cta-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary-blue-dark);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    padding: 40px 0;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(148, 163, 184, 0.3), transparent);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-blue), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-green), transparent);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--primary-blue-light), transparent);
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Section Styles */
section {
    padding: 100px 20px;
    position: relative;
}

.features-section {
    background: transparent;
    background-color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -1px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    border-radius: 3px;
}

.section-description {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 32px auto 0;
    line-height: 1.7;
    font-weight: 400;
}

.section-title-small {
    margin-bottom: 40px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(23, 49, 93, 0.15);
    border-color: rgba(23, 49, 93, 0.3);
}

.card-featured {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border: 2px solid rgba(23, 49, 93, 0.2);
}

.card-featured::before {
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green), var(--primary-blue-light));
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green-light) 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    z-index: 2;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.feature-tag {
    display: inline-block;
    background: rgba(23, 49, 93, 0.08);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card:hover .feature-tag {
    background: rgba(23, 49, 93, 0.15);
    transform: translateY(-2px);
}

.card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green-light) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Features Detailed Section */
.features-detailed {
    background: var(--bg-light);
    padding: 100px 20px;
}

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

.feature-item {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-link {
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: var(--primary-blue-light);
    transform: translateX(4px);
}

.features-cta {
    text-align: center;
    margin-top: 50px;
}

.card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
    margin-top: 8px;
}

.card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

/* Dashboard showcase (hero-style preview with artwork) */
.dashboard-showcase {
    position: relative;
    padding: 72px 20px 96px;
    overflow: hidden;
}

.dashboard-showcase-sky {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, #bfdbfe 0%, #dbeafe 22%, #e0f2fe 45%, #f0f9ff 72%, #ffffff 100%);
    pointer-events: none;
}

.dashboard-showcase-sky::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 55%;
    top: -8%;
    left: -10%;
    background:
        radial-gradient(ellipse 420px 180px at 18% 42%, rgba(255, 255, 255, 0.95), transparent 55%),
        radial-gradient(ellipse 380px 160px at 72% 28%, rgba(255, 255, 255, 0.88), transparent 50%),
        radial-gradient(ellipse 300px 120px at 48% 58%, rgba(255, 255, 255, 0.75), transparent 48%);
    opacity: 0.95;
}

.dashboard-showcase-sky::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 78%, rgba(91, 192, 26, 0.12) 0%, transparent 3px),
        radial-gradient(circle at 88% 62%, rgba(73, 166, 200, 0.15) 0%, transparent 2px),
        radial-gradient(circle at 64% 18%, rgba(91, 192, 26, 0.1) 0%, transparent 2px),
        radial-gradient(circle at 34% 22%, rgba(73, 166, 200, 0.12) 0%, transparent 2px);
    background-size: 100% 100%;
    opacity: 0.9;
}

.dashboard-showcase-inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
}

.dashboard-showcase-head {
    text-align: center;
    margin-bottom: 36px;
}

.dashboard-showcase-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4.2vw, 44px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.22;
    letter-spacing: -0.03em;
    margin: 0 0 28px;
}

.dashboard-showcase-accent {
    color: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue) 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-showcase-trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 36px;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

.dashboard-showcase-trust li {
    position: relative;
    padding-left: 28px;
    text-align: left;
    min-height: 24px;
}

.dashboard-showcase-trust li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #22c55e 100%);
    color: white;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(91, 192, 26, 0.35);
}

.dashboard-showcase-trust-full {
    flex-basis: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-left: 0;
}

.dashboard-showcase-trust-full::before {
    position: static;
    transform: none;
    flex-shrink: 0;
}

@media (min-width: 520px) {
    .dashboard-showcase-trust-full {
        flex-basis: auto;
        display: block;
        position: relative;
        padding-left: 28px;
        text-align: left;
    }

    .dashboard-showcase-trust-full::before {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}

.dashboard-showcase-figure {
    margin: 0 0 32px;
    padding: 0;
}

.dashboard-showcase-devices {
    position: relative;
    max-width: 960px;
    margin: 0 auto 40px;
    padding: 0 8px 56px;
}

.dashboard-showcase-web-frame {
    border-radius: 14px;
    overflow: hidden;
    background: #0f172a;
    box-shadow:
        0 28px 80px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(226, 232, 240, 0.9);
    line-height: 0;
}

.dashboard-showcase-web-img {
    display: block;
    width: 100%;
    height: auto;
}

.dashboard-showcase-phone-frame {
    position: absolute;
    width: min(26%, 220px);
    right: clamp(8px, 3vw, 32px);
    bottom: 8px;
    z-index: 2;
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 22px 55px rgba(15, 23, 42, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.9);
    line-height: 0;
}

.dashboard-showcase-phone-img {
    display: block;
    width: 100%;
    height: auto;
}

.dashboard-showcase-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 20px;
    margin-bottom: 20px;
}

.dashboard-showcase-cta {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 8px 28px rgba(91, 192, 26, 0.35);
}

.dashboard-showcase-stores {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 20px;
    border-radius: 10px;
    background: #0f172a;
    color: #f8fafc;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    line-height: 1.25;
    text-align: center;
    max-width: 200px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.store-badge:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
    color: #fff;
}

.dashboard-showcase-rate {
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    color: #334155;
    margin: 0;
}

.dashboard-showcase-rate a {
    color: var(--primary-blue);
    font-weight: 800;
    text-decoration: none;
    font-size: 1.1em;
}

.dashboard-showcase-rate a:hover {
    text-decoration: underline;
}

/* Dashboard preview — two-column (steps + mobile) */
.dashboard-preview-section {
    padding: 88px 20px 96px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
}

.dashboard-preview-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 4.8vw, 48px);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin: 0 0 56px;
    line-height: 1.2;
}

.dashboard-preview-title-keyword {
    position: relative;
    display: inline-block;
}

.dashboard-preview-title-keyword::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -14px;
    width: 72px;
    height: 5px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
}

.dashboard-preview-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(260px, 1.05fr);
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
}

.dashboard-preview-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dashboard-preview-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 24px;
    background: var(--bg-white);
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 4px 22px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.dashboard-preview-step:hover {
    box-shadow: 0 14px 44px rgba(15, 23, 42, 0.1);
    transform: translateY(-3px);
    border-color: rgba(91, 192, 26, 0.28);
}

.dashboard-preview-step-num {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(145deg, #86efac 0%, var(--primary-blue) 42%, #15803d 100%);
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(91, 192, 26, 0.32);
    font-family: 'Poppins', sans-serif;
}

.dashboard-preview-step-heading {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.dashboard-preview-step-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-gray);
}

.dashboard-preview-visual-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
}

.dashboard-preview-device {
    margin: 0;
    width: 100%;
    max-width: 300px;
}

.dashboard-preview-screen {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 28px;
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.04),
        0 32px 64px rgba(15, 23, 42, 0.14);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

@media (max-width: 900px) {
    .dashboard-preview-section {
        padding: 64px 20px 72px;
    }

    .dashboard-preview-title {
        margin-bottom: 40px;
    }

    .dashboard-preview-title-keyword::after {
        bottom: -10px;
    }

    .dashboard-preview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dashboard-preview-visual-wrap {
        order: -1;
    }

    .dashboard-preview-device {
        max-width: min(280px, 72vw);
    }
}

/* Dashboard Preview Section (legacy layout — e.g. index2) */
.dashboard-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.workflow {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.workflow-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.workflow-step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.workflow-step-content {
    flex: 1;
}

.workflow-step-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.workflow-step-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

.dashboard-preview {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.dashboard-mockup {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 0;
    min-height: 450px;
    overflow: hidden;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 450px;
}

.dashboard-sidebar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.dashboard-sidebar h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.dashboard-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.dashboard-nav a.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 600;
}

.dashboard-content {
    background: var(--bg-white);
    padding: 32px;
    overflow-y: auto;
}

.dashboard-content h3 {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.outstanding-amount {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.stat-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 16px 20px;
    border-radius: 10px;
    margin: 12px 0;
    border: 1px solid rgba(226, 232, 240, 0.8);
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.payments-chart {
    margin-top: 24px;
}

.payments-chart h4 {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.chart-container {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    margin-top: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 140px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.chart-bars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        rgba(226, 232, 240, 0.3) 0px,
        rgba(226, 232, 240, 0.3) 20px,
        transparent 20px,
        transparent 40px
    );
}

.chart-bar-item {
    flex: 1;
    background: linear-gradient(to top, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 6px 6px 0 0;
    position: relative;
    min-width: 0;
    max-width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(23, 49, 93, 0.2);
    box-sizing: border-box;
}

.chart-bar-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 49, 93, 0.3);
}

.chart-bar-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 6px 6px 0 0;
}

.bar-value {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.chart-bar-item:hover .bar-value {
    opacity: 1;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
    width: 100%;
    box-sizing: border-box;
}

.chart-labels span {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Benefits Section */
.benefit-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(16, 185, 129, 0.3);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(360deg);
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

/* Audience Section */
.audience-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.audience-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(23, 49, 93, 0.2);
}

.audience-avatar {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 48px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.audience-card:hover .audience-avatar {
    transform: scale(1.1);
}

.audience-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    margin-bottom: 12px;
}

.audience-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-top: 8px;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.trust-section .section-title {
    color: white;
}

.trust-section .section-title::after {
    background: linear-gradient(90deg, white, var(--accent-green-light));
}

.trust-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 24px auto 60px;
    line-height: 1.7;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ISO / IEC 27001:2022 — homepage compliance band */
.iso-27001-section {
    padding: 72px 20px;
    background: linear-gradient(165deg, #f8fafc 0%, #ecfdf5 38%, #f0f9ff 100%);
    position: relative;
}

.iso-27001-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(91, 192, 26, 0.08), transparent 55%);
    pointer-events: none;
}

.iso-27001-card {
    position: relative;
    /* max-width: 1040px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(200px, 300px) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
    background: var(--bg-white);
    border-radius: 24px;
    padding: clamp(36px, 4vw, 52px) clamp(28px, 4vw, 56px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(226, 232, 240, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.95);
}

.iso-27001-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
}

.iso-27001-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.iso-27001-badge {
    margin: 0;
    padding: clamp(1px, 3vw, 2px);
    max-width: 400px;
    width: 100%;
    background: linear-gradient(165deg, #f1f5f9 0%, #ffffff 55%);
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.iso-27001-badge-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    vertical-align: middle;
}

.iso-27001-content {
    text-align: left;
    min-width: 0;
    max-width: 36rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.iso-27001-eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-blue-light);
    margin: 0 0 12px;
}

.iso-27001-heading {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 10px;
    letter-spacing: -0.03em;
    line-height: 1.25;
    font-family: 'Poppins', sans-serif;
}

.iso-27001-cert-ref {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
    letter-spacing: 0.01em;
}

.iso-27001-copy {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-gray);
    margin: 0 0 18px;
}

.iso-27001-points {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}

.iso-27001-points li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.55;
}

.iso-27001-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
}

.iso-27001-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue-light);
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
    margin-top: 4px;
    align-self: flex-start;
}

.iso-27001-cta:hover {
    color: var(--primary-blue);
    gap: 10px;
}

.hero-badge--iso {
    margin-top: 0;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-badge-iso-icon {
    display: flex;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.hero-badge-iso-text {
    line-height: 1.45;
    text-align: left;
}

.hero-badge-iso-text strong {
    color: var(--text-dark);
}

.footer-cert {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(148, 163, 184, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    line-height: 1.5;
}

.footer-cert-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(91, 192, 26, 0.35), rgba(73, 166, 200, 0.4));
    color: #e2e8f0;
    font-size: 12px;
    font-weight: 800;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 100px 20px;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 232, 240, 0.5), transparent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 48px 36px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(23, 49, 93, 0.15);
    border-color: rgba(23, 49, 93, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    border-color: var(--primary-blue);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(23, 49, 93, 0.3);
    position: relative;
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 24px;
    pointer-events: none;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 24px 70px rgba(23, 49, 93, 0.4);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.featured::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.5));
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    transform: scale(1.05);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(23, 49, 93, 0.3);
}

.pricing-card.featured::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--accent-green), var(--accent-green-light));
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 25px 50px rgba(23, 49, 93, 0.4);
}

.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-features,
.pricing-card.featured .pricing-plan {
    color: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-light) 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    z-index: 10;
}

.pricing-plan {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    margin-top: 8px;
}

.pricing-card.featured .pricing-plan {
    color: white;
}

.pricing-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
    justify-content: center;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1;
}

.pricing-card.featured .pricing-price {
    color: white;
}

.pricing-period {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-gray);
    opacity: 0.8;
}

.pricing-card.featured .pricing-period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-limit {
    color: var(--text-gray);
    margin-bottom: 32px;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.pricing-card.featured .pricing-limit {
    color: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding-left: 28px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
    font-size: 16px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.95);
}

.pricing-card.featured .pricing-features li::before {
    color: var(--accent-green-light);
    background: #ffffff;
}

.pricing-button {
    margin-top: 32px;
    width: 100%;
    text-align: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

.pricing-note {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.pricing-note p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Payment gateway promo (below pricing plans) */
.pg-promo-card {
    max-width: 960px;
    margin: 56px auto 0;
    background: var(--bg-white);
    border-radius: 24px;
    padding: 40px 48px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(226, 232, 240, 0.85);
    position: relative;
    overflow: hidden;
}

.pg-promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
}

.pg-promo-inner {
    display: grid;
    grid-template-columns: minmax(200px, 1fr) minmax(280px, 1.2fr);
    gap: 40px;
    align-items: center;
}

.pg-promo-visual {
    text-align: center;
}

.pg-promo-illustration {
    max-width: 220px;
    margin: 0 auto 16px;
}

.pg-promo-svg {
    width: 100%;
    height: auto;
    display: block;
}

.pg-promo-visual-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.02em;
}

.pg-promo-content {
    text-align: left;
}

.pg-promo-lead {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.65;
    margin: 0 0 20px;
    font-weight: 500;
}

.pg-promo-from {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0 0 8px;
}

.pg-promo-rate {
    margin: 0 0 28px;
    line-height: 1.2;
}

.pg-promo-pct {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.04em;
}

.pg-promo-per {
    font-size: 17px;
    color: var(--text-gray);
    font-weight: 500;
    margin-left: 10px;
    vertical-align: middle;
}

.pg-promo-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 24px;
}

.pg-promo-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-blue-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.pg-promo-link:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 80px 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    margin-bottom: 8px;
    font-weight: 500;
    color: white;
}

.footer-text {
    margin-top: 12px;
    font-size: 14px;
    opacity: 0.7;
    font-weight: 400;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .dashboard-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dashboard-layout {
        grid-template-columns: 200px 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .pricing-card.featured {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .dashboard-showcase {
        padding: 52px 16px 72px;
    }

    .dashboard-showcase-head {
        margin-bottom: 28px;
    }

    .dashboard-showcase-trust {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }

    .dashboard-showcase-trust li {
        padding-left: 28px;
    }

    .dashboard-showcase-trust-full {
        flex-basis: auto;
        display: block;
        position: relative;
        padding-left: 28px;
    }

    .dashboard-showcase-trust-full::before {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .dashboard-showcase-devices {
        padding: 0 0 32px;
        margin-bottom: 28px;
    }

    .dashboard-showcase-web-frame {
        border-radius: 12px;
    }

    .dashboard-showcase-phone-frame {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(200px, 46vw);
        max-width: 200px;
        margin: -36px auto 0;
        border-radius: 20px;
    }

    .dashboard-showcase-actions {
        flex-direction: column;
    }

    .dashboard-showcase-cta {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .dashboard-layout {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        border-radius: 0;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .header-link {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero {
        padding: 100px 20px 80px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 24px;
    }
    
    .hero-title {
        font-size: 42px;
        letter-spacing: -1.5px;
        line-height: 1.2;
    }
    
    .gradient-text {
        display: block;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 36px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 320px;
        padding: 16px 32px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        padding: 32px 0;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .hero-stat-number {
        font-size: 32px;
    }
    
    .hero-stat-label {
        font-size: 13px;
    }
    
    .shape {
        opacity: 0.05;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .section-description {
        font-size: 18px;
        margin-top: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .card-features {
        margin-top: 16px;
        padding-top: 16px;
    }
    
    .feature-tag {
        font-size: 11px;
        padding: 3px 10px;
    }

    .iso-27001-section {
        padding: 48px 20px;
    }

    .iso-27001-card {
        grid-template-columns: 1fr;
        padding: 28px 22px 32px;
        gap: 28px;
        text-align: center;
    }

    .iso-27001-visual {
        order: -1;
    }

    .iso-27001-badge {
        max-width: 400px;
        margin: 0 auto;
    }

    .iso-27001-content {
        text-align: center;
        max-width: none;
        align-items: center;
    }

    .iso-27001-cta {
        align-self: center;
    }

    .iso-27001-points li {
        text-align: left;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-5px);
    }
    
    .pricing-header {
        margin-bottom: 40px;
    }
    
    .pricing-subtitle {
        font-size: 16px;
    }
    
    .pricing-price {
        font-size: 40px;
    }
    
    .pricing-period {
        font-size: 16px;
    }
    
    .pricing-features li {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .pricing-note {
        margin-top: 40px;
        padding-top: 24px;
    }
    
    .pricing-note p {
        font-size: 14px;
    }

    .pg-promo-card {
        margin-top: 40px;
        padding: 32px 24px;
    }

    .pg-promo-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .pg-promo-content {
        text-align: center;
    }

    .pg-promo-cta {
        justify-content: center;
    }

    .pg-promo-pct {
        font-size: 40px;
    }

    .pg-promo-per {
        display: block;
        margin: 8px 0 0;
    }

    .logo-image {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .header-link {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .header-link::before {
        left: 12px;
        right: 12px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .card,
    .benefit-card,
    .audience-card,
    .pricing-card {
        padding: 28px 24px;
    }
}


.hero-actions{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    margin-top:30px;
    flex-wrap:wrap;
    }
    
    .hero-features{
    display:flex;
    flex-direction:column;
    gap:14px;
    list-style:none;
    padding:0;
    margin:0;
    margin-bottom: 30px;
    }
    
    .hero-features li{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:16px;
    color:#334155;
    }
    
    .feature-icon{
    width:22px;
    height:22px;
    background:#22c55e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:13px;
    }
    
    .hero-cta{
    display:flex;
    gap:18px;
    }
