/* ================================
   CSS Variables - Brand Colors
   ================================ */
:root {
    --primary-color: #EC2E5E;
    --primary-dark: #D11E4A;
    --primary-light: #FF4576;
    --secondary-color: #1A1A1A;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;
    --info-color: #3B82F6;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* ================================
   Navigation
   ================================ */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: inline-block;
    line-height: 0;
    transition: var(--transition-fast);
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 40px;
    width: auto;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

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

.btn-nav {
    background-color: transparent;
    color: var(--text-dark) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid var(--border-color);
    transition: var(--transition-base);
}

.btn-nav:hover {
    background-color: white;
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-nav.btn-contact {
    background-color: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-dark) !important;
}

.btn-nav.btn-contact:hover {
    background-color: white;
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
}

.btn-nav.btn-portal {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white !important;
}

.btn-nav.btn-portal:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
}

/* ================================
   Hero Section
   ================================ */
.hero {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-with-background {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/hero-homepage.jpg');
    background-size: cover;
    background-position: center;
}

.hero-with-background .hero-title {
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-with-background .hero-title .highlight {
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(236, 46, 94, 0.8), 0 4px 16px rgba(236, 46, 94, 0.6);
}

.hero-with-background .hero-subtitle {
    color: #FFFFFF;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-with-background .stat-number {
    color: #FFFFFF;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-with-background .stat-label {
    color: #FFFFFF;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-with-background .btn-primary {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-with-background .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.hero-with-background .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-with-background .btn-secondary:hover {
    background-color: white;
    border-color: white;
    color: var(--primary-color);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(236, 46, 94, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* ================================
   Page Hero
   ================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 6rem 0 4rem;
    color: white;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.page-hero-with-bg {
    position: relative;
}

.page-hero-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-hero-with-bg .container {
    position: relative;
    z-index: 2;
}

.page-hero-with-bg .page-title {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(0, 0, 0, 0.4);
}

.page-hero-with-bg .page-subtitle {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.page-hero-with-bg .breadcrumb {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

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

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.7rem;
    margin: 0 0.5rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.7;
}

/* ================================
   Sections
   ================================ */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.content-section,
.features,
.services,
.pricing-preview,
.benefits,
.benefits-section,
.use-cases,
.how-it-works,
.api-section,
.pricing-section,
.features-detailed {
    padding: 5rem 0;
}

.content-section:nth-child(even),
.features,
.how-it-works,
.pricing-section {
    background-color: var(--bg-light);
}

/* ================================
   Features Grid
   ================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

/* ================================
   Services Grid
   ================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 2px solid var(--border-color);
    transition: var(--transition-base);
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

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

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

.service-features {
    margin: 2rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: var(--text-dark);
}

.service-features i {
    color: var(--success-color);
    font-size: 1.1rem;
}

/* ================================
   Two Column Layout
   ================================ */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.column-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.column-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.info-box,
.alert-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.info-box {
    background-color: #EBF5FF;
    border-left: 4px solid var(--info-color);
}

.alert-box {
    background-color: #FFF4E6;
    border-left: 4px solid var(--warning-color);
}

.info-box i,
.alert-box i {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.info-box i {
    color: var(--info-color);
}

.alert-box i {
    color: var(--warning-color);
}

.info-box h4,
.alert-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.info-box p,
.alert-box p {
    margin: 0;
    font-size: 0.95rem;
}

.feature-list-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.feature-list-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefits-list i {
    color: var(--success-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.benefits-list strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.benefits-list p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* ================================
   Stats Showcase
   ================================ */
.stats-showcase {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.stats-showcase h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-align: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 1rem;
}

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

.stat-item .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-item .stat-icon i {
    color: white;
    font-size: 1.5rem;
}

.stat-item .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-item .stat-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

/* ================================
   Steps/How It Works
   ================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.step-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.step-arrow {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* CoP Specific How It Works Layout */
.cop-steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.cop-step-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
}

.cop-step-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.cop-step-arrow:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cop-step-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.cop-step-card:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.cop-step-arrow:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cop-step-card:nth-child(6) {
    grid-column: 3;
    grid-row: 2;
}

.cop-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.cop-step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cop-step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.cop-step-arrow {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
}

/* Match Types */
.match-types {
    margin-top: 3rem;
}

.match-types h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

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

.match-type {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid;
    box-shadow: var(--shadow-md);
}

.match-success {
    border-color: var(--success-color);
}

.match-warning {
    border-color: var(--warning-color);
}

.match-danger {
    border-color: var(--danger-color);
}

.match-unavailable {
    border-color: var(--text-lighter);
}

.match-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.match-success .match-icon {
    color: var(--success-color);
}

.match-warning .match-icon {
    color: var(--warning-color);
}

.match-danger .match-icon {
    color: var(--danger-color);
}

.match-unavailable .match-icon {
    color: var(--text-lighter);
}

.match-type h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.match-type p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ================================
   Benefits Grid
   ================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

/* ================================
   Use Cases
   ================================ */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.use-case-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-base);
}

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

.use-case-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.use-case-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.use-case-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.use-case-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ================================
   API Section
   ================================ */
.api-example {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.api-tabs {
    display: flex;
    background: var(--bg-light);
    border-bottom: 2px solid var(--border-color);
}

.api-tab {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.api-tab:hover {
    color: var(--primary-color);
}

.api-tab.active {
    color: var(--primary-color);
    background: white;
    border-bottom: 3px solid var(--primary-color);
}

.api-code-block {
    position: relative;
}

.api-code {
    display: none;
    padding: 2rem;
}

.api-code.active {
    display: block;
}

.api-code pre {
    margin: 0;
    overflow-x: auto;
}

.api-code code {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.api-response {
    background: var(--bg-light);
    padding: 2rem;
    border-top: 2px solid var(--border-color);
}

.api-response h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.api-response pre {
    margin: 0;
    overflow-x: auto;
}

.api-response code {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--success-color);
}

/* ================================
   Pricing Calculator
   ================================ */
.pricing-calculator {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    margin-bottom: 4rem;
}

.calculator-header {
    text-align: center;
    margin-bottom: 3rem;
}

.calculator-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.calculator-header p {
    color: var(--text-light);
}

.slider-container {
    margin-bottom: 3rem;
}

.slider-container label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.volume-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: var(--border-color);
    outline: none;
    -webkit-appearance: none;
    margin-bottom: 0.5rem;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: var(--shadow-lg);
}

.volume-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.result-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition-base);
}

.result-card.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.result-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-card:not(.highlight) .result-value {
    color: var(--primary-color);
}

.result-unit {
    font-size: 0.85rem;
    opacity: 0.8;
}

.pricing-comparison {
    background: #F0FDF4;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--success-color);
    margin-bottom: 2rem;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.comparison-item i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.comparison-item strong {
    color: var(--success-color);
}

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

.cta-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.75rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cta-feature i {
    font-size: 1.5rem;
    color: white;
}

.cta-note {
    margin-top: 1rem;
    font-size: 1.05rem;
    color: #555;
    font-weight: 600;
    opacity: 1;
    padding: 0.75rem 1.5rem;
    background: rgba(236, 46, 94, 0.08);
    border-radius: 50px;
    display: inline-block;
    border: 1px solid rgba(236, 46, 94, 0.2);
}

/* ================================
   Pricing Tiers Table
   ================================ */
.pricing-tiers-wrapper {
    background: var(--bg-light);
    padding: 4rem 0;
    margin-top: 3rem;
    width: 100%;
}

.pricing-tiers {
    width: 100%;
    padding: 0;
}

.pricing-tiers h3 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 4rem;
}

.tiers-table {
    background: white;
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.tier-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 3rem;
    padding: 1.8rem 3rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
    align-items: center;
    width: 100%;
}

.tier-row:last-child {
    border-bottom: none;
}

.tier-row.header {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--secondary-color);
}

.tier-row:not(.header):nth-child(even) {
    background: #FAFBFC;
}

.tier-row:not(.header):hover {
    background: #FFF5F7;
}

.tier-row.featured,
.tier-row.best-value {
    background: linear-gradient(to right, #FFF5F7, white);
    border-left: 4px solid var(--primary-color);
}

.tier-cell {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    min-width: 0;
    gap: 0.5rem;
}

.tier-cell:first-child {
    justify-content: flex-start;
}

.tier-cell:not(:first-child) {
    justify-content: flex-start;
}

.tier-cell strong {
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.tier-cell strong + * {
    margin-left: 0.25rem; /* Extra space after strong elements */
}

/* Custom pricing row - button spanning multiple columns */
.tier-row .tier-cell[style*="grid-column"] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.tier-row .tier-cell[style*="grid-column"] .btn {
    white-space: nowrap;
    padding: 0.75rem 2rem;
}

/* ================================
   Pricing Cards
   ================================ */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    transition: var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(236, 46, 94, 0.1);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.price-range {
    margin-bottom: 1.5rem;
}

.price-from {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-unit {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

.pricing-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.pricing-features {
    margin: 2rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: var(--text-dark);
}

.pricing-features i {
    color: var(--success-color);
}

/* ================================
   Benefits Content
   ================================ */
.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.benefits-text > p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item i {
    color: var(--success-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.benefit-item p {
    color: var(--text-light);
    margin: 0;
}

.stats-box {
    display: grid;
    gap: 1.5rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.stat-box .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-box .stat-icon i {
    font-size: 1.8rem;
    color: white;
}

.stat-box h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-light);
}

/* ================================
   Features Detailed
   ================================ */
.features-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-detailed {
    text-align: center;
    padding: 1.5rem;
}

.feature-detailed i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-detailed h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.feature-detailed p {
    color: var(--text-light);
}

/* ================================
   CTA Section
   ================================ */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.cta .btn-primary:hover {
    background-color: var(--bg-light);
    border-color: var(--bg-light);
    color: var(--primary-color);
}

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

.cta .btn-secondary:hover {
    background-color: white;
    border-color: white;
    color: var(--primary-color);
}

/* ================================
   Footer
   ================================ */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer-newsletter {
    background: rgba(236, 46, 94, 0.1);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: var(--transition-base);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    padding: 0.9rem 2rem;
    border: 2px solid white;
    border-radius: 25px;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.footer-main {
    padding: 4rem 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-iso-section {
    margin-top: 1.5rem;
}

.iso-badge-footer {
    height: 120px;
    width: auto;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-etellect-logo {
    margin-top: 2rem;
}

.footer-etellect-logo a {
    display: block;
}

.etellect-group-logo {
    height: 50px;
    width: auto;
    transition: var(--transition-base);
    opacity: 0.9;
}

.etellect-group-logo:hover {
    opacity: 1;
}

.footer-iso-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.iso-badge-footer {
    height: 120px;
    width: auto;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.9rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    font-size: 0.9rem;
    text-decoration: none;
}

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

/* Newsletter Column */
.footer-newsletter-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.footer-newsletter-form input::placeholder {
    color: rgba(44, 44, 44, 0.5);
}

.footer-newsletter-form button {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 4px;
    background: var(--primary-color);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.footer-newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-newsletter-col .footer-etellect-logo {
    margin-top: 2rem;
}

.footer-newsletter-col .etellect-group-logo {
    height: 50px;
    width: auto;
    transition: var(--transition-base);
    opacity: 0.9;
}

.footer-newsletter-col .etellect-group-logo:hover {
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-payment-social {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.payment-card-icon {
    height: 28px;
    width: auto;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: white;
    padding: 2px;
}

.payment-card-icon:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-payment a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-left: 0.5rem;
}

.epayment-logo {
    height: 32px;
    width: auto;
    transition: all 0.3s ease;
}

.epayment-logo:hover {
    transform: scale(1.05);
}
}

/* ================================
   Contact Page Styles
   ================================ */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #F8F9FA, white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.form-group .required {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition-fast);
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(236, 46, 94, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    /* Hide default checkbox */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    
    /* Custom checkbox styling */
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 0.125rem;
    transition: all 0.3s ease;
}

.checkbox-group input[type="checkbox"]:hover {
    border-color: var(--primary-color);
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    line-height: 1.6;
    flex: 1;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-message {
    display: none;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
}

.form-message.success {
    background-color: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.form-message.error {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
}

/* Contact Info */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-info-card > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.4rem;
    color: white;
}

.contact-detail h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-detail a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-detail .small-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.contact-detail p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Quick Links */
.contact-quick-links {
    background: linear-gradient(135deg, #FFF5F7, white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.contact-quick-links h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-quick-links li {
    margin-bottom: 0.75rem;
}

.contact-quick-links a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-fast);
    padding: 0.5rem;
    border-radius: 6px;
}

.contact-quick-links a:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-quick-links i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Business Hours */
.business-hours {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.business-hours h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.hours-item span:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-item span:last-child {
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

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

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item i {
    color: var(--primary-color);
}

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

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.cta-section .cta-note {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 1;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-arrow:nth-child(3),
    .step-arrow:nth-child(7) {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow-lg);
        border-top: 2px solid var(--border-color);
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .nav-links a {
        display: block;
        padding: 0.75rem 1rem;
    }
    
    .btn-nav {
        margin: 0.5rem 1rem;
        display: block;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .cta-feature {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .cta-feature i {
        font-size: 1.25rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-hero {
        padding: 4rem 0 3rem;
        min-height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .two-column-layout,
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-arrow {
        display: none;
    }
    
    .cop-steps-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
    }
    
    .cop-step-card:nth-child(1),
    .cop-step-card:nth-child(3),
    .cop-step-card:nth-child(4),
    .cop-step-card:nth-child(6) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .cop-step-arrow {
        display: none !important;
    }
    
    .pricing-results {
        grid-template-columns: 1fr;
    }
    
    .result-card.highlight {
        transform: scale(1);
    }
    
    /* Responsive pricing tiers - maintain table structure on tablet */
    .pricing-tiers {
        padding: 0 2rem;
    }
    
    .tier-row {
        grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
        gap: 1.5rem;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .tier-cell {
        font-size: 1rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }
    
    .tier-row .tier-cell[style*="grid-column"] .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 1.6rem;
    }
    
    .pricing-calculator {
        padding: 2rem 1.5rem;
    }
    
    /* Convert pricing tiers table to card layout on mobile */
    .pricing-tiers-wrapper {
        padding: 3rem 0;
    }
    
    .pricing-tiers {
        padding: 0 1rem;
    }
    
    .tiers-table {
        border-radius: 0;
    }
    
    .tier-row {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.5rem;
        border-bottom: 2px solid var(--border-color);
        background: white;
    }
    
    .tier-row.header {
        display: none; /* Hide table header on mobile */
    }
    
    .tier-row.featured,
    .tier-row.best-value {
        background: linear-gradient(135deg, #FFF5F7, white);
        border-left: 4px solid var(--primary-color);
        padding-left: 1.2rem;
    }
    
    .tier-cell {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0.5rem 0;
        font-size: 1rem;
    }
    
    .tier-cell:first-child {
        font-size: 1.1rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 0.5rem;
    }
    
    /* Add labels for mobile */
    .tier-cell:nth-child(2):before {
        content: "Price per Check:";
        font-weight: 600;
        color: var(--text-light);
    }
    
    .tier-cell:nth-child(3):before {
        content: "Total Cost:";
        font-weight: 600;
        color: var(--text-light);
    }
    
    .tier-cell:nth-child(4):before {
        content: "Savings:";
        font-weight: 600;
        color: var(--text-light);
    }
    
    .tier-cell strong {
        white-space: normal;
    }
    
    /* Custom pricing row on mobile */
    .tier-row .tier-cell[style*="grid-column"] {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
    }
    
    .tier-row .tier-cell[style*="grid-column"]:before {
        content: "";
        display: none;
    }
    
    .tier-row .tier-cell[style*="grid-column"] .btn {
        width: 100%;
        text-align: center;
        font-size: 1rem;
        padding: 1rem;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ================================
   About Page Styles
   ================================ */
.about-intro {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.about-stats-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    color: white;
}

.timeline-stat {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-stat:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.timeline-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Company Info Section */
.company-info-section {
    background-color: var(--bg-light);
}

.company-values {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.company-values h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-align: center;
}

.value-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.value-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.value-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.value-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.value-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* ISO Certifications Section */
.certifications-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #F8F9FA, white);
}

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

.certification-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: var(--transition-base);
    text-align: center;
}

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

.certification-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, #FFF5F7, white);
}

.certification-badge {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 16px rgba(236, 46, 94, 0.2);
}

.certification-badge i {
    font-size: 2.5rem;
    color: white;
}

.certification-card h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

.certification-card > p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.certification-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 1.5rem 0 0;
}

.certification-benefits li {
    padding: 0.6rem 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.certification-benefits i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.uk-company-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 3rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow-xl);
}

.uk-flag-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uk-flag-icon i {
    font-size: 2.5rem;
    color: white;
}

.uk-company-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.uk-company-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

/* Sister Services Section */
.sister-services-section {
    padding: 5rem 0;
}

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

.service-showcase-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.service-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-showcase-card.primary {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, #FFF5F7, white);
}

.service-showcase-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-showcase-card.primary .service-showcase-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.service-showcase-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-showcase-card.primary .service-showcase-icon i {
    color: white;
}

.service-showcase-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.service-tagline {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-showcase-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-showcase-features {
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.service-showcase-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.service-showcase-features i {
    color: var(--success-color);
}

.service-showcase-card .btn {
    margin-top: 1rem;
}

.portfolio-benefits {
    background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--success-color);
    text-align: center;
}

.portfolio-benefits h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.portfolio-benefits p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Clients Section */
.clients-section {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.clients-intro {
    margin-bottom: 3rem;
}

.privacy-notice {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    max-width: 900px;
    margin: 0 auto;
}

.privacy-notice i {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.privacy-notice h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.privacy-notice p {
    color: var(--text-light);
    line-height: 1.7;
}

.client-sectors {
    margin: 4rem 0;
}

.client-sectors h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.sectors-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.sector-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

.sector-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sector-icon i {
    font-size: 1.8rem;
    color: white;
}

.sector-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.sector-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.client-trust {
    margin-top: 4rem;
}

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

.trust-stat {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.trust-stat i {
    font-size: 3rem;
    color: var(--primary-color);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.references-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.references-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.references-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.references-cta .btn:hover {
    background-color: var(--bg-light);
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
}

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

.why-choose-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-base);
}

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

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon i {
    font-size: 2rem;
    color: white;
}

.why-choose-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

/* ================================
   EISCD Extracts Page Styles
   ================================ */
.why-eiscd-section {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.use-cases-section {
    padding: 5rem 0;
}

.pricing-examples {
    margin-top: 4rem;
}

.pricing-examples h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.example-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.example-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, #FFF5F7, white);
}

.example-card.best-value {
    border-color: var(--success-color);
    background: linear-gradient(to bottom, #F0FDF4, white);
}

.example-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.example-card.best-value .example-badge {
    background: linear-gradient(135deg, var(--success-color), #059669);
}

.example-card h4 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.example-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1.5rem 0;
    line-height: 1;
}

.example-card.best-value .example-price {
    color: var(--success-color);
}

.example-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: auto;
}

.extract-note {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    margin: 0.5rem 0 !important;
    padding: 0.5rem;
    background: rgba(236, 46, 94, 0.05);
    border-radius: 6px;
}

.example-card .btn {
    margin: 1.5rem auto 0;
    width: 100%;
    max-width: 200px;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    display: block;
    text-align: center;
}
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
}

/* Data Specifications Section */
.data-specs-section {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

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

.spec-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.spec-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.spec-card h3 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.spec-card ul {
    list-style: none;
}

.spec-card ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.spec-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.spec-card ul li strong {
    color: var(--text-dark);
}

/* API Alternative Section */
.api-alternative-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFF5F7, #FFFFFF);
}

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

.alternative-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.alternative-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.alternative-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.alternative-comparison {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.alternative-comparison h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-align: center;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    align-items: center;
}

.comparison-row:first-child {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-feature {
    font-weight: 500;
    color: var(--text-dark);
}

.comparison-row:first-child .comparison-feature,
.comparison-row:first-child .comparison-extract,
.comparison-row:first-child .comparison-api {
    color: white;
}

.comparison-extract,
.comparison-api {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* EISCD Page Responsive */
@media (max-width: 1024px) {
    .alternative-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .alternative-buttons {
        flex-direction: column;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .comparison-feature {
        font-weight: 600;
    }
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-intro {
        grid-template-columns: 1fr;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .uk-company-highlight {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .uk-flag-icon {
        width: 70px;
        height: 70px;
    }
}

/* ================================
   FAQ Page Styles
   ================================ */
.faq-search-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.faq-search-box {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.faq-search-box i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.2rem;
}

.faq-search-box input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 4rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(236, 46, 94, 0.1);
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.faq-category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-dark);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.faq-category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

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

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

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

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

.faq-question h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 600;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.faq-answer ul,
.faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--primary-dark);
}

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

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.no-results i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 1.5rem;
}

.no-results h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.no-results p {
    font-size: 1rem;
}

.mobile-only {
    display: none;
}

/* Responsive FAQ Styles */
@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
    
    .faq-search-box input {
        font-size: 1rem;
        padding: 1rem 1rem 1rem 3.5rem;
    }
    
    .faq-search-box i {
        left: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-categories {
        gap: 0.75rem;
    }
    
    .faq-category-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
}

/* ================================
   Resellers & Agencies Page Styles
   ================================ */
.reseller-intro {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #F8F9FA, white);
}

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

.reseller-intro-text .lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

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

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

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

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

.reseller-benefits-box {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.reseller-benefits-box h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.reseller-benefits-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reseller-benefits-box li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.reseller-benefits-box li:last-child {
    border-bottom: none;
}

.reseller-benefits-box i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.reseller-services {
    padding: 5rem 0;
    background: white;
}

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

.reseller-service-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.reseller-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.reseller-service-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, rgba(236, 46, 94, 0.02), white);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.reseller-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.why-partner-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #F8F9FA, white);
}

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

.partner-benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.partner-benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(236, 46, 94, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.partner-benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.partner-benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.ideal-partners {
    padding: 5rem 0;
    background: white;
}

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

.partner-type-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.partner-type-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.partner-type-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.partner-type-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.partner-type-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.reseller-pricing {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #F8F9FA, white);
}

.pricing-info-box {
    max-width: 900px;
    margin: 3rem auto 0;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.pricing-info-content h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.pricing-info-content ul {
    margin: 2rem 0;
}

.pricing-info-content li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.pricing-example {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(to bottom, rgba(236, 46, 94, 0.02), white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.pricing-example h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-tier {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-tier strong {
    color: var(--text-dark);
    font-weight: 600;
}

.pricing-tier span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.partner-success {
    padding: 5rem 0;
    background: white;
}

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

.success-story-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.story-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-top: 2px solid var(--border-color);
    padding-top: 1rem;
}

.story-author strong {
    color: var(--text-dark);
    font-weight: 600;
}

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

.reseller-form-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #F8F9FA, white);
}

.reseller-form-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.form-intro {
    position: sticky;
    top: 2rem;
}

.form-intro h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.form-benefits {
    margin: 3rem 0;
}

.form-benefits h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.form-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-info-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    margin-top: 2rem;
}

.contact-info-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-box p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.contact-info-box i {
    color: var(--primary-color);
    width: 20px;
}

.contact-info-box a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-box a:hover {
    color: var(--primary-color);
}

.form-container {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.reseller-form h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.checkbox-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
}

.checkbox-label span {
    font-weight: 400;
}

/* Responsive Reseller Styles */
@media (max-width: 1024px) {
    .reseller-intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .reseller-services-grid,
    .why-partner-grid,
    .partner-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reseller-form-layout {
        grid-template-columns: 1fr;
    }
    
    .form-intro {
        position: static;
    }
}

@media (max-width: 768px) {
    .intro-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reseller-services-grid,
    .why-partner-grid,
    .partner-types-grid,
    .success-stories-grid,
    .pricing-tiers {
        grid-template-columns: 1fr;
    }
    
    .reseller-benefits-box {
        padding: 2rem;
    }
    
    .pricing-info-box,
    .form-container {
        padding: 2rem;
    }
}

/* ================================
   Demo Page Styles
   ================================ */
.demo-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #F8F9FA, white);
}

.demo-section .container {
    max-width: 1400px;
}

.demo-intro {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.demo-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.demo-intro > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.demo-tips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.tip-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    text-align: left;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.tip-card i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.tip-card strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.tip-card p {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.tip-card code {
    background: var(--bg-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--primary-color);
    font-weight: 600;
    white-space: nowrap;
}

.demo-container {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.demo-form-section,
.demo-results-section {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.demo-results-section {
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.demo-form-section h3,
.demo-results-section h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.demo-form-section h3 i,
.demo-results-section h3 i {
    color: var(--primary-color);
}

.demo-form {
    margin-bottom: 2.5rem;
}

.api-info {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--border-color);
}

.api-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.api-info h4 i {
    color: var(--primary-color);
}

.code-block {
    background: #0d1117;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border: 1px solid #30363d;
}

.code-block code {
    color: #e6edf3;
    font-family: 'Courier New', 'Monaco', monospace;
    font-size: 1rem;
    word-break: break-all;
    line-height: 1.6;
    font-weight: 400;
}

.api-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.api-note strong {
    color: var(--primary-color);
    font-weight: 600;
}

.initial-state,
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.initial-state i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 1.5rem;
}

.loading-state {
    gap: 1.5rem;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.result-display {
    animation: fadeIn 0.3s ease-in;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.result-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.result-status.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 2px solid var(--success-color);
}

.result-status.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
    border: 2px solid var(--danger-color);
}

.result-status i {
    font-size: 2rem;
}

.result-details {
    margin-bottom: 2rem;
}

.result-details h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    color: var(--text-light);
    font-weight: 500;
}

.detail-row .value {
    color: var(--text-dark);
    font-weight: 600;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
}

.status-badge.valid {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.status-badge.invalid {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
}

.branch-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.branch-details h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.branch-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.branch-header {
    margin-bottom: 1.5rem;
}

.branch-header h5 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.branch-name {
    color: var(--text-light);
    font-weight: 500;
}

.branch-address {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

.branch-address strong {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.payment-schemes strong {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.scheme-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.badge-info {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info-color);
}

.badge-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
}

.error-message {
    color: var(--danger-color);
    padding: 1rem;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 8px;
    font-weight: 500;
}

.json-response {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    position: relative;
}

.json-response h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.json-response h4 i {
    color: var(--primary-color);
}

.copy-btn {
    position: absolute;
    top: 2.5rem;
    right: 0;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--primary-dark);
}

.json-response pre {
    background: #1c1f26;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin-top: 1rem;
    border: 1px solid #30363d;
    max-height: 500px;
    overflow-y: auto;
}

.json-response pre code {
    color: #ffffff;
    font-family: 'Courier New', 'Monaco', monospace;
    font-size: 1rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
    font-weight: 500;
}

/* JSON Syntax Highlighting */
.json-response pre code .json-key {
    color: #79c0ff;
    font-weight: 600;
}

.json-response pre code .json-string {
    color: #a5d6ff;
    font-weight: 500;
}

.json-response pre code .json-number {
    color: #79c0ff;
    font-weight: 500;
}

.json-response pre code .json-boolean {
    color: #ffa657;
    font-weight: 500;
}

.json-response pre code .json-null {
    color: #ff7b72;
    font-weight: 500;
}

.code-examples {
    margin-top: 5rem;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.code-examples h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

.tab-content pre {
    background: #0d1117;
    padding: 2rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 0;
    border: 1px solid #30363d;
}

.tab-content code {
    color: #e6edf3;
    font-family: 'Courier New', 'Monaco', monospace;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

.demo-cta {
    margin-top: 5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 4rem 3rem;
    border-radius: 16px;
    color: white;
}

.demo-cta h3 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.demo-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Responsive Demo Styles */
@media (max-width: 1024px) {
    .demo-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .demo-tips {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .demo-intro h2 {
        font-size: 2rem;
    }
    
    .demo-form-section,
    .demo-results-section {
        padding: 1.5rem;
    }
    
    .code-examples {
        padding: 2rem 1.5rem;
    }
    
    .tabs {
        overflow-x: auto;
    }
    
    .tab-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .demo-cta {
        padding: 3rem 2rem;
    }
    
    .demo-cta h3 {
        font-size: 1.75rem;
    }
}