:root {
    /* Color Palette based on official AWR Digital logo */
    --bg-color: #f8fafc; /* Crisp modern off-white background */
    --bg-alt: #ffffff; /* Pure white background for cards */
    --text-primary: #0f172a; /* Deep slate dark text */
    --text-secondary: #475569; /* Slate text for paragraphs */
    --accent-color: #0066FF; /* Electric royal blue from official logo */
    --accent-hover: #004ecc;
    --accent-glow: rgba(0, 102, 255, 0.15);
    --border-color: #e2e8f0;
    
    /* Typography variables with robust fallbacks */
    --font-en: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-km: "Kantumruy Pro", "Kantumruy", "Battambang", "Siemreap", "Nokora", "Preahvihear", sans-serif;
    --font-family: var(--font-en);
    
    /* Spacing & Sizes */
    --container-width: 1200px;
    --border-radius: 16px;
    --border-radius-lg: 32px;
}

/* Variable font classes */
.roboto-regular {
    font-family: var(--font-en);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.kantumruy-pro-regular {
    font-family: var(--font-km);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

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

/* Screen-reader only (visually hidden but accessible) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    scroll-behavior: smooth;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: font-family 0.2s ease;
}

main {
    flex: 1;
}

/* ============================================
   KHMER LANGUAGE SPECIFIC TYPOGRAPHY & SPACING
   ============================================ */
html[lang="km"] body,
html[lang="km"] input,
html[lang="km"] textarea,
html[lang="km"] select,
html[lang="km"] button,
html[lang="km"] .nav-links a,
html[lang="km"] .btn {
    font-family: var(--font-km);
}

html[lang="km"] body {
    line-height: 1.85;
    letter-spacing: normal;
}

html[lang="km"] p,
html[lang="km"] li,
html[lang="km"] span,
html[lang="km"] .footer-bio,
html[lang="km"] .section-subtitle,
html[lang="km"] .page-header-subtitle {
    line-height: 1.8;
}

html[lang="km"] .hero-title, 
html[lang="km"] .page-header-title {
    font-size: 2.8rem;
    line-height: 1.4;
    font-weight: 700;
}

html[lang="km"] .section-title {
    font-size: 1.85rem;
    line-height: 1.45;
}

html[lang="km"] h1,
html[lang="km"] h2,
html[lang="km"] h3,
html[lang="km"] h4,
html[lang="km"] h5,
html[lang="km"] h6 {
    font-family: var(--font-km);
    line-height: 1.45;
    letter-spacing: normal;
}

html[lang="km"] .feature-content h3,
html[lang="km"] .service-card h3,
html[lang="km"] .plan-card h3,
html[lang="km"] .blog-card-body h3 {
    font-size: 1.35rem;
    line-height: 1.45;
}

html[lang="km"] .btn {
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: normal;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.6rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    padding: 0.65rem 2rem;
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: white;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.btn-dark {
    background-color: #1a1a1a;
    color: white;
}

.btn-dark:hover {
    background-color: #333;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.header {
    padding: 1.5rem 0;
    position: relative;
    z-index: 100;
    background-color: transparent;
}

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

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.site-logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 0.25rem;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

/* Header Actions & Language Switcher */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.lang-switch-wrapper {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.lang-btn {
    background: none;
    border: none;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.15rem 0.35rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.lang-btn:hover {
    color: var(--accent-color);
}

.lang-btn.active {
    color: var(--accent-color);
    font-weight: 700;
}

.lang-divider {
    color: rgba(0, 0, 0, 0.25);
    font-size: 0.8rem;
    user-select: none;
    margin: 0 0.1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
}

/* Page Header */
.page-header {
    padding: 3.5rem 0 2.5rem;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, rgba(233, 232, 227, 0.6) 0%, transparent 100%);
}

.page-header-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.page-header-subtitle {
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.15rem;
}

/* Hero Section (Home) */
.hero {
    position: relative;
    padding: 3.5rem 0 2rem;
    text-align: center;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2.5rem;
    letter-spacing: -0.03em;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Hero Decorators */
.decorator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 0;
}

.deco-left {
    left: 5%;
}

.deco-right {
    right: 5%;
}

.vertical-line {
    width: 1px;
    height: 300px;
    background-color: rgba(0,0,0,0.1);
    margin-top: 1rem;
}

/* Curved Background Shape */
.hero-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-color: #e9e8e3;
    z-index: -1;
    border-bottom-left-radius: 50% 10%;
    border-bottom-right-radius: 50% 10%;
}

/* Services Intro */
.services-intro {
    padding: 5rem 0 3rem;
}

.icon-wrapper {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* Features (Zig-Zag) */
.features {
    padding: 3rem 0 6rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    padding-right: 2rem;
}

.feature-row.reverse .feature-content {
    padding-right: 0;
    padding-left: 2rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.feature-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.feature-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.03);
}

/* Services Grid Page */
.services-grid-section {
    padding: 3rem 0 6rem;
}

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

.service-card {
    background-color: var(--bg-alt);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    border-color: var(--accent-color);
}

.service-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: var(--accent-glow);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.service-card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Plans & Pricing Page */
.plans-section {
    padding: 3rem 0 6rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
    margin-top: 2rem;
}

.plan-card {
    background-color: var(--bg-alt);
    border-radius: var(--border-radius);
    padding: 3rem 2.2rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.plan-card.featured {
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0.5rem 0;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.plan-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.plan-features li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* About Page */
.about-section {
    padding: 3rem 0 6rem;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    text-align: center;
}

.stat-card {
    background-color: var(--bg-alt);
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

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

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

.value-card {
    background-color: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: center;
}

.value-card h3 {
    font-size: 1.25rem;
    margin: 1rem 0 0.5rem;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

/* About Page Extensions */
.about-founder-section {
    padding: 1rem 0 4rem;
}

.founder-card {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1.5px solid rgba(0, 102, 255, 0.25);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3.5rem;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.founder-avatar-wrapper {
    text-align: center;
    position: relative;
}

.founder-avatar-box {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0066FF 0%, #00C6FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.35);
    border: 4px solid #ffffff;
    position: relative;
}

.founder-avatar-initials {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    font-family: var(--font-en);
}

.founder-name {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.founder-role {
    font-size: 0.88rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.founder-bio-text h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.35;
}

.founder-bio-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

.founder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.5rem 0 2rem;
}

.founder-tag {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.95rem;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

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

.mission-vision-section {
    padding: 4.5rem 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.mv-card {
    background: var(--bg-alt);
    border-radius: var(--border-radius);
    padding: 3rem 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.1);
}

.mv-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 102, 255, 0.08);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.mv-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.pillars-section {
    padding: 4.5rem 0;
    background: rgba(248, 250, 252, 0.8);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.pillar-card {
    background: var(--bg-alt);
    border-radius: var(--border-radius);
    padding: 2.5rem 1.8rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pillar-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-color);
    box-shadow: 0 16px 36px rgba(0, 102, 255, 0.12);
}

.pillar-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.pillar-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.pillar-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.why-us-section {
    padding: 4.5rem 0;
}

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

.why-us-card {
    background: var(--bg-alt);
    border-radius: var(--border-radius);
    padding: 2rem 2.2rem;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
}

.why-us-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 102, 255, 0.09);
}

.why-us-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(0, 102, 255, 0.08);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-us-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.why-us-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

@media (max-width: 992px) {
    .founder-card {
        grid-template-columns: 1fr;
        padding: 2.5rem 2rem;
        text-align: center;
    }
    .founder-actions {
        justify-content: center;
    }
    .founder-tags {
        justify-content: center;
    }
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

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

/* Contact Page */
.contact-section {
    padding: 3rem 0 6rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(215, 122, 61, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.info-item a {
    color: var(--accent-color);
    font-weight: 500;
}

.contact-form-card {
    background-color: var(--bg-alt);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #ffffff;
}

/* Call to Action Banner */
.cta-banner {
    background-color: var(--accent-color);
    color: white;
    padding: 4rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin: 4rem auto;
    max-width: var(--container-width);
}

.cta-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-banner .btn {
    background-color: #1a1a1a;
    color: white;
}

.cta-banner .btn:hover {
    background-color: #333333;
}

/* Floating Quick Contact Widget */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.floating-options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-contact.open .floating-options {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.float-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.25rem;
    border-radius: 30px;
    font-size: 0.92rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.float-btn:hover {
    transform: translateX(-5px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.float-telegram {
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
}

.float-bot {
    background: linear-gradient(135deg, #0088cc 0%, #00d2ff 100%);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.35);
}

.float-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.float-call {
    background: linear-gradient(135deg, var(--accent-color) 0%, #b8622c 100%);
}

.floating-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(215, 122, 61, 0.45);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.floating-main-btn:hover {
    transform: scale(1.08);
    background-color: var(--accent-hover);
}

.floating-main-btn .icon-close {
    display: none;
}

.floating-contact.open .floating-main-btn .icon-chat {
    display: none;
}

.floating-contact.open .floating-main-btn .icon-close {
    display: block;
}

/* Pulsing effect on the main button */
@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

.floating-main-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    animation: pulse-ring 2.5s infinite ease-out;
    pointer-events: none;
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 0 3rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1050px;
    margin: 3rem auto 0;
}

.comp-card {
    background-color: var(--bg-alt);
    border-radius: var(--border-radius);
    padding: 3rem 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.comp-card.negative {
    background-color: rgba(241, 245, 249, 0.6);
    border-color: #cbd5e1;
}

.comp-card.highlight {
    border: 2px solid var(--accent-color);
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.12);
}

.comp-card-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.comp-card.highlight .comp-card-header {
    border-bottom-color: rgba(0, 102, 255, 0.15);
}

.comp-card-header h3 {
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.comp-card-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.comp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.comp-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.comp-list .icon-cross {
    color: #EF4444;
    font-weight: 900;
    font-size: 1.15rem;
    line-height: 1.2;
    flex-shrink: 0;
}

.comp-list .icon-check {
    color: #10B981;
    font-weight: 900;
    font-size: 1.15rem;
    line-height: 1.2;
    flex-shrink: 0;
}

/* Accepted Payment Methods Section (Enhanced with Real Logos) */
.payment-section {
    padding: 4rem 0 2.5rem;
    border-top: 1px solid var(--border-color);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    max-width: 1040px;
    margin: 2.5rem auto 2rem;
}

.payment-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.6rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

.payment-card-aba:hover::before { background: #004B87; }
.payment-card-acleda:hover::before { background: #CBA052; }
.payment-card-wing:hover::before { background: #73B728; }
.payment-card-binance:hover::before { background: #F3BA2F; }

.payment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.payment-card-aba:hover { border-color: rgba(0, 75, 135, 0.4); }
.payment-card-acleda:hover { border-color: rgba(203, 160, 82, 0.4); }
.payment-card-wing:hover { border-color: rgba(115, 183, 40, 0.4); }
.payment-card-binance:hover { border-color: rgba(243, 186, 47, 0.5); }

.payment-logo-container {
    height: 52px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-logo-container img {
    max-height: 48px;
    max-width: 160px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.04));
    transition: transform 0.25s ease;
}

.payment-logo-container svg {
    max-height: 44px;
    max-width: 160px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.04));
    transition: transform 0.25s ease;
}

.payment-card:hover .payment-logo-container img,
.payment-card:hover .payment-logo-container svg {
    transform: scale(1.05);
}

.payment-card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
}

.payment-name {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--text-primary);
}

.payment-tag {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.04);
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    letter-spacing: 0.3px;
}

.payment-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #059669;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
}

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

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

/* FAQ Section (Enhanced & Clean) */
.faq-section {
    padding: 5rem 0 6rem;
    position: relative;
}

.faq-filter-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin: 1.8rem auto 2.5rem;
    max-width: 900px;
}

.faq-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.15rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: var(--bg-alt);
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.faq-filter-btn svg {
    flex-shrink: 0;
    transition: stroke 0.2s ease;
}

.faq-filter-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-1px);
}

.faq-filter-btn.active {
    background: var(--accent-color);
    color: #ffffff;
    border-color: var(--accent-color);
    box-shadow: 0 4px 14px var(--accent-glow);
    transform: translateY(-1px);
}

.faq-filter-btn.active svg {
    stroke: #ffffff;
}

.faq-accordion {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.faq-item {
    background-color: var(--bg-alt);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.06);
}

.faq-item.active {
    border-color: var(--accent-color);
    border-left: 3.5px solid var(--accent-color);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
    padding: 1.35rem 1.7rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: inherit;
    transition: color 0.2s ease;
}

.faq-question-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex-grow: 1;
}

.faq-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-color);
    background: var(--accent-glow);
    padding: 0.18rem 0.6rem;
    border-radius: 999px;
    width: fit-content;
}

.faq-cat-badge svg {
    flex-shrink: 0;
}

.faq-item.active .faq-question {
    color: var(--accent-color);
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.08);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--accent-color);
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 1.7rem;
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.7;
}

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

.faq-answer p {
    margin-bottom: 0.4rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* FAQ Support Callout Box */
.faq-support-box {
    max-width: 880px;
    margin: 2.8rem auto 0;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.8rem 2.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.faq-support-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-support-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-support-text h4 {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.faq-support-text p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .faq-support-box {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
    }
    .faq-support-info {
        flex-direction: column;
        text-align: center;
    }
    .faq-question {
        padding: 1.2rem 1.3rem;
        font-size: 1rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 1.3rem 1.3rem;
    }
}

/* Industries Section */
.industries-section {
    padding: 5rem 0 3.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(241, 245, 249, 0.7) 100%);
}

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

.industry-card {
    background: var(--bg-alt);
    border-radius: var(--border-radius);
    padding: 2.4rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.industry-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-color);
    box-shadow: 0 16px 35px rgba(0, 102, 255, 0.1);
}

.industry-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 198, 255, 0.18) 100%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.industry-card:hover .industry-icon-box {
    transform: scale(1.1);
    background: var(--accent-color);
    color: white;
}

.industry-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.industry-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Workflow 4-Step Section */
.workflow-section {
    padding: 5rem 0 3rem;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-top: 3.5rem;
    position: relative;
}

.workflow-card {
    background-color: var(--bg-alt);
    border-radius: var(--border-radius);
    padding: 2.2rem 1.6rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.workflow-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.12);
}

.workflow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.workflow-badge {
    background: rgba(0, 102, 255, 0.08);
    color: var(--accent-color);
    font-size: 0.82rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.workflow-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 198, 255, 0.15) 100%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.35;
    color: var(--text-primary);
}

.workflow-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Payment Methods Section */
.payment-section {
    padding: 3.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: #ffffff;
}

.payment-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.payment-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
}

.payment-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.1);
}

.payment-icon-aba {
    background: #003764;
    color: white;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.payment-icon-acleda {
    background: #1B365D;
    color: #DAA520;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.payment-icon-wing {
    background: #76B82A;
    color: white;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.payment-icon-card {
    background: #0F172A;
    color: white;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.85rem;
}

.payment-guarantee {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background-color: #0b1329;
    color: #e2e8f0;
    padding: 4rem 0 1.75rem;
    margin-top: auto;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-cta {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.16) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(0, 102, 255, 0.35);
    border-radius: var(--border-radius);
    padding: 2.25rem 2.5rem;
    margin-bottom: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.footer-top-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.footer-cta-text h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.35rem;
}

.footer-cta-text p {
    font-size: 0.95rem;
    color: #94a3b8;
}

.footer-cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 30px;
    padding: 0.65rem 1.6rem;
    display: inline-block;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: inherit;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col-brand .footer-logo {
    display: inline-block;
    margin-bottom: 1.2rem;
    transition: transform 0.25s ease;
}

.footer-col-brand .footer-logo:hover {
    transform: scale(1.03);
}

.footer-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.footer-bio {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    font-size: 0.92rem;
    color: #94a3b8;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact-list li {
    font-size: 0.9rem;
    color: #94a3b8;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.45;
}

.footer-contact-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent-color);
}

.footer-contact-list li a {
    color: #cbd5e1;
    transition: color 0.2s ease;
}

.footer-contact-list li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.35);
}

.footer-bottom {
    padding-top: 1.75rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-copyright {
    font-size: 0.88rem;
    color: #94a3b8;
}

.footer-bottom-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-badge {
    font-size: 0.82rem;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
}

.back-to-top-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    padding: 0.45rem 0.95rem;
    border-radius: 20px;
    font-size: 0.84rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.25s ease;
    font-family: inherit;
}

.back-to-top-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-top-cta {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-top-cta {
        padding: 1.75rem 1.25rem;
    }
    .footer-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .footer-cta-actions .btn,
    .footer-cta-actions .btn-outline-white {
        width: 100%;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }
    .footer-bottom-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    html[lang="km"] .hero-title {
        font-size: 2.35rem;
    }
    
    .feature-row {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .feature-row.reverse {
        flex-direction: column;
    }
    
    .feature-content, .feature-row.reverse .feature-content {
        padding: 0;
    }
    
    .step-number {
        margin-left: auto;
        margin-right: auto;
    }
    
    .decorator {
        display: none;
    }

    .about-intro-grid,
    .contact-layout,
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .workflow-grid,
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .comp-card {
        padding: 2.2rem 1.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-alt);
        flex-direction: column;
        padding: 1.5rem 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 1.2rem;
        z-index: 1000;
    }

    .nav-links.open {
        display: flex;
    }
    
    .site-logo-img {
        height: 38px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-actions .btn {
        display: none;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title, .page-header-title {
        font-size: 2.1rem;
        margin-bottom: 1.25rem;
    }
    
    html[lang="km"] .hero-title,
    html[lang="km"] .page-header-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }

    html[lang="km"] .section-title {
        font-size: 1.55rem;
    }

    .hero-bg-shape {
        height: 60%;
    }
    
    .services-intro {
        padding: 3rem 0 2rem;
    }

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

    .workflow-grid,
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comp-card {
        padding: 2rem 1.4rem;
    }

    .faq-question {
        padding: 1.25rem 1.4rem;
        font-size: 1.05rem;
    }

    .faq-answer {
        padding: 0 1.4rem;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 1.4rem;
    }

    .floating-contact {
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .floating-main-btn {
        width: 52px;
        height: 52px;
    }

    .floating-options {
        bottom: 65px;
        right: 0;
        min-width: 230px;
    }
}

@media (max-width: 480px) {
    .hero-title, .page-header-title {
        font-size: 1.8rem;
    }

    html[lang="km"] .hero-title,
    html[lang="km"] .page-header-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }

    .payment-grid {
        flex-direction: column;
        width: 100%;
        gap: 0.85rem;
    }

    .payment-card {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   BREADCRUMB NAVIGATION (SEO)
   ============================================ */
.breadcrumb-nav {
    padding: 0.75rem 0 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "›";
    color: var(--text-secondary);
    opacity: 0.5;
    font-size: 1rem;
}

.breadcrumb-list a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-list a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.breadcrumb-list li[aria-current="page"] {
    color: var(--text-primary);
    font-weight: 600;
}

/* ============================================
   BLOG PAGE STYLES (ENHANCED)
   ============================================ */
.blog-filter-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin: 1.5rem auto 2.5rem;
}

.blog-filter-btn {
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: var(--bg-alt);
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: var(--accent-color);
    color: #ffffff;
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px var(--accent-glow);
    transform: translateY(-1px);
}

/* Featured Article Spotlight */
.blog-featured-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
}

.blog-featured-img-wrap {
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.blog-featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-featured-card:hover .blog-featured-img-wrap img {
    transform: scale(1.04);
}

.blog-featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #FF6B00, #FF3D00);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 61, 0, 0.35);
}

.blog-featured-body {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-body h2 {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 0.85rem;
}

.blog-featured-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

/* Pro Tips Checklist Box inside Cards */
.pro-tips-box {
    background: rgba(0, 102, 255, 0.04);
    border-left: 3px solid var(--accent-color);
    border-radius: 0 10px 10px 0;
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
}

.pro-tips-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pro-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.83rem;
    color: var(--text-primary);
    line-height: 1.55;
}

.pro-tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-bottom: 0.25rem;
}

.pro-tips-list li:last-child {
    margin-bottom: 0;
}

.pro-tips-list li svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: #10B981;
}

/* Standard Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.blog-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.blog-card-img-wrap {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #0f172a;
}

.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img-wrap img {
    transform: scale(1.05);
}

.blog-card-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.blog-card-body {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.65rem;
}

.blog-card-tag {
    background: var(--accent-glow);
    color: var(--accent-color);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
}

.blog-read-time {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.76rem;
    color: var(--text-secondary);
}

.blog-card-body h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.55rem;
    line-height: 1.4;
}

.blog-card-body p {
    font-size: 0.89rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.blog-card-link:hover {
    gap: 0.7rem;
    color: var(--accent-hover);
}

.blog-card-link svg {
    transition: transform 0.2s ease;
}

.blog-card-link:hover svg {
    transform: translateX(3px);
}

/* Quick Tips Section */
.quick-tips-section {
    padding: 3.5rem 0 2rem;
}

.quick-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.quick-tip-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    position: relative;
    transition: all 0.25s ease;
}

.quick-tip-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.08);
}

.quick-tip-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-glow);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.quick-tip-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
    color: var(--text-primary);
}

.quick-tip-card p {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* Cross-link SEO CTA section */
.seo-crosslink-section {
    padding: 3rem 0;
}

.seo-crosslink-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.seo-crosslink-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.seo-crosslink-banner h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.seo-crosslink-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    max-width: 650px;
    margin: 0 auto 1.6rem;
    line-height: 1.6;
}

.crosslink-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .blog-featured-card {
        grid-template-columns: 1fr;
    }
    .blog-featured-img-wrap {
        height: 240px;
        min-height: auto;
    }
    .blog-featured-body {
        padding: 1.5rem;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-filter-wrapper {
        gap: 0.4rem;
    }
    .blog-filter-btn {
        padding: 0.4rem 0.85rem;
        font-size: 0.8rem;
    }
}

/* ============================================
   TRUST & CREDIBILITY SECTIONS
   ============================================ */

/* Trust Badges ("As Featured In" / Certifications) */
.trust-section {
    padding: 4rem 0 3rem;
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-eyebrow {
    color: var(--text-secondary);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    align-items: center;
    margin-top: 1rem;
}

.trust-badge {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.6rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.trust-badge:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 102, 255, 0.1);
}

.trust-badge-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #004ecc 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 102, 255, 0.25);
}

.trust-badge-icon svg {
    width: 28px;
    height: 28px;
}

.trust-badge-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.trust-badge-tag {
    font-size: 0.72rem;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
}

/* Process Timeline (Day 1 → Day 30) */
.process-timeline-section {
    padding: 5rem 0 4rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 102, 255, 0.04) 100%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color) 0%, rgba(0, 102, 255, 0.3) 100%);
    z-index: 0;
}

.process-step {
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem 1.6rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.process-step:hover {
    transform: translateY(-6px);
    border-color: var(--accent-color);
    box-shadow: 0 18px 35px rgba(0, 102, 255, 0.12);
}

.process-day-marker {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #004ecc 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
    border: 4px solid var(--bg-color);
}

.process-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.55;
}

.process-step-icon {
    color: var(--accent-color);
    margin-bottom: 0.4rem;
    display: flex;
    justify-content: center;
}

/* Team Section */
.team-section {
    padding: 5rem 0 4rem;
}

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

.team-card {
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.4rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-color);
    box-shadow: 0 18px 36px rgba(0, 102, 255, 0.12);
}

.team-avatar-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 1.4rem;
}

.team-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #00c6ff 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.25);
    letter-spacing: 0.02em;
}

.team-verified-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 30px;
    height: 30px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    border: 3px solid var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-verified-badge svg {
    width: 14px;
    height: 14px;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.team-role {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.4rem;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.team-skill {
    background: rgba(0, 102, 255, 0.08);
    color: var(--accent-color);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* Money-Back Guarantee Banner */
.guarantee-section {
    padding: 4rem 0;
}

.guarantee-banner {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem 3rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2.5rem;
    align-items: center;
    box-shadow: 0 16px 40px rgba(0, 102, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.guarantee-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
    z-index: 0;
}

.guarantee-shield {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #004ecc 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.3);
    position: relative;
    z-index: 1;
}

.guarantee-shield svg {
    width: 56px;
    height: 56px;
}

.guarantee-content {
    position: relative;
    z-index: 1;
}

.guarantee-content h3 {
    font-size: 1.65rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.guarantee-content p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.55;
    max-width: 580px;
}

.guarantee-points {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 1rem;
}

.guarantee-point {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 600;
}

.guarantee-point svg {
    width: 16px;
    height: 16px;
    color: #22c55e;
    flex-shrink: 0;
}

.guarantee-action {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* Responsive — Trust & Timeline */
@media (max-width: 1024px) {
    .trust-badges-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-timeline::before {
        display: none;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .guarantee-banner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2.5rem 2rem;
    }
    .guarantee-shield {
        margin: 0 auto;
    }
    .guarantee-points {
        justify-content: center;
    }
    .guarantee-action {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .process-timeline {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .trust-badge {
        padding: 1.2rem 0.8rem;
    }
    .guarantee-banner {
        padding: 2rem 1.5rem;
    }
    .guarantee-content h3 {
        font-size: 1.35rem;
    }
}

/* ========================================================
   TELEGRAM BOT SERVICE (@rongz1_bot) SHOWCASE STYLES
   ======================================================== */
.bot-showcase-section {
    padding: 3.5rem 0 5.5rem;
}

.bot-showcase-card {
    background: linear-gradient(135deg, #0b1329 0%, #0f1f3d 50%, #07152b 100%);
    color: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
    border: 1.5px solid rgba(42, 171, 238, 0.35);
    box-shadow: 0 20px 50px rgba(11, 19, 41, 0.4), 0 0 50px rgba(42, 171, 238, 0.15);
}

.bot-showcase-card::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(42, 171, 238, 0.28) 0%, rgba(0, 102, 255, 0.12) 45%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bot-showcase-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.22) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bot-header-badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
}

.bot-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(42, 171, 238, 0.18);
    border: 1px solid rgba(42, 171, 238, 0.45);
    color: #38bdf8;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bot-status-beacon {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(16, 185, 129, 0.45);
    color: #34d399;
    padding: 0.4rem 0.95rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.beacon-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 12px #10b981;
    animation: beaconPulse 2s infinite ease-in-out;
}

@keyframes beaconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.5;
    }
}

.bot-showcase-title {
    font-size: 2.35rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.bot-showcase-title .highlight-bot {
    background: linear-gradient(135deg, #38bdf8 0%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bot-showcase-subtitle {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.75;
    position: relative;
    z-index: 2;
}

.bot-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* Draggable & Swipeable Card Slider (Left to Right) */
.bot-slider-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
    gap: 1rem;
    flex-wrap: wrap;
}

.slider-swipe-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    border: 1px dashed rgba(56, 189, 248, 0.35);
    padding: 0.45rem 1.1rem;
    border-radius: 9999px;
    font-weight: 500;
}

.swipe-hand-icon {
    animation: swipeAnim 1.8s infinite ease-in-out;
}

@keyframes swipeAnim {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(6px);
    }
}

.bot-slider-controls {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.slider-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}

.slider-arrow:hover {
    background: linear-gradient(135deg, #0088cc 0%, #00d2ff 100%);
    border-color: rgba(56, 189, 248, 0.6);
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0, 180, 216, 0.4);
}

.slider-arrow:active {
    transform: scale(0.95);
}

.slider-arrow:disabled,
.slider-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    transform: none !important;
    box-shadow: none !important;
}

.bot-slider-track,
.draggable-card-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y pinch-zoom;
    padding: 0.5rem 0.25rem 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    /* Sleek custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(56, 189, 248, 0.45) rgba(255, 255, 255, 0.06);
}

.bot-slider-track::-webkit-scrollbar,
.draggable-card-track::-webkit-scrollbar {
    height: 6px;
}

.bot-slider-track::-webkit-scrollbar-track,
.draggable-card-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 9999px;
}

.bot-slider-track::-webkit-scrollbar-thumb,
.draggable-card-track::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #0088cc, #00d2ff);
    border-radius: 9999px;
}

.bot-slider-track.dragging,
.draggable-card-track.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.bot-slider-track.dragging .bot-feature-card,
.draggable-card-track.dragging * {
    user-select: none;
    -webkit-user-drag: none;
}

.bot-slider-track .bot-feature-card,
.draggable-card-track > * {
    flex: 0 0 290px;
    min-width: 290px;
    max-width: 290px;
    scroll-snap-align: start;
    margin: 0;
}

/* Slider Dots Indicator */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.55rem;
    margin-top: -0.5rem;
    margin-bottom: 2.25rem;
    position: relative;
    z-index: 2;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.22);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-dot:hover {
    background: rgba(56, 189, 248, 0.65);
    transform: scale(1.25);
}

.slider-dot.active {
    width: 28px;
    background: linear-gradient(90deg, #0088cc, #00d2ff);
    box-shadow: 0 0 12px rgba(0, 210, 255, 0.55);
}

.bot-feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 1.75rem 1.25rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.bot-feature-card:hover {
    background: rgba(42, 171, 238, 0.12);
    border-color: rgba(42, 171, 238, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.bot-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(42, 171, 238, 0.22) 0%, rgba(0, 102, 255, 0.22) 100%);
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
    border: 1px solid rgba(56, 189, 248, 0.35);
    transition: all 0.3s ease;
}

.bot-feature-card:hover .bot-feature-icon {
    transform: scale(1.1) rotate(4deg);
    background: linear-gradient(135deg, #0088cc 0%, #00d2ff 100%);
    color: #ffffff;
}

.bot-feature-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.55rem;
}

.bot-feature-desc {
    font-size: 0.86rem;
    color: #94a3b8;
    line-height: 1.6;
    flex-grow: 1;
}

.bot-feature-tag {
    margin-top: 1rem;
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    width: fit-content;
    letter-spacing: 0.03em;
}

.bot-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.15rem;
    position: relative;
    z-index: 2;
}

.btn-telegram-bot {
    background: linear-gradient(135deg, #0088cc 0%, #00b4d8 100%);
    color: #ffffff;
    padding: 1.1rem 2.8rem;
    border-radius: 9999px;
    font-size: 1.05rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-telegram-bot:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.55);
    background: linear-gradient(135deg, #0099e6 0%, #00c6ff 100%);
    color: #ffffff;
}

.btn-telegram-bot svg {
    transition: transform 0.3s ease;
}

.btn-telegram-bot:hover svg.arrow-icon {
    transform: translateX(4px);
}

.bot-cta-meta {
    font-size: 0.85rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.bot-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.bot-info-card-contact {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.08) 0%, rgba(0, 180, 216, 0.04) 100%);
    border: 1.5px solid rgba(42, 171, 238, 0.35);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.bot-info-card-contact:hover {
    border-color: #0088cc;
    box-shadow: 0 10px 25px rgba(0, 136, 204, 0.12);
    transform: translateY(-3px);
}

.bot-info-card-contact .info-icon {
    background: linear-gradient(135deg, #0088cc 0%, #00d2ff 100%);
    color: #ffffff;
}

.bot-cta-buttons-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.15rem;
    flex-wrap: wrap;
    width: 100%;
}

.btn-bot-tiktok {
    background: linear-gradient(135deg, #010101 0%, #17171d 45%, #fe2c55 100%);
    box-shadow: 0 10px 30px rgba(254, 44, 85, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-bot-tiktok:hover {
    background: linear-gradient(135deg, #000000 0%, #fe2c55 60%, #25f4ee 100%);
    box-shadow: 0 15px 40px rgba(254, 44, 85, 0.55);
}

.float-tiktok-bot {
    background: #010101;
    color: #ffffff;
    border: 1px solid rgba(254, 44, 85, 0.4);
}

.float-tiktok-bot:hover {
    background: linear-gradient(135deg, #010101 0%, #fe2c55 100%);
    border-color: #fe2c55;
    box-shadow: 0 8px 24px rgba(254, 44, 85, 0.45);
}

/* ========================================================
   MOBILE HORIZONTAL SWIPEABLE CARDS (Left to Right)
   For optimal mobile UX without long vertical scrolling
   ======================================================== */
@media (max-width: 768px) {
    .industries-grid,
    .trust-badges-grid,
    .workflow-grid,
    .process-timeline,
    .quick-tips-grid,
    .payment-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-y pinch-zoom !important;
        gap: 1.15rem !important;
        padding: 0.5rem 1.25rem 1.5rem !important;
        margin-left: -1.25rem !important;
        margin-right: -1.25rem !important;
        cursor: grab;
        user-select: none;
        -webkit-user-select: none;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 102, 255, 0.4) rgba(0, 0, 0, 0.05);
    }

    .industries-grid::-webkit-scrollbar,
    .trust-badges-grid::-webkit-scrollbar,
    .workflow-grid::-webkit-scrollbar,
    .process-timeline::-webkit-scrollbar,
    .quick-tips-grid::-webkit-scrollbar,
    .payment-grid::-webkit-scrollbar {
        height: 5px;
    }

    .industries-grid::-webkit-scrollbar-track,
    .trust-badges-grid::-webkit-scrollbar-track,
    .workflow-grid::-webkit-scrollbar-track,
    .process-timeline::-webkit-scrollbar-track,
    .quick-tips-grid::-webkit-scrollbar-track,
    .payment-grid::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.04);
        border-radius: 9999px;
    }

    .industries-grid::-webkit-scrollbar-thumb,
    .trust-badges-grid::-webkit-scrollbar-thumb,
    .workflow-grid::-webkit-scrollbar-thumb,
    .process-timeline::-webkit-scrollbar-thumb,
    .quick-tips-grid::-webkit-scrollbar-thumb,
    .payment-grid::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, var(--accent-color), #00d2ff);
        border-radius: 9999px;
    }

    .industries-grid .industry-card {
        flex: 0 0 78vw !important;
        min-width: 260px !important;
        max-width: 310px !important;
        scroll-snap-align: start !important;
    }

    .trust-badges-grid .trust-badge {
        flex: 0 0 160px !important;
        min-width: 160px !important;
        max-width: 160px !important;
        scroll-snap-align: start !important;
    }

    .workflow-grid .workflow-card {
        flex: 0 0 78vw !important;
        min-width: 260px !important;
        max-width: 310px !important;
        scroll-snap-align: start !important;
    }

    .process-timeline .process-step {
        flex: 0 0 78vw !important;
        min-width: 260px !important;
        max-width: 310px !important;
        scroll-snap-align: start !important;
    }

    .process-timeline::before {
        display: none !important;
    }

    .quick-tips-grid .quick-tip-card {
        flex: 0 0 78vw !important;
        min-width: 260px !important;
        max-width: 310px !important;
        scroll-snap-align: start !important;
    }

    .payment-grid .payment-card {
        flex: 0 0 220px !important;
        min-width: 220px !important;
        max-width: 220px !important;
        scroll-snap-align: start !important;
    }

    .industries-grid.dragging,
    .trust-badges-grid.dragging,
    .workflow-grid.dragging,
    .process-timeline.dragging,
    .quick-tips-grid.dragging,
    .payment-grid.dragging {
        cursor: grabbing !important;
        scroll-behavior: auto !important;
        scroll-snap-type: none !important;
    }
}

@media (max-width: 1200px) {
    .bot-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 600px) {
    .bot-showcase-card {
        padding: 2.5rem 1.25rem;
    }
    .bot-showcase-title {
        font-size: 1.75rem;
    }
    .bot-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .bot-slider-nav-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }
    .bot-slider-controls {
        align-self: flex-end;
    }
    .bot-slider-track .bot-feature-card,
    .draggable-card-track > * {
        flex: 0 0 82vw;
        min-width: 260px;
        max-width: 320px;
    }
    .btn-telegram-bot {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    .bot-cta-buttons-row {
        flex-direction: column;
        gap: 0.85rem;
    }
}
