@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --bg-color: #000000;
    --text-color: #ededed;
    --text-secondary: #a1a1aa;
    
    /* Surface Colors */
    --card-bg: #0a0a0a;
    --nav-bg: rgba(0, 0, 0, 0.8);
    --border-color: rgba(255, 255, 255, 0.1);
    --hover-bg: rgba(255, 255, 255, 0.05);
    
    /* Branding */
    --primary-color: #ff3366; /* vibrant primary */
    --primary-hover: #e62e5c;
    --secondary-bg: #111111;
    --accent-gradient: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%); /* Bold Sunset Premium */
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Radius */
    --radius-xl: 16px;
    --radius-lg: 12px;
    --radius-md: 8px;
    --radius-sm: 6px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    background-image: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15), transparent 50%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #050505;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
}

/* Sidebar Navigation (Software Left Nav) */
.sidebar {
    width: 260px;
    height: 100vh;
    box-sizing: border-box;
    overflow-y: auto;
    background: var(--nav-bg);
    border-right: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
}

.sidebar-logo {
    padding: 0 2rem 2.5rem;
    display: block;
    text-decoration: none;
}

.sidebar-logo strong {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
}

.sidebar-nav {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    gap: 4px;
}

.sidebar-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-nav a:hover, .sidebar-nav a.active {
    color: #ffffff;
    background: var(--hover-bg);
}

.sidebar-nav a.upgrade {
    color: var(--primary-color);
    margin-top: 10px;
    background: rgba(59, 130, 246, 0.05);
}

.sidebar-nav a.upgrade:hover {
    background: rgba(59, 130, 246, 0.1);
}

/* Software Top Header */
.main-wrapper {
    margin-left: 260px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-header {
    height: 70px;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.5rem;
    position: sticky;
    top: 0;
    z-index: 90;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Public Navbar (Website Top Nav) */
.public-navbar {
    height: 80px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-sizing: border-box;
}

.public-navbar .nav-brand a {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.public-navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.public-navbar .nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.public-navbar .nav-links a:hover {
    color: #fff;
}

/* Containers */
.container {
    animation: fadeIn 0.5s ease forwards;
}

.container-app {
    padding: 3rem 2.5rem;
    flex-grow: 1;
    max-width: 100%;
    margin: 0;
}

.container-public {
    padding: 120px 2rem 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 120px);
}

/* Landing Page Sections (index.php) */
.hero-section {
    text-align: center;
    padding: 120px 20px;
    background-image: radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.1), transparent 70%);
}
.hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    line-height: 1.1;
}
.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.6;
}
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.featured-services-section {
    margin-bottom: 100px;
}

.cta-section {
    background: var(--accent-gradient) !important;
    text-align: center;
    padding: 80px 40px !important;
    border: none !important;
}
.cta-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff !important;
}
.cta-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.25rem;
    margin-bottom: 40px;
}
.cta-btn {
    background: #fff !important;
    color: #000 !important;
    padding: 18px 60px !important;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px !important;
}

@media (max-width: 850px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        flex-direction: column;
        padding: 1.2rem 1rem 0.5rem 1rem;
        border-right: none;
        border-bottom: none; /* Merged with top-header visually */
        background: rgba(0,0,0,0.95);
    }
    .sidebar-logo {
        padding: 0 0 1rem 0;
        text-align: center;
    }
    .sidebar-logo strong {
        font-size: 1.35rem; /* Slightly smaller logo on mobile */
    }
    .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .sidebar-nav a {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: 50px;
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    .sidebar > div[style*="margin-top:auto"] {
        margin-top: 1rem !important;
        border-top: none !important;
        padding: 0 !important;
        display: flex;
        justify-content: center;
    }
    .sidebar-download-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        border-radius: 50px; /* Streamlined pill to match design */
    }
    .main-wrapper {
        margin-left: 0;
    }
    .top-header {
        height: auto;
        padding: 0.5rem 1rem 1.2rem 1rem;
        flex-direction: column;
        gap: 12px;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: rgba(0,0,0,0.95);
        border-bottom: 1px solid var(--border-color); /* Final border under the whole block */
    }
    .top-header a.btn-auto {
        border-radius: 50px !important;
        padding: 4px 14px !important;
    }
    .public-navbar {
        padding: 0 1.5rem;
        height: 70px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }
    .container-app {
        padding: 1.5rem 1rem;
    }
    .container-public {
        padding: 2rem 1rem;
    }
    .card {
        padding: 1.5rem;
    }
    
    /* Modify the flex gap layout for mobile top header tags */
    .top-header > div:last-child {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 8px;
        line-height: 1;
    }
    
    table, tbody, tr, th, td, form {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    th {
        display: none; /* Hide standard headers and use data labels */
    }
    tr {
        margin-bottom: 1.5rem;
        background: rgba(255,255,255,0.02);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 1rem;
    }
    td {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        gap: 6px;
    }
    td:last-child {
        border-bottom: none;
    }
    td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-secondary);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    td > input, td > select, td > .btn, td > div {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* The Cards (Sleek Dark Mode) */
.card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.card h3 {
    margin-top: 0;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Forms & Inputs */
.form-group input, .form-group select,
input[type="text"], input[type="password"], input[type="date"], input[type="number"], select, textarea, input[type="file"] {
    width: 100%;
    padding: 12px 16px;
    margin: 10px 0;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #000000;
    color: var(--text-color);
    font-family: var(--font-family);
    box-sizing: border-box;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    outline: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px !important;
}
select option {
    background: #111111;
    color: var(--text-color);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
}

/* File Input Chooser */
input[type="file"] {
    background: transparent;
    padding: 10px 10px;
}
input[type="file"]::file-selector-button {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    margin-right: 15px;
    transition: all 0.2s ease;
}
input[type="file"]::file-selector-button:hover {
    background: #e5e5e5;
    transform: scale(0.98);
}

/* Linear-style Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 24px;
    background: #ffffff;
    color: #000000 !important;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

/* Transparent/ghost button variant — white text on dark backgrounds */
.btn[style*="background: transparent"],
.btn[style*="background:transparent"],
.btn-ghost {
    color: rgba(255,255,255,0.75) !important;
}

.btn:hover {
    background: #e5e5e5;
    transform: scale(0.98);
}

.btn-primary {
    background: var(--primary-color);
    color: #ffffff !important;
}

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

.btn-auto {
    width: auto;
}

/* Copy Button */
.copy-btn {
    background: var(--secondary-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: var(--hover-bg);
    border-color: rgba(255,255,255,0.3);
}

/* Category Grid & Cards */
.category-grid {
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
    margin-top: 20px;
}

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

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

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

.category-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.category-thumb-placeholder {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

/* Tables */
.table-responsive-wrapper {
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

th, td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

/* Copy Icon Button */
.copy-icon-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    vertical-align: middle;
    margin-left: 6px;
}
.copy-icon-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

th {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

tr:hover td {
    background: var(--hover-bg);
}

/* Utilities */
.hidden-ctx { display: none; }
.flex { display: flex; gap: 20px; }

/* Login Page Styling */
.login-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #000;
    background-image: radial-gradient(circle at 50% -20%, rgba(139, 92, 246, 0.4), transparent 60%);
}

.login-container {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    animation: fadeIn 0.4s ease forwards;
}

.login-container h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.error-msg {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    padding: 12px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Modal & Video */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
    z-index: 1000; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content {
    background: #000; width: 100%; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: 0 0 50px rgba(0,0,0,0.8); aspect-ratio: 16/9;
    border: 1px solid var(--border-color);
}
.modal-close {
    position: absolute; top: -45px; right: 0; color: var(--text-secondary); font-size: 2.5rem;
    background: none; border: none; cursor: pointer; transition: color 0.2s;
    line-height:1; padding:0;
}
.modal-close:hover { color: #fff; }
.video-trigger {
    display: inline-flex; align-items: center; background: rgba(255, 255, 255, 0.05);
    color: var(--text-color); padding: 10px 16px; border-radius: var(--radius-md);
    font-weight: 500; font-size: 0.9rem; cursor: pointer; transition: all 0.2s ease;
    border: 1px solid var(--border-color);
}
.video-trigger:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-1px); }

/* Footer Logic */
footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.footer-tagline {
    font-size: 0.85rem;
    margin: 0;
    max-width: 350px;
    line-height: 1.5;
}

.footer-links-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.footer-link:hover {
    color: #fff;
}

.footer-dot {
    color: rgba(255,255,255,0.15);
}

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

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: var(--text-secondary);
    transition: all 0.2s ease;
    display: flex;
}

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

.footer-socials i {
    width: 18px;
    height: 18px;
}

.footer-app {
    margin-left: 0; 
}

.footer-public {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 850px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px;
        align-items: flex-start;
    }
    footer {
        padding: 2.5rem 1.5rem;
    }
}

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

/* Sidebar Download Button */
.sidebar-download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.15) 0%, rgba(238, 9, 121, 0.15) 100%);
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: var(--radius-md);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sidebar-download-btn:hover {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.25) 0%, rgba(238, 9, 121, 0.25) 100%);
    border-color: rgba(255, 106, 0, 0.5);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.15);
}

.dl-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceArrow 2s ease-in-out infinite;
}

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

/* Mobile Navbar Layout */
.hamburger-menu {
    display: none;
    cursor: pointer;
    color: #fff;
}
.hamburger-menu:hover {
    color: var(--primary-color);
}

@media (max-width: 850px) {
    .hamburger-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: var(--radius-md);
        background: rgba(255,255,255,0.03);
        border: 1px solid var(--border-color);
        transition: all 0.2s ease;
    }
    
    .hamburger-menu:hover {
        background: var(--hover-bg);
        border-color: rgba(255,255,255,0.2);
    }

    .public-navbar {
        justify-content: space-between;
        flex-direction: row;
        background: rgba(0,0,0,0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        top: 0;
        left: 0;
        width: 100%;
    }

    .public-navbar .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 20px 0;
        gap: 0;
        border-bottom: 1px solid var(--border-color);
        animation: slideDownNav 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .public-navbar .nav-links a {
        width: 100%;
        padding: 15px 30px;
        box-sizing: border-box;
        border-bottom: 1px solid rgba(255,255,255,0.03);
        font-size: 1.1rem;
        color: var(--text-secondary);
    }

    .public-navbar .nav-links a:last-child {
        border-bottom: none;
        margin-top: 10px;
        padding: 20px 30px;
    }

    .public-navbar .nav-links a:hover {
        background: var(--hover-bg);
        color: #fff;
    }

    .public-navbar .nav-links.active {
        display: flex;
    }

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

    /* Landing Page Mobile Fixes */
    .hero-section {
        padding: 80px 15px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    .hero-btns .btn {
        width: 100%;
        padding: 14px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    .features-grid .card {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .cta-section {
        padding: 60px 20px !important;
    }
    .cta-title {
        font-size: 2rem;
    }
    .cta-subtitle {
        font-size: 1rem;
    }
    .cta-btn {
        width: 100%;
        padding: 15px 15px !important;
        font-size: 1rem;
        white-space: normal;
        text-align: center;
    }
}
