/* ==========================================
   4RABET VIP - Pure CSS Stylesheet
   ========================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Oswald:wght@500;700&display=swap');

/* CSS Variables */
:root {
    --primary-blue: #3486E3;
    --primary-dark: #1a5bb8;
    --accent-blue: #97CCF8;
    --bg-body: #F4F5F9;
    --bg-card: #FFFFFF;
    --bg-header: #FFFFFF;
    --text-main: #0B0E14;
    --text-secondary: #5A6A7E;
    --text-gray: #6B7280;
    --success-green: #28a745;
    --red-500: #EF4444;
    --border-color: #E5E7EB;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ==========================================
   HEADER / NAVBAR
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #E5E7EB;
}

.header.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 8px 16px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.875rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.05em;
    color: var(--primary-blue);
}

.logo-text span {
    color: var(--text-main);
}

/* Desktop Nav */
.nav-desktop {
    display: none;
    gap: 32px;
}

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.nav-desktop a:hover {
    color: var(--primary-blue);
}

.nav-desktop a.highlight {
    color: var(--red-500);
}

.nav-desktop a.highlight:hover {
    color: #DC2626;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    display: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary-blue);
    background: transparent;
    border: 1px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: rgba(52, 134, 227, 0.1);
}

.btn-register {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
    background: var(--primary-blue);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-menu {
    display: block;
    font-size: 1.5rem;
    color: var(--text-gray);
    background: none;
    margin-left: 8px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 60;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 80px 24px 0;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 1.875rem;
    color: var(--text-gray);
    background: none;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu-links a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-links a.highlight {
    color: var(--primary-blue);
    border-bottom: none;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    padding: 128px 16px 80px;
    position: relative;
    background: linear-gradient(135deg, #E6F0FA 0%, #FFFFFF 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, white, rgba(255,255,255,0.8), transparent);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(52, 134, 227, 0.1);
    color: var(--primary-blue);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    border: 1px solid rgba(52, 134, 227, 0.2);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--primary-blue);
}

.hero-description {
    color: var(--text-gray);
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    padding: 16px 32px;
    background: var(--primary-blue);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

.btn-secondary {
    padding: 16px 32px;
    background: white;
    color: var(--text-main);
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    filter: grayscale(1);
    opacity: 0.8;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item i {
    color: var(--success-green);
}

.trust-item span {
    font-size: 0.875rem;
    font-weight: 700;
}

/* Hero Image */
.hero-image {
    display: none;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid white;
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: rotate(0);
}

.floating-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #F3F4F6;
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-badge-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-badge-icon {
    background: rgba(34, 197, 94, 0.1);
    padding: 8px;
    border-radius: 50%;
    color: var(--success-green);
}

.floating-badge-text span {
    display: block;
}

.floating-badge-text .label {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 700;
    text-transform: uppercase;
}

.floating-badge-text .amount {
    font-weight: 700;
    color: var(--text-main);
}

/* ==========================================
   SEO CONTENT SECTION
   ========================================== */
.seo-section {
    padding: 64px 16px;
    background: white;
    border-top: 1px solid #F3F4F6;
}

.seo-section .container {
    max-width: 960px;
}

.seo-header {
    margin-bottom: 48px;
}

.seo-header h2 {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 16px;
}

.seo-header .divider {
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
    margin-bottom: 24px;
}

.seo-header p {
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Sports Betting Grid */
.sports-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

.sports-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.sports-content p {
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.7;
}

.sports-content ul {
    list-style: disc;
    list-style-position: inside;
    color: var(--text-gray);
}

.sports-content li {
    margin-bottom: 8px;
    margin-left: 8px;
}

.sports-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    height: 256px;
}

.sports-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Casino Content */
.casino-section {
    margin-bottom: 64px;
}

.casino-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 24px;
}

.casino-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
    align-items: center;
}

.casino-image {
    width: 100%;
}

.casino-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.casino-image img:hover {
    transform: scale(1.05);
}

.casino-content p {
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.7;
}

/* Bonus Box */
.bonus-box {
    background: rgba(52, 134, 227, 0.05);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(52, 134, 227, 0.1);
    margin-bottom: 64px;
}

.bonus-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.bonus-box > p {
    color: var(--text-gray);
    margin-bottom: 24px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.bonus-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.bonus-card h4 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bonus-card p {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.bonus-code {
    display: inline-block;
    background: #F3F4F6;
    color: var(--text-main);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: monospace;
}

.bonus-disclaimer {
    margin-top: 24px;
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* App Section */
.app-section {
    margin-bottom: 64px;
}

.app-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.app-section > p {
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.app-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.app-grid h4 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.app-grid ol {
    list-style: decimal;
    list-style-position: inside;
    color: var(--text-gray);
}

.app-grid ul {
    list-style: disc;
    list-style-position: inside;
    color: var(--text-gray);
}

.app-grid li {
    margin-bottom: 8px;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 48px;
}

.faq-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 24px;
}

.faq-section > p {
    color: var(--text-gray);
    margin-bottom: 32px;
}

.faq-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 16px;
}

.faq-item h5 {
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.faq-item p {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* ==========================================
   CASINO GAMES GRID
   ========================================== */
.games-section {
    padding: 80px 16px;
    background: var(--bg-body);
    border-top: 1px solid #E5E7EB;
}

.games-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 48px;
}

.games-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.games-header p {
    color: var(--text-gray);
}

.games-header .view-all {
    display: none;
    color: var(--primary-blue);
    font-weight: 700;
}

.games-header .view-all:hover {
    text-decoration: underline;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.game-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(52, 134, 227, 0.15);
    border-color: var(--primary-blue);
}

.game-card-image {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-card-image img {
    transform: scale(1.1);
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.game-card-overlay button {
    background: var(--primary-blue);
    color: white;
    padding: 8px 24px;
    border-radius: 9999px;
    font-weight: 700;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.game-card:hover .game-card-overlay button {
    transform: scale(1);
}

.game-card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: white;
}

.game-card-badge.hot {
    background: var(--red-500);
}

.game-card-badge.new {
    background: var(--primary-blue);
}

.game-card-info {
    padding: 16px;
}

.game-card-info h4 {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1rem;
}

.game-card-info p {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.load-more-btn {
    text-align: center;
    margin-top: 32px;
}

.load-more-btn button {
    padding: 12px 24px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    color: var(--text-gray);
    font-weight: 700;
    background: white;
    transition: all 0.3s ease;
}

.load-more-btn button:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* ==========================================
   SPORTS CTA SECTION
   ========================================== */
.sports-cta {
    padding: 80px 16px;
    background: white;
}

.sports-cta-box {
    background: linear-gradient(to right, var(--primary-blue), var(--primary-dark));
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    position: relative;
}

.sports-cta-content {
    padding: 40px;
    color: white;
    z-index: 10;
}

.sports-cta-content h2 {
    font-size: 1.875rem;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 24px;
}

.sports-cta-content p {
    color: rgba(191, 219, 254, 1);
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 400px;
}

.sports-cta-content button {
    padding: 16px 32px;
    background: white;
    color: var(--primary-blue);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: background 0.3s ease;
}

.sports-cta-content button:hover {
    background: #F3F4F6;
}

.sports-cta-image {
    position: relative;
    height: 256px;
}

.sports-cta-image .bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: overlay;
    opacity: 0.3;
}

.sports-cta-image .chips-img {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 110%;
    object-fit: contain;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.features-section {
    padding: 80px 16px;
    background: var(--bg-body);
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.features-header .divider {
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #F3F4F6;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(52, 134, 227, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin: 0 auto 24px;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-gray);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: white;
    border-top: 1px solid #E5E7EB;
    padding: 64px 16px 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo-text {
    font-size: 1.875rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.05em;
    color: var(--primary-blue);
}

.footer-brand .logo-text span {
    color: var(--text-main);
}

.footer-brand p {
    color: var(--text-gray);
    margin-top: 16px;
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-column h5 {
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column li a {
    color: var(--text-gray);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-column li a:hover {
    color: var(--primary-blue);
}

.footer-apps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--text-main);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.app-btn:hover {
    opacity: 0.8;
}

.app-btn i {
    font-size: 1.25rem;
}

.app-btn span {
    font-size: 0.75rem;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid #F3F4F6;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: 0.75rem;
    color: #9CA3AF;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons i {
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.social-icons i:hover {
    color: var(--primary-blue);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (min-width: 768px) {
    /* Header */
    .nav-desktop {
        display: flex;
    }
    
    .btn-login {
        display: block;
    }
    
    .btn-menu {
        display: none;
    }
    
    /* Hero */
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .hero-trust {
        justify-content: flex-start;
    }
    
    .hero-image {
        display: block;
    }
    
    /* SEO Section */
    .seo-header h2 {
        font-size: 2.25rem;
    }
    
    .sports-grid {
        grid-template-columns: 2fr 1fr;
    }
    
    .sports-image {
        height: auto;
    }
    
    .casino-grid {
        flex-direction: row;
    }
    
    .casino-image {
        width: 33.333%;
    }
    
    .casino-content {
        width: 66.667%;
    }
    
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-grid {
        flex-direction: row;
    }
    
    .app-grid > div {
        flex: 1;
    }
    
    /* Games Section */
    .games-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
    
    .games-header .view-all {
        display: inline-block;
    }
    
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .load-more-btn {
        display: none;
    }
    
    /* Sports CTA */
    .sports-cta-box {
        flex-direction: row;
    }
    
    .sports-cta-content {
        width: 50%;
        padding: 64px;
    }
    
    .sports-cta-content h2 {
        font-size: 3rem;
    }
    
    .sports-cta-image {
        width: 50%;
        height: auto;
    }
    
    .sports-cta-image .chips-img {
        margin-right: 40px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr repeat(3, auto);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #bfdbfe;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}
