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

:root {
    /* Light Theme Colors */
    --primary-color: #0A84FF;
    --primary-hover: #0070E0;
    --secondary-color: #5E5CE6;
    --success-color: #34C759;
    --warning-color: #FF9500;
    --danger-color: #FF3B30;
    
    /* Light Backgrounds */
    --bg-primary: #F5F5F7;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #E5E5EA;
    --bg-elevated: #FFFFFF;
    --card-bg: #FFFFFF;
    --input-bg: #FFFFFF;
    
    /* Text Colors */
    --text-primary: #1D1D1F;
    --text-secondary: #424245;
    --text-tertiary: #6E6E73;
    --text-muted: #86868B;
    
    /* Border & Divider */
    --border-color: #D2D2D7;
    --divider-color: #E5E5EA;
    
    /* Accent */
    --accent-color: #0A84FF;
    
    --border-radius: 10px;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    font-size: 15px;
}

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

/* Navbar - Improved Design */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    position: relative;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    cursor: pointer;
    transition: opacity 0.2s;
}

.nav-brand h1:hover {
    opacity: 0.8;
}

.nav-brand h1::before {
    content: "\f570";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 24px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
    background-color: var(--bg-tertiary);
    transform: translateY(-1px);
}

.nav-links a.active {
    color: var(--primary-color);
    background-color: rgba(10, 132, 255, 0.1);
}

.nav-links a.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-primary);
    font-weight: 600;
    padding: 10px 20px;
}

.nav-links a.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 132, 255, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--bg-elevated);
}

.btn-large {
    padding: 12px 28px;
    font-size: 15px;
}

.btn-full {
    width: 100%;
}

/* Pay Button - White Text */
#payBtn,
#payBtn #btnText {
    color: #FFFFFF !important;
}

/* Hero Section - Redesigned */
.hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.hero h1 {
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.hero .subtitle {
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.hero h1 {
    font-size: 38px;
    margin-bottom: 12px;
    font-weight: 700;
}

.hero .subtitle {
    font-size: 17px;
    margin-bottom: 28px;
    color: var(--text-tertiary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.section:last-child {
    border-bottom: none;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.section h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.section p {
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.feature-card {
    background-color: var(--bg-secondary);
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all 0.2s;
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(10, 132, 255, 0.2);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.feature-icon i {
    display: block;
}

.feature-card h3 {
    margin-top: 0;
    font-size: 17px;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-tertiary);
    font-size: 14px;
    margin: 0;
}

/* Code Blocks - GitHub Style */
.code-block {
    background-color: #161b22;
    border: 1px solid #30363d;
    border-radius: 6px;
    overflow: hidden;
    margin: 16px 0;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    max-width: 100%;
}

/* Show More Button - Redirects to Checkout */
.show-more-btn {
    width: 100%;
    background: linear-gradient(135deg, #0A84FF 0%, #409CFF 100%);
    border: none;
    border-top: 1px solid #30363d;
    color: #ffffff;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    font-family: 'Montserrat', inherit;
}

.show-more-btn:hover {
    background: linear-gradient(135deg, #409CFF 0%, #0A84FF 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 132, 255, 0.3);
}

.show-more-btn:active {
    transform: translateY(0);
}

.show-more-btn i {
    font-size: 14px;
}

/* Ensure code blocks don't overflow on mobile */
.code-block pre {
    word-break: normal;
    overflow-wrap: normal;
    white-space: pre;
}

.code-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background-color: #0d1117;
    border-bottom: 1px solid #30363d;
    font-size: 12px;
    color: #8b949e;
}

.code-block-header .code-language {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.code-block-header .copy-button {
    background: none;
    border: none;
    color: #8b949e;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.code-block-header .copy-button:hover {
    background-color: #21262d;
    color: #c9d1d9;
}

.code-block-header .copy-button:active {
    background-color: #30363d;
}

.code-block-header .copy-button.copied {
    color: #3fb950;
}

.code-block-header .copy-button i {
    font-size: 14px;
}

.code-block pre {
    margin: 0;
    padding: 16px;
    overflow-x: auto;
    background-color: #161b22;
    font-family: 'SF Mono', 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.45;
    color: #c9d1d9;
    tab-size: 2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Horizontal scrollbar styling */
.code-block pre::-webkit-scrollbar {
    height: 8px;
}

.code-block pre::-webkit-scrollbar-track {
    background: #0d1117;
}

.code-block pre::-webkit-scrollbar-thumb {
    background: #30363d;
    border-radius: 4px;
}

.code-block pre::-webkit-scrollbar-thumb:hover {
    background: #484f58;
}

.code-block code {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    padding: 0;
    border: none;
    border-radius: 0;
    white-space: pre;
    word-wrap: normal;
}

/* Syntax Highlighting Colors (GitHub Dark) */
.code-block code {
    color: #c9d1d9;
}

/* Swift-specific syntax colors */
.code-block code .keyword {
    color: #ff7b72; /* Red for keywords */
}

.code-block code .string {
    color: #a5d6ff; /* Blue for strings */
}

.code-block code .comment {
    color: #8b949e; /* Gray for comments */
    font-style: italic;
}

.code-block code .function {
    color: #d2a8ff; /* Purple for functions */
}

.code-block code .type {
    color: #79c0ff; /* Light blue for types */
}

.code-block code .number {
    color: #79c0ff; /* Light blue for numbers */
}

/* Inline code */
code:not(.code-block code) {
    background-color: rgba(110, 118, 129, 0.4);
    color: #c9d1d9;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'SF Mono', 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'Courier New', monospace;
    font-size: 85%;
    border: 1px solid rgba(110, 118, 129, 0.2);
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
    border-radius: var(--border-radius);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    table-layout: fixed;
}

.specs-table th,
.specs-table td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: middle;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.specs-table th {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.specs-table td {
    color: var(--text-tertiary);
    font-size: 14px;
    line-height: 1.5;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table tr:last-child {
    border-bottom: none;
}

/* Table responsive wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
}

.table-responsive .specs-table {
    min-width: 500px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.2s ease;
}

.feature-list li:hover {
    border-color: var(--primary-color);
    transform: translateX(4px);
}

.feature-list li i {
    color: var(--success-color);
    font-size: 16px;
    flex-shrink: 0;
}

/* Info Boxes */
.info-box {
    background-color: var(--bg-secondary);
    padding: 18px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    border-left: 3px solid var(--primary-color);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-color);
}

.info-box.warning {
    border-left-color: var(--warning-color);
}

.info-box h4 {
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 15px;
}

.info-box p {
    font-size: 14px;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 50px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.cta-box {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.cta-box h2 {
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--text-tertiary);
}

.cta-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 20px;
}

.cta-box .btn-primary,
.cta-box .btn-primary i {
    color: #FFFFFF !important;
}

/* Cart Link in Header */
.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-link i {
    font-size: 18px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Cart Page */
.cart-page {
    padding-top: 40px;
    padding-bottom: 60px;
    min-height: calc(100vh - 200px);
}

.cart-header {
    margin-bottom: 32px;
}

.cart-header h1 {
    font-size: 28px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-header h1 i {
    color: var(--primary-color);
}

.cart-subtitle {
    color: var(--text-muted);
    font-size: 14px;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    border-color: var(--primary-color);
}

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

.cart-item-icon i {
    font-size: 24px;
    color: white;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-details p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.cart-item-platform {
    display: inline-block;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.cart-item-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--success-color);
    margin-right: 16px;
}

.cart-item-remove {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    background: rgba(255, 69, 58, 0.1);
    border-color: var(--error-color);
    color: var(--error-color);
}

/* Cart Summary */
.cart-summary {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.summary-row span:first-child {
    color: var(--text-muted);
}

.summary-row .discount {
    color: var(--success-color);
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 16px 0;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 700;
}

.summary-row.total span:last-child {
    color: var(--success-color);
}

.btn-checkout {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10, 132, 255, 0.4);
}

.btn-continue {
    width: 100%;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    text-decoration: none;
}

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

/* Empty Cart */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.empty-icon {
    width: 120px;
    height: 120px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.empty-icon i {
    font-size: 48px;
    color: var(--text-muted);
}

.cart-empty h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.cart-empty p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.btn-browse {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-browse:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10, 132, 255, 0.4);
}

/* Cart Page Responsive */
@media (max-width: 900px) {
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: static;
    }
}

@media (max-width: 640px) {
    .cart-header h1 {
        font-size: 22px;
    }
    
    .cart-item {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .cart-item-icon {
        width: 48px;
        height: 48px;
    }
    
    .cart-item-icon i {
        font-size: 20px;
    }
    
    .cart-item-details {
        flex: 1;
        min-width: calc(100% - 140px);
    }
    
    .cart-item-price {
        margin-right: 8px;
    }
    
    .cart-count {
        top: -6px;
        right: -6px;
        min-width: 16px;
        height: 16px;
        font-size: 10px;
    }
}

/* Footer */
footer {
    background-color: var(--bg-secondary);
    color: var(--text-muted);
    padding: 16px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
}

.muted {
    color: var(--text-muted);
    font-size: 13px;
}

/* ===== CHECKOUT PAGE - Professional Redesign ===== */
.checkout-container {
    background-color: var(--bg-primary);
    min-height: calc(100vh - 150px);
    padding: 30px 0;
}

.checkout-layout {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    align-items: start;
}

/* Left Section - Payment Form */
.checkout-left {
    background-color: var(--bg-secondary);
    padding: 28px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.checkout-left h1 {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 600;
}

/* Payment Methods - Like Stripe */
.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.payment-method-btn {
    padding: 12px;
    border: 1.5px solid var(--border-color);
    background-color: var(--bg-primary);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-secondary);
}

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

.payment-method-btn.active {
    border-color: var(--primary-color);
    background-color: rgba(10, 132, 255, 0.1);
    color: var(--primary-color);
}

.payment-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon i {
    display: block;
}

/* Form Styles - Professional */
.payment-form {
    animation: fadeIn 0.25s;
}

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

.email-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 132, 255, 0.1);
    border: 1px solid rgba(10, 132, 255, 0.3);
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--primary-color);
}

.email-notice i {
    font-size: 16px;
    flex-shrink: 0;
}

.email-note {
    font-size: 11px;
    color: var(--text-muted);
    margin-left: 8px;
    margin-top: -8px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.form-group {
    margin-bottom: 12px;
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s;
    background-color: var(--input-bg);
    color: var(--text-primary);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238E8E93' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: 10px;
}

/* Enhanced Country Select Dropdown */
.country-select {
    position: relative;
    font-weight: 400;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.country-select:hover {
    border-color: var(--primary-color);
}

.country-select:focus {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230A84FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    outline: none;
}

/* Custom scrollbar for dropdown in Webkit browsers */
.country-select::-webkit-scrollbar {
    width: 8px;
}

.country-select::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

.country-select::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

.country-select::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Option styling */
.country-select option {
    padding: 10px 14px;
    transition: background-color 0.2s;
    font-size: 14px;
    min-height: 44px;
    line-height: 1.5;
}

.country-select option:hover {
    background-color: var(--bg-tertiary);
}

.country-select option:checked {
    background-color: var(--primary-color);
    color: var(--text-primary);
}

/* First option (placeholder) styling */
.country-select option[value=""] {
    color: var(--text-muted);
}

/* Select dropdown styling for placeholder text */
.country-select:invalid {
    color: var(--text-muted);
}

.country-select:valid {
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.1);
}

.form-group input::placeholder,
.form-group select option[value=""] {
    color: var(--text-muted);
    font-weight: 400;
}

/* Card Number Group with Brand Icons */
.card-number-group {
    position: relative;
}

.card-brands {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 6px;
    pointer-events: none;
}

.card-brands i {
    font-size: 24px;
    opacity: 0.3;
    transition: opacity 0.2s;
}

.card-number-group input:focus ~ .card-brands i {
    opacity: 0.5;
}

/* Adjust padding for card number input to make room for icons */
.card-number-group input {
    padding-right: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
}

/* Card Icons in Input */
.card-input-wrapper {
    position: relative;
}

.card-icons {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 4px;
}

.card-icon {
    width: 28px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
}

/* Coming Soon Box */
.coming-soon-box {
    text-align: center;
    padding: 40px 24px;
    background-color: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.coming-soon-icon {
    font-size: 56px;
    margin-bottom: 16px;
    color: var(--warning-color);
}

.coming-soon-icon i {
    display: block;
}

.coming-soon-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.coming-soon-box p {
    color: var(--text-tertiary);
    margin-bottom: 20px;
    font-size: 14px;
}

/* Right Section - Order Summary */
.checkout-right {
    position: sticky;
    top: 80px;
}

.order-summary {
    background-color: var(--bg-secondary);
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.order-summary h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.product-details h4 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 600;
}

.product-details p {
    color: var(--text-tertiary);
    margin-bottom: 12px;
    font-size: 13px;
}

.features-list {
    list-style: none;
    margin-top: 12px;
}

.features-list li {
    padding: 5px 0;
    color: var(--text-tertiary);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-list li i {
    color: var(--success-color);
    font-size: 11px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 14px 0;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-tertiary);
}

.total-row.final {
    font-size: 18px;
    font-weight: 700;
    margin-top: 8px;
    color: var(--text-primary);
}

.total-amount {
    color: var(--text-primary);
}

/* Guarantee Box */
.guarantee-box {
    background: linear-gradient(135deg, rgba(50, 215, 75, 0.15) 0%, rgba(48, 209, 88, 0.1) 100%);
    color: var(--text-primary);
    padding: 18px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(50, 215, 75, 0.3);
}

.guarantee-box h4 {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guarantee-box h4 i {
    color: var(--success-color);
}

.guarantee-box p {
    font-size: 13px;
    color: var(--text-tertiary);
    margin: 0;
}

/* Security Badges */
.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 12px;
}

.security-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.security-badges i {
    font-size: 14px;
}

.terms-notice {
    margin-top: 16px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.terms-notice a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.terms-notice a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Success/Error Messages */
.success-message, .error-message {
    margin-top: 20px;
    padding: 18px;
    border-radius: 8px;
    text-align: center;
    animation: slideIn 0.3s;
}

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

.success-message {
    background-color: rgba(50, 215, 75, 0.15);
    border: 1.5px solid var(--success-color);
}

.success-icon {
    font-size: 48px;
    color: var(--success-color);
    margin-bottom: 12px;
}

.success-icon i {
    display: block;
}

.success-message h3 {
    color: var(--success-color);
    margin-bottom: 6px;
    font-size: 18px;
}

.success-message p {
    color: var(--text-tertiary);
    font-size: 14px;
}

/* Checkout Section Title */
.checkout-section-title {
    margin-bottom: 20px;
}

.checkout-section-title h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

/* Rating Container - Separate from Success Message */
.rating-container {
    margin-top: 16px;
    padding: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    animation: fadeInUp 0.4s ease;
}

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

.rating-prompt {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 16px;
    font-weight: 500;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.star-rating i {
    font-size: 36px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating i:hover {
    transform: scale(1.2);
}

.star-rating i.hovered {
    color: #FFD60A;
    transform: scale(1.15);
}

.star-rating i.active,
.star-rating i.filled {
    color: #FFD60A;
    animation: starPop 0.3s ease;
}

@keyframes starPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.btn-submit-rating {
    padding: 12px 32px;
    font-size: 14px;
    border-radius: 8px;
    margin-top: 4px;
}

.btn-submit-rating:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.rating-thanks {
    color: var(--success-color);
    font-size: 15px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    animation: fadeInUp 0.3s ease;
}

.rating-thanks i {
    color: #FF375F;
    font-size: 18px;
    animation: heartBeat 1s ease infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.error-message {
    background-color: rgba(255, 69, 58, 0.15);
    border: 1.5px solid var(--danger-color);
    color: var(--danger-color);
    font-size: 14px;
}

/* Loader */
.loader {
    border: 2.5px solid var(--border-color);
    border-top: 2.5px solid var(--primary-color);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    margin-left: 8px;
}

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

/* Mobile Order Summary */
.order-summary-mobile {
    display: none;
    background-color: var(--bg-secondary);
    padding: 18px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.order-summary-mobile h3 {
    font-size: 16px;
    margin-bottom: 14px;
}

.order-summary-mobile .product-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.order-summary-mobile .product-details h4 {
    font-size: 14px;
}

.order-summary-mobile .product-details p {
    font-size: 12px;
    color: var(--text-muted);
}

.order-summary-mobile .product-price {
    font-size: 16px;
}

.order-summary-mobile .total-row {
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    font-weight: 600;
}

/* Express Checkout */
.express-checkout {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.express-checkout-title {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 12px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.express-buttons {
    display: grid;
    gap: 10px;
}

.express-btn {
    padding: 12px;
    border: 1.5px solid var(--border-color);
    background-color: var(--bg-primary);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

.express-btn i {
    font-size: 16px;
}

.divider-text {
    text-align: center;
    position: relative;
    margin: 24px 0;
    color: var(--text-muted);
    font-size: 12px;
}

.divider-text::before,
.divider-text::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background-color: var(--border-color);
}

.divider-text::before {
    left: 0;
}

.divider-text::after {
    right: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-right {
        order: 1;
        position: static;
    }

    .checkout-left {
        order: 0;
    }

    .order-summary-mobile {
        display: none;
    }

    .order-summary {
        display: block;
    }
    
    
    /* Country dropdown mobile improvements */
    .country-select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 14px 40px 14px 16px;
        min-height: 48px; /* Better touch target */
    }
    
    .country-select option {
        font-size: 16px;
        padding: 12px 14px;
        min-height: 48px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero .subtitle {
        font-size: 16px;
    }
    
    .hero {
        padding: 50px 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Mobile Navbar */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 12px;
        border-top: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 65px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .nav-links a.btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .nav-brand h1 {
        font-size: 18px;
    }
    
    .nav-brand h1::before {
        font-size: 20px;
    }
}

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

    .navbar {
        padding: 12px 0;
    }
    
    .nav-brand h1 {
        font-size: 16px;
        gap: 8px;
    }
    
    .nav-brand h1::before {
        font-size: 18px;
    }
    
    .nav-links {
        top: 56px;
        padding: 16px;
    }
    
    .nav-links a {
        padding: 12px 16px;
        font-size: 14px;
    }

    .btn-large {
        padding: 11px 22px;
        font-size: 14px;
    }

    .checkout-left {
        padding: 20px;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Country dropdown small mobile */
    .country-select {
        font-size: 16px;
        padding: 12px 38px 12px 14px;
    }

    .section h2 {
        font-size: 24px;
    }

    .code-block {
        margin: 12px 0;
    }
    
    .code-block-header {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .code-block pre {
        padding: 12px;
        font-size: 12px;
        line-height: 1.4;
    }
    
    .code-block-header .copy-button {
        padding: 3px 6px;
        font-size: 11px;
    }
    
    .code-block-header .copy-button span {
        display: none;
    }
    
    .code-block-header .copy-button i {
        font-size: 12px;
    }
    
    /* Table mobile styles */
    .specs-table th,
    .specs-table td {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .table-responsive .specs-table {
        min-width: 400px;
    }
}



/* Scripts Showcase Grid */
.scripts-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.script-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 28px 24px;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.script-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.script-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.script-card:hover::before {
    opacity: 1;
}

.script-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.script-card-link:hover h3 {
    color: var(--primary-color);
}

.script-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform 0.3s ease;
}

.script-card:hover .script-icon {
    transform: scale(1.08);
}

.script-icon i {
    font-size: 28px;
    color: #FFFFFF;
}

.script-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.script-card p {
    color: var(--text-tertiary);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 18px;
    flex-grow: 1;
}

/* .script-price removed - prices no longer displayed on cards */

/* New Badge */
.new-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--success-color), #30E550);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(50, 215, 75, 0.3);
    z-index: 10;
    animation: pulseNew 2s ease-in-out infinite;
}

@keyframes pulseNew {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(50, 215, 75, 0.3);
    }
    50% {
        box-shadow: 0 2px 16px rgba(50, 215, 75, 0.6);
    }
}

/* Script Card Rating */
.script-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.script-rating .stars {
    display: flex;
    gap: 2px;
}

.script-rating .stars i {
    color: #FFB800;
    font-size: 14px;
}

.script-rating .rating-number {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.script-rating .rating-count {
    color: var(--text-muted);
    font-size: 13px;
}

/* Script Card Price */
.script-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--success-color);
    margin-top: 12px;
}

/* Script Language Badge */
.script-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    letter-spacing: 0.5px;
}

/* Script Card Buttons */
.script-buttons {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.btn-buy {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10, 132, 255, 0.4);
}

.btn-cart {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 46px;
    height: 46px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.btn-cart:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(10, 132, 255, 0.1);
}

.btn-cart.added {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

/* Responsive adjustments for scripts showcase */
@media (max-width: 1024px) {
    .scripts-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .scripts-showcase {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .script-card {
        padding: 20px 18px;
    }
    
    .new-badge {
        top: 12px;
        left: 12px;
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .script-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }
    
    .script-icon i {
        font-size: 24px;
    }
    
    .script-card h3 {
        font-size: 18px;
    }
    
    .script-card p {
        font-size: 13px;
    }
    
    .script-price {
        font-size: 20px;
    }
    
    .script-buttons {
        flex-direction: row;
    }
    
    .btn-buy {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .btn-cart {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* ==================== Legal/Info Pages ==================== */

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.legal-content ul li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.legal-content ul li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.text-link {
    color: var(--accent-color);
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

/* ==================== Contact Page ==================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(10, 132, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.response-time {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.social-links h3 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.25rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.contact-form-wrapper {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.1);
}

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

.contact-form .form-group select {
    cursor: pointer;
}

.contact-form button[type="submit"] {
    margin-top: 0.5rem;
    color: #FFFFFF !important;
}

.contact-form button[type="submit"] i {
    color: #FFFFFF !important;
}

.form-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
    text-align: center;
}

.form-note a {
    color: var(--accent-color);
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

/* ==================== About Page ==================== */

.about-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-intro h2 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

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

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

.benefit-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(10, 132, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.benefit-item h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

.commitment-box {
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.1) 0%, rgba(94, 92, 230, 0.1) 100%);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.commitment-box > p:first-child {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.commitment-text {
    color: var(--text-primary);
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

.commitment-author {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ==================== Footer ==================== */

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

/* ==================== Responsive for Info Pages ==================== */

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .commitment-box {
        padding: 2rem;
    }
    
    .commitment-text {
        font-size: 1.1rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}
