/* ================================
   Variables & Root Styles
================================ */
:root {
    --primary: #667eea;
    --primary-dark: #5a67d8;
    --secondary: #764ba2;
    --accent-pink: #f093fb;
    --accent-red: #f5576c;
    --accent-blue: #4facfe;
    --accent-cyan: #00f2fe;
    --accent-orange: #fa709a;
    --accent-yellow: #fee140;

    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-pink: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-red) 100%);
    --gradient-blue: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
    --gradient-orange: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-yellow) 100%);

    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --text-white: #ffffff;

    --bg-white: #ffffff;
    --bg-light: #f7f8fc;
    --bg-dark: #1a1a2e;

    --shadow-sm: 0 2px 8px rgba(102, 126, 234, 0.08);
    --shadow-md: 0 4px 20px rgba(102, 126, 234, 0.12);
    --shadow-lg: 0 8px 40px rgba(102, 126, 234, 0.16);
    --shadow-xl: 0 20px 60px rgba(102, 126, 234, 0.2);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* ================================
   Utility Classes
================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.bg-gradient {
    background: var(--gradient-primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================
   Section Headers
================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.section-icon svg {
    width: 100%;
    height: 100%;
}

.section-icon-light {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.section-icon-light svg {
    width: 100%;
    height: 100%;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.header-light h2 {
    color: var(--text-white);
}

.header-light p {
    color: rgba(255, 255, 255, 0.9);
}

/* ================================
   Buttons
================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

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

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

/* ================================
   Navigation
================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

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

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ================================
   Hero Section
================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -50px;
    animation-delay: -7s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 20%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(0, -50px) rotate(180deg); }
    75% { transform: translate(-30px, -30px) rotate(270deg); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--text-white);
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-content h1 .gradient-text {
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 24px;
}

.hero-feature-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-wrap svg {
    width: 28px;
    height: 28px;
}

.hero-feature-box span {
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 450px;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: floatCard 6s infinite ease-in-out;
}

.floating-card span {
    font-weight: 600;
    color: var(--text-primary);
}

.card-1 {
    top: 10%;
    right: 10%;
}

.card-2 {
    top: 40%;
    left: 0;
    animation-delay: -2s;
}

.card-3 {
    bottom: 15%;
    right: 20%;
    animation-delay: -4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.data-globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
}

.globe-ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotateRing 10s infinite linear;
}

.ring-1 { inset: 0; }
.ring-2 { inset: 20px; animation-direction: reverse; animation-duration: 15s; }
.ring-3 { inset: 40px; animation-duration: 20s; }

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.globe-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(102, 126, 234, 0.5);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ================================
   Custom Order Section
================================ */
.custom-order-box {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 50px;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(102, 126, 234, 0.1);
}

.custom-order-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.custom-order-icon svg {
    width: 100%;
    height: 100%;
}

.custom-order-content {
    flex: 1;
}

.custom-order-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.custom-order-content p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
}

/* ================================
   Target Audience
================================ */
.target-audience {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.audience-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.audience-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    color: var(--primary);
}

.audience-icon svg {
    width: 100%;
    height: 100%;
}

.audience-card span {
    font-weight: 600;
    color: var(--text-primary);
}

/* ================================
   Data Types Grid
================================ */
.data-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.data-type-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.data-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(102, 126, 234, 0.2);
}

.data-type-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.data-type-icon svg {
    width: 100%;
    height: 100%;
}

.data-type-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ================================
   Methods Grid
================================ */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.method-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.method-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.method-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

/* ================================
   Data Categories
================================ */
.data-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.category-tag {
    padding: 14px 28px;
    background: var(--bg-light);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

.category-tag:hover {
    background: var(--gradient-primary);
    color: var(--text-white);
    border-color: transparent;
    transform: translateY(-3px);
}

/* ================================
   Section Header with Image
================================ */
.section-header.with-image {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: right;
}

.section-header.with-image .section-header-content {
    flex: 1;
    max-width: 500px;
}

.section-header-image {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.section-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .section-header.with-image {
        flex-direction: column-reverse;
        text-align: center;
        gap: 24px;
    }

    .section-header-image {
        width: 150px;
        height: 150px;
    }
}

/* ================================
   Services Grid (Image + List Side by Side)
================================ */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.services-grid.with-image {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
}

.services-image {
    position: sticky;
    top: 100px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.services-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ================================
   Services List
================================ */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow-md);
}

.service-item .service-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    color: var(--primary);
}

.service-item .service-icon svg {
    width: 100%;
    height: 100%;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.service-content p {
    color: var(--text-secondary);
}

/* ================================
   Benefits Grid
================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

/* ================================
   Official Data Section
================================ */
.official-content {
    max-width: 800px;
    margin: 0 auto;
}

.official-text {
    color: var(--text-white);
    text-align: center;
}

.official-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.official-text .section-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.official-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: right;
}

.official-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.official-feature svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.official-feature span {
    font-size: 0.95rem;
}

/* ================================
   Value Grid
================================ */
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--bg-light);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: var(--shadow-md);
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

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

/* ================================
   Cases Grid
================================ */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.case-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--primary);
}

.case-icon svg {
    width: 100%;
    height: 100%;
}

.case-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.case-card p {
    color: var(--text-secondary);
}

/* ================================
   Gold Features
================================ */
.gold-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.gold-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--bg-light);
    border-radius: 50px;
    transition: var(--transition);
}

.gold-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.gold-feature svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.gold-feature span {
    font-weight: 600;
    color: var(--text-primary);
}

/* ================================
   Database Stats
================================ */
.database-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.db-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--text-white);
}

.db-number {
    font-size: 3.5rem;
    font-weight: 900;
    display: block;
}

.db-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.9;
}

.db-label {
    display: block;
    margin-top: 12px;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* ================================
   Contains Grid
================================ */
.contains-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contain-item {
    padding: 24px 32px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contain-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ================================
   Features List
================================ */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon-sm {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--primary);
}

.feature-icon-sm svg {
    width: 100%;
    height: 100%;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

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

/* ================================
   CTA Section
================================ */
.cta-section {
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.cta-icon svg {
    width: 100%;
    height: 100%;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* ================================
   Footer
================================ */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 80px;
    justify-content: flex-end;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--text-white);
    padding-right: 8px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

/* ================================
   Responsive Design
================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-feature-box {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .custom-order-box {
        flex-direction: column;
        text-align: center;
    }

    .target-audience {
        grid-template-columns: 1fr;
    }

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

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

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

    .official-features {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .features-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-feature-box {
        flex-direction: column;
        text-align: center;
    }

    .data-types-grid,
    .methods-grid,
    .benefits-grid,
    .value-grid,
    .contains-grid {
        grid-template-columns: 1fr;
    }

    .custom-order-box {
        padding: 30px 24px;
    }

    .custom-order-icon {
        width: 70px;
        height: 70px;
    }

    .custom-order-content h2 {
        font-size: 1.5rem;
    }

    .custom-order-content p {
        font-size: 1.05rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .services-grid.with-image {
        grid-template-columns: 1fr;
    }

    .services-image {
        position: relative;
        top: 0;
        max-width: 350px;
        margin: 0 auto;
    }

    .gold-features {
        flex-direction: column;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
}

/* ================================
   Animations
================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* ================================
   Floating WhatsApp Button
================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ================================
   Header Intro Bars
================================ */
.header-intro-bar {
    background: var(--gradient-primary);
    padding: 12px 0;
    text-align: center;
}

.header-intro-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.intro-text {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.intro-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.header-categories-bar {
    background: var(--bg-dark);
    padding: 10px 0;
    text-align: center;
}

.categories-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Adjust navbar position for intro bars */
.navbar {
    top: 0;
}

.header-intro-bar + .header-categories-bar + .navbar {
    position: relative;
}

/* ================================
   Footer Keywords Section
================================ */
.footer-keywords {
    background: var(--bg-light);
    text-align: center;
}

.keywords-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.keywords-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.keyword-tag {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    border: 2px solid rgba(102, 126, 234, 0.15);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.keyword-tag:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ================================
   Responsive - New Elements
================================ */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }

    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }

    .header-intro-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .intro-text {
        font-size: 0.9rem;
    }

    .categories-text {
        font-size: 0.85rem;
    }

    .keywords-title {
        font-size: 1.25rem;
    }

    .keyword-tag {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}
