:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #3b82f6;
    /* Modern Blue */
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--primary-color);
}

a {
    color:rgb(147, 147, 147);
    text-decoration: none;
    transition: var(--transition);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}
/* İçindekiler Kutusu Tasarımı */
#toc_container {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: table; /* İçerik kadar genişlemesi için */
}

#toc_container p.toc_title {
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

#toc_container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#toc_container ul li a {
    text-decoration: none;
    color: #333;
}

#toc_container ul li a:hover {
    color: #d93025; /* Senin marka rengin */
    text-decoration: underline;
}
.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    margin-left: 1rem;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #333;
    border-color: #333;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 8px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, #f3f4f6, #ffffff);
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #000, #444);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cards */
.card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
    background: #fff;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.service-card .icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Pricing */
.pricing-card {
    text-align: center;
    padding: 3rem 2rem;
}

.pricing-card.featured {
    background: var(--primary-color);
    color: white;
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured li {
    color: white;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
    color: var(--primary-color);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-card li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
}

h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    margin-left: 1rem;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #333;
    border-color: #333;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 8px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, #f3f4f6, #ffffff);
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #000, #444);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cards */
.card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
    background: #fff;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.service-card .icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Pricing */
.pricing-card {
    text-align: center;
    padding: 3rem 2rem;
}

.pricing-card.featured {
    background: var(--primary-color);
    color: white;
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured li {
    color: white;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
    color: var(--primary-color);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-card li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
}

h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    margin-left: 1rem;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #333;
    border-color: #333;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-radius: 8px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, #f3f4f6, #ffffff);
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #000, #444);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cards */
.card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
    background: #fff;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.service-card .icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Pricing */
.pricing-card {
    text-align: center;
    padding: 3rem 2rem;
}

.pricing-card.featured {
    background: var(--primary-color);
    color: white;
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured li {
    color: white;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
    color: var(--primary-color);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-card li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
}

h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    margin-left: 1rem;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #333;
    border-color: #333;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 8px;
}

/* Assuming this is part of a .page-header rule that was cut off */
.page-header {
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
    background: linear-gradient(to right, #fff, #edf2f299);
    padding: 88px 0;
    margin-top: 0;
}

.page-header h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 300 !important;
    font-size: 3.5rem !important;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111 !important;
    letter-spacing: -0.03em;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.download-section h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.download-section .lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.btn-download {
    background-color: #3b82f6;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
}

.btn-download:hover {
    background-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    color: white;
}

/* Scroll Animations */
/* .reveal { removed to fix nesting error */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Pricing */
.pricing-card {
    text-align: center;
    padding: 3rem 2rem;
}

.pricing-card.featured {
    background: var(--primary-color);
    color: white;
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured li {
    color: white;
}

.pricing-card .price {
    color: #00BBFF;
  background-image: linear-gradient(45deg, #00BBFF , #05968D 50%, #000000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size:40px;
  font-weight: 300;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-card li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
}

h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}

.nav-link {
    font-weight: 300;
    color: #555;
    font-size: 1.15rem;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #333;
    border-color: #333;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
}

.download-section .lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.btn-download {
    background-color: #3b82f6;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
}

.btn-download:hover {
    background-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    color: white;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Firefox-style Features (Restored & Refined) */
.feature-section {
    padding: 80px 0;
    overflow: hidden;
}

.feature-section.bg-dark-alt {
    background-color: #1a1a1a;
    color: white;
}

.feature-title {
    font-size: 2.5rem;
    font-weight: 500;
    /* Not bold, but not too thin */
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.feature-desc {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 400;
    max-width: 600px;
}

.bg-dark-alt .feature-title {
    color: white;
}

.bg-dark-alt .feature-desc {
    color: rgba(255, 255, 255, 0.7);
}

.feature-icon-large {
    font-size: 6rem;
    /* Large icons as requested */
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 10px 20px rgba(59, 130, 246, 0.2));
    /* Add shadow for better visibility */
}

/* =========================================
   ANTIGRAVITY REDESIGN STYLES
   ========================================= */

/* Hero Section Overrides */
.hero-section {
    padding: 140px 0 100px !important;
    background: #ffffff !important;
    position: relative;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 300 !important;
    font-size: 4.5rem !important;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111 !important;
    letter-spacing: -0.03em;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.hero-section .lead {
    font-weight: 300;
    color: #555;
    font-size: 1.25rem;
}

/* Buttons */
.btn-pill {
    border-radius: 50px !important;
    padding: 12px 40px !important;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}
/* Mobilde (Tablet ve Telefon) devreye girecek kod */
@media (max-width: 768px) {
    .btn-pill {
        font-size: 13px !important;
        /* Tavsiye: Mobilde padding'i de biraz kısalım ki buton çok kaba durmasın */
        padding: 10px 25px !important; 
    }
}
/* Service / Feature Cards (Antigravity Style) */
.antigravity-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.antigravity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

.icon-canvas-container {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.icon-canvas {
    width: 100%;
    height: 100%;
}

.antigravity-card h3 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111;
}

.antigravity-card p {
    color: #666;
    font-weight: 300;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.btn-gradient {
    background: linear-gradient(135deg, #3b82f6, #414141);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 10px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    color: white;
}

/* =========================================
   MEGA MENU STYLES
   ========================================= */

.has-megamenu {
    position: static !important;
}

/* Open on hover for desktop */
@media (min-width: 992px) {
    .has-megamenu:hover .megamenu {
        display: block;
        margin-top: 0;
        animation: fadeIn 0.3s ease;
    }
}

.megamenu {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 0;
    border-radius: 0 0 16px 16px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.megamenu-item {
    display: block;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    color: var(--text-color);
    text-decoration: none;
    height: 100%;
}

.megamenu-item:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    color: var(--primary-color);
}

.megamenu-item .icon-wrapper {
    width: 50px;
    height: 50px;
    background: #f3f4f6;
    /* Light gray bg */
    color: #374151;
    /* Dark gray icon */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.megamenu-item:hover .icon-wrapper {
    background: #111;
    /* Black bg on hover */
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.megamenu-item h6 {
    font-weight: 600;
    color: #1e293b;
    position: relative;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 300 !important;
    font-size: 4.5rem !important;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111 !important;
    letter-spacing: -0.03em;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.hero-section .lead {
    font-weight: 300;
    color: #555;
    font-size: 1.25rem;
}

/* Buttons */
.btn-pill {
    border-radius: 50px !important;
    padding: 12px 40px !important;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Service / Feature Cards (Antigravity Style) */
.antigravity-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.antigravity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

.icon-canvas-container {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.icon-canvas {
    width: 100%;
    height: 100%;
}

.antigravity-card h3 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111;
}

.antigravity-card p {
    color: #666;
    font-weight: 300;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.btn-gradient {
    background: linear-gradient(135deg, #3b82f6, #414141);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 10px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    color: white;
}

/* =========================================
   MEGA MENU STYLES
   ========================================= */

.has-megamenu {
    position: static !important;
}

/* Open on hover for desktop */
@media (min-width: 992px) {
    .has-megamenu:hover .megamenu {
        display: block;
        margin-top: 0;
        animation: fadeIn 0.3s ease;
    }
}

.megamenu {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 0;
    border-radius: 0 0 16px 16px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.megamenu-item {
    display: block;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    color: var(--text-color);
    text-decoration: none;
    height: 100%;
}

.megamenu-item:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    color: var(--primary-color);
}

.megamenu-item .icon-wrapper {
    width: 50px;
    height: 50px;
    background: #f3f4f6;
    /* Light gray bg */
    color: #374151;
    /* Dark gray icon */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.megamenu-item:hover .icon-wrapper {
    background: #111;
    /* Black bg on hover */
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.megamenu-item h6 {
    font-weight: 300;
    color: #050505;
}

.megamenu-item small {
    color: #64748b;
    font-weight: 400;
}

/* Footer Brand Text */
.footer-brand-text {
    font-family: 'Inter', sans-serif;
    font-size: 12vw;
    font-weight: 900;
    text-align: center;
    line-height: 1;
    margin-top: 2rem;
    margin-bottom: -4rem;
    /* Pull it down slightly */
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 20%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-background-clip: text;
    background-clip: text;

    .hero-section h1 {
        font-family: 'Inter', sans-serif;
        font-weight: 300 !important;
        font-size: 4.5rem !important;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        color: #111 !important;
        letter-spacing: -0.03em;
        background: none !important;
        -webkit-text-fill-color: initial !important;
    }

    .hero-section .lead {
        font-weight: 300;
        color: #555;
        font-size: 1.25rem;
    }

    /* Buttons */
    .btn-pill {
        border-radius: 50px !important;
        padding: 12px 40px !important;
        font-weight: 500;
        letter-spacing: 0.5px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .btn-pill:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    }

    /* Service / Feature Cards (Antigravity Style) */
    .antigravity-card {
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 20px;
        padding: 3rem 2rem;
        height: 100%;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .antigravity-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        border-color: rgba(59, 130, 246, 0.2);
    }

    .icon-canvas-container {
        width: 120px;
        height: 120px;
        margin-bottom: 2rem;
        position: relative;
        margin-left: auto;
        margin-right: auto;
    }

    .icon-canvas {
        width: 100%;
        height: 100%;
    }

    .antigravity-card h3 {
        font-weight: 600;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #111;
    }

    .antigravity-card p {
        color: #666;
        font-weight: 300;
        line-height: 1.7;
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }

    .btn-gradient {
        background: linear-gradient(135deg, #3b82f6, #414141);
        color: white;
        border: none;
        border-radius: 12px;
        padding: 10px 30px;
        font-weight: 500;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }

    .btn-gradient:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
        color: white;
    }

    /* =========================================
   MEGA MENU STYLES
   ========================================= */

    .has-megamenu {
        position: static !important;
    }

    /* Open on hover for desktop */
    @media (min-width: 992px) {
        .has-megamenu:hover .megamenu {
            display: block;
            margin-top: 0;
            animation: fadeIn 0.3s ease;
        }
    }

    .megamenu {
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 0;
        border-radius: 0 0 16px 16px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .megamenu-item {
        display: block;
        padding: 1.5rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        text-align: center;
        color: var(--text-color);
        text-decoration: none;
        height: 100%;
    }

    .megamenu-item:hover {
        background: #f8fafc;
        transform: translateY(-3px);
        color: var(--primary-color);
    }

    .megamenu-item .icon-wrapper {
        width: 50px;
        height: 50px;
        background: #f3f4f6;
        /* Light gray bg */
        color: #374151;
        /* Dark gray icon */
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin: 0 auto;
        transition: all 0.3s ease;
    }

    .megamenu-item:hover .icon-wrapper {
        background: #111;
        /* Black bg on hover */
        color: white;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .megamenu-item h6 {
        font-weight: 600;
        color: #1e293b;
    }

    color: #64748b;
    font-weight: 400;
}


/* Footer Brand Text */
.footer-brand-text {
    font-family: 'Inter', sans-serif;
    font-size: 12vw;
    font-weight: 900;
    text-align: center;
    line-height: 1;
    margin-top: 2rem;
    margin-bottom: -4rem;
    /* Pull it down slightly */
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 20%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.15;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.05em;
}

/* =========================================
   SEO SUCCESS STORIES (REFERENCES)
   ========================================= */

.success-section {
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.success-card {
    background: linear-gradient(145deg, #1f6fa0f0, #000);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 60%);
    pointer-events: none;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.success-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.success-domain {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.domain-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.domain-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.success-dots {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
    line-height: 0;
}

/* Ranking Table */
.rank-table {
    width: 100%;
}

.rank-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.rank-row:last-child {
    border-bottom: none;
}

.rank-keyword {
    color: #e8e8e8;
    font-weight: 500;
    font-size: 0.95rem;
    flex: 1;
}

.rank-stats {
    display: flex;
    gap: 1.5rem;
    text-align: center;
}

.rank-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.rank-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.63);
    margin-bottom: 0.25rem;
}

.rank-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.rank-initial {
    color: #d36948;
}

.rank-final {
    color: #4ade80;
    /* Green */
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.2);
    color: var(--primary-color);
}

.megamenu-item .icon-wrapper {
    width: 50px;
    height: 50px;
    background: #f3f4f6;
    /* Light gray bg */
    color: #374151;
    /* Dark gray icon */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.megamenu-item:hover .icon-wrapper {
    background: #111;
    /* Black bg on hover */
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}



/* Footer Brand Text */
.footer-brand-text {
    font-family: 'Inter', sans-serif;
    font-size: 12vw;
    font-weight: 900;
    text-align: center;
    line-height: 1;
    margin-top: 2rem;
    margin-bottom: -4rem;
    /* Pull it down slightly */
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 20%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.15;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.05em;
}

/* =========================================
   SEO SUCCESS STORIES (REFERENCES)
   ========================================= */

.success-section {
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.success-card {
    background: linear-gradient(145deg, #1f6fa0f0, #000);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 60%);
    pointer-events: none;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.success-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.success-domain {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.domain-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.domain-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.success-dots {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
    line-height: 0;
}

/* Ranking Table */
.rank-table {
    width: 100%;
}

.rank-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.rank-row:last-child {
    border-bottom: none;
}

.rank-keyword {
    color: #e8e8e8;
    font-weight: 500;
    font-size: 0.95rem;
    flex: 1;
}

.rank-stats {
    display: flex;
    gap: 1.5rem;
    text-align: center;
}

.rank-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.rank-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.63);
    margin-bottom: 0.25rem;
}

.rank-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.rank-initial {
    color: #d36948;
}

.rank-final {
    color: #4ade80;
    /* Green */
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.2);
}

.rank-change-icon {
    font-size: 0.8rem;
    margin-left: 4px;
}

/* Pricing Cards */
.pricing-card {
    transition: all 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color) !important;
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

color: #1e293b;
}

color: #64748b;
font-weight: 400;
}


/* Footer Brand Text */
.footer-brand-text {
    font-family: 'Inter', sans-serif;
    font-size: 12vw;
    font-weight: 900;
    text-align: center;
    line-height: 1;
    margin-top: 2rem;
    margin-bottom: -4rem;
    /* Pull it down slightly */
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 20%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.15;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.05em;
}

/* =========================================
   SEO SUCCESS STORIES (REFERENCES)
   ========================================= */

.success-section {
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.success-card {
    background: linear-gradient(145deg, #1f6fa0f0, #000);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 60%);
    pointer-events: none;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.success-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.success-domain {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.domain-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.domain-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.success-dots {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
    line-height: 0;
}

/* Ranking Table */
.rank-table {
    width: 100%;
}

.rank-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.rank-row:last-child {
    border-bottom: none;
}

.rank-keyword {
    color: #e8e8e8;
    font-weight: 500;
    font-size: 0.95rem;
    flex: 1;
}

.rank-stats {
    display: flex;
    gap: 1.5rem;
    text-align: center;
}

.rank-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.rank-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.63);
    margin-bottom: 0.25rem;
}

.rank-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.rank-initial {
    color: #d36948;
}

.rank-final {
    color: #4ade80;
    /* Green */
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.2);
}

.rank-change-icon {
    font-size: 0.8rem;
    margin-left: 4px;
}

/* Pricing Cards */
.pricing-card {
    transition: all 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color) !important;
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-features li {
    font-size: 1.05rem;
    color: #555;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

/* =========================================
   GRADIENT FOOTER
   ========================================= */

.gradient-footer {
    position: relative;
    min-height: 500px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gradient-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 866px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%);

    left: -200px;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.gradient-bg::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 300px;
    background: radial-gradient(circle, rgb(5, 155, 175) 0%, transparent 70%);
    bottom: -150px;
    right: -50px;
    filter: blur(80px);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}

.gradient-footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    text-align: left;
    max-width: 600px;
}



.footer-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(9, 9, 9, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
}

.footer-cta {
    display: inline-block;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgb(12, 12, 12);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: white;
}

.footer-bottom {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1;
}

.footer-bottom p {
    gap: 1.5rem;
    text-align: center;
}

.rank-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.rank-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.63);
    margin-bottom: 0.25rem;
}

.rank-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.rank-initial {
    color: #d36948;
}

.rank-final {
    color: #4ade80;
    /* Green */
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.2);
}

.rank-change-icon {
    font-size: 0.8rem;
    margin-left: 4px;
}

/* Pricing Cards */
.pricing-card {
    transition: all 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color) !important;
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-features li {
    font-size: 1.05rem;
    color: #555;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

/* =========================================
   GRADIENT FOOTER
   ========================================= */

.gradient-footer {
    position: relative;
    min-height: 500px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gradient-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 866px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%);

    left: -200px;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.gradient-bg::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 300px;
    background: radial-gradient(circle, rgb(5, 155, 175) 0%, transparent 70%);
    bottom: -150px;
    right: -50px;
    filter: blur(80px);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}

.gradient-footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    text-align: left;
    max-width: 600px;
}

.footer-title {
  color: #00BBFF;
  background-image: linear-gradient(7deg, #00BBFF , #05968D 50%, #000000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size:50px;
  font-weight: 300;
}
.yazitipi {
  color: #00BBFF;
  background-image: linear-gradient(45deg, #00BBFF , #05968D 50%, #000000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size:50px;
  font-weight: 300;
}
.footer-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(9, 9, 9, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
}

.footer-cta {
    display: inline-block;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgb(12, 12, 12);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: white;
}

.footer-bottom {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 768px) {
    .gradient-footer {
        min-height: 400px;
        padding: 60px 0;
    }

    .footer-title {
        font-size: 2.5rem;
    }

    .footer-subtitle {
        font-size: 1rem;
    }
}

/* Footer Quick Links */
.footer-links {
    padding-top: 2rem;
}

.footer-links-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.footer-links-title i {
    color: #050505;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-links-list a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #3b82f6;
    transform: translateX(3px);
}