/* ============================================
   RezRevolution Landing Page Styles
   Modern Gradient Design
   ============================================ */

:root {
    --primary-color: #2ecc71;
    --primary-dark: #27ae60;
    --primary-light: #6edb99;
    --accent-color: #43d08a;
    --accent-dark: #1a9c5b;
    --secondary-color: #858796;
    --success-color: #1cc88a;
    --info-color: #36b9cc;
    --warning-color: #f6c23e;
    --danger-color: #e74a3b;
    --light-color: #f4fdf7;
    --dark-color: #5a5c69;
    --white: #ffffff;
    --gray-100: #f4fdf7;
    --gray-200: #e0f5e9;
    --gray-300: #dddfeb;
    --gray-400: #d1d3e2;
    --gray-500: #b7b9cc;
    --gray-600: #858796;
    --gray-700: #6e707e;
    --gray-800: #5a5c69;
    --gray-900: #3a3b45;
    --gradient-primary: linear-gradient(135deg, #0a3d2a 0%, #145c3e 40%, #1a8a56 70%, #0d2b1e 100%);
    --gradient-secondary: linear-gradient(135deg, #0d2b1e 0%, #1a6b42 50%, #0a3d2a 100%);
    --gradient-accent: linear-gradient(135deg, #145c3e 0%, #1a8a56 50%, #0d2b1e 100%);
    --gradient-light: linear-gradient(135deg, #f4fdf7 0%, #e0f5e9 100%);
    --gradient-dark: linear-gradient(135deg, #0a1f15 0%, #061210 100%);
    --shadow-sm: 0 2px 8px rgba(46, 204, 113, 0.1);
    --shadow-md: 0 8px 25px rgba(46, 204, 113, 0.15);
    --shadow-lg: 0 15px 50px rgba(46, 204, 113, 0.2);
    --shadow-glow: 0 0 40px rgba(46, 204, 113, 0.3);
}

/* Base Styles */
body {
    font-family: 'Inter', 'Open Sans', sans-serif;
    color: var(--gray-800);
    line-height: 1.7;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--accent-dark);
}

/* Modern Buttons */
.btn {
    border: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: #4ade80;
    border: none;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: #4ade80;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero section buttons - high contrast */
.hero-buttons .btn-primary {
    background: var(--white);
    color: var(--accent-color) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary:hover {
    background: var(--white);
    color: var(--accent-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-light {
    background: var(--white);
    color: var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    background: var(--white);
    color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Navbar */
.navbar {
    padding: 0.3rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.navbar-transparent {
    background: transparent;
    box-shadow: none;
}

.navbar-transparent .nav-link {
    color: var(--white) !important;
}

.navbar-transparent .logo-dark {
    display: none;
}

.navbar-transparent .logo-white {
    display: block;
}

.navbar .logo-dark {
    display: block;
    max-width: 220px;
}

.navbar .logo-white {
    display: none;
    max-width: 220px;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled .nav-link {
    color: #000000 !important;
}

.navbar.scrolled .logo-dark {
    display: block;
}

.navbar.scrolled .logo-white {
    display: none;
}

.nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem !important;
}

.btn-plans {
    background: #4ade80;
    color: var(--white) !important;
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    border: none;
    box-shadow: var(--shadow-sm);
}

.btn-plans:hover {
    background: #4ade80;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-content h1 strong {
    color: #4ade80;
}

.hero-content .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-content .highlight {
    color: #4ade80;
    font-weight: 600;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 30px;
}

.hero-image img {
    max-width: 100%;
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header .breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.page-header .breadcrumb-item.active {
    color: var(--white);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* Features Section */
.features-section {
    background: var(--gradient-light);
    position: relative;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(46, 204, 113, 0.08);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46, 204, 113, 0.2);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: #4ade80;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-card-compact {
    padding: 1.25rem;
}

.feature-card-compact p {
    font-size: 0.85rem;
    line-height: 1.5;
}

.feature-icon-sm {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.feature-icon-sm i {
    font-size: 1.4rem;
}

/* Key Features Section */
.key-features-section {
    background: #f8faf9;
}

.key-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(46, 204, 113, 0.08);
    transition: all 0.3s ease;
}

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

.key-feature-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: #4ade80;
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.key-feature-content h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.key-feature-content p {
    margin: 0;
    color: var(--gray-700);
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background: #f8faf9;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(46, 204, 113, 0.08);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #4ade80;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-700);
    font-weight: 600;
}

/* Trust & Reach Section - Logo Carousel */
.trust-reach-section {
    background: var(--white);
    overflow: hidden;
}

.logo-carousel {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.logo-carousel::before,
.logo-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.logo-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: scroll-logos 20s linear infinite;
    width: max-content;
}

.logo-slide {
    flex-shrink: 0;
}

.logo-slide img {
    height: 50px;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.logo-slide img:hover {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.cta-section h2 {
    color: var(--white);
    position: relative;
}

/* Pricing Section */
.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(46, 204, 113, 0.08);
}

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

.pricing-card.featured {
    background: var(--white);
    border: 2px solid transparent;
    background-origin: border-box;
    box-shadow: var(--shadow-md), inset 0 0 0 2px rgba(46, 204, 113, 0.3);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(46, 204, 113, 0.5);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4ade80;
    color: var(--white);
    padding: 0.35rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1.5rem;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    background: #4ade80;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price .period {
    color: var(--gray-600);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-features li i {
    margin-right: 0.5rem;
}

.pricing-features li .fa-check {
    color: var(--success-color);
}

.pricing-features li.disabled {
    color: var(--gray-500);
}

.pricing-features li.disabled .fa-times {
    color: var(--danger-color);
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid rgba(46, 204, 113, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.testimonial-card .stars {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.testimonial-card .quote {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
}

.testimonial-card .author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 3px solid rgba(46, 204, 113, 0.2);
}

.testimonial-card .author h5 {
    margin: 0;
    font-size: 1rem;
}

/* Blog */
.blog-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(46, 204, 113, 0.08);
}

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

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.blog-meta span {
    margin-right: 1rem;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.blog-card h3 a {
    color: var(--gray-900);
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
}

/* Support */
.support-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(46, 204, 113, 0.08);
}

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

.support-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-light);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.support-card:hover .support-icon {
    background: #4ade80;
}

.support-icon i {
    font-size: 2rem;
    background: #4ade80;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.support-card:hover .support-icon i {
    -webkit-text-fill-color: var(--white);
    background: none;
}

/* Contact */
.contact-form .form-control {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-form .form-control:focus {
    border-color: rgba(46, 204, 113, 0.5);
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.1);
}

.contact-info {
    background: var(--gradient-light);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(46, 204, 113, 0.08);
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.info-item i {
    width: 55px;
    height: 55px;
    background: #4ade80;
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.info-item h5 {
    margin-bottom: 0.25rem;
}

.info-item p {
    margin: 0;
    color: var(--gray-600);
}

/* Mission Cards */
.mission-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(46, 204, 113, 0.08);
    transition: all 0.3s ease;
}

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

.mission-card i {
    font-size: 3rem;
    background: #4ade80;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* Network Strength Section */
.network-strength-section {
    background: var(--white);
}

.partner-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(46, 204, 113, 0.08);
    transition: all 0.3s ease;
}

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

.partner-card h5 {
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
}

.partner-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partner-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-weight: 500;
}

.partner-list li:last-child {
    border-bottom: none;
}

.partner-list li::before {
    content: '✓';
    color: #4ade80;
    font-weight: 700;
    margin-right: 0.5rem;
}

.technical-highlight {
    background: #f0fdf4;
    border-left: 4px solid #4ade80;
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.technical-highlight i {
    color: #4ade80;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.technical-highlight p {
    margin: 0;
    font-style: italic;
    color: var(--gray-800);
    line-height: 1.7;
}

/* Team */
.team-card {
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
    transition: all 0.3s ease;
}

.team-card:hover img {
    box-shadow: var(--shadow-glow);
}

/* Error Pages */
.error-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    background: #4ade80;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: none;
}

/* API Documentation Page */
.api-page {
    display: flex;
    padding-top: 70px;
}

.api-sidebar {
    width: 280px;
    background: var(--gradient-dark);
    color: var(--white);
    min-height: calc(100vh - 70px);
    position: fixed;
    left: 0;
    top: 70px;
    overflow-y: auto;
    padding: 1.5rem;
}

.api-sidebar .sidebar-header {
    margin-bottom: 2rem;
}

.api-sidebar .sidebar-header h3 {
    color: var(--white);
    font-size: 1.2rem;
}

.api-sidebar .sidebar-header span {
    background: #4ade80;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.api-sidebar .version {
    background: #4ade80;
    color: var(--white);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
}

.api-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.api-nav a {
    color: var(--gray-400);
    display: block;
    padding: 0.5rem 0;
}

.api-nav a:hover,
.api-nav a.active {
    color: var(--white);
}

.api-nav .has-submenu > ul {
    padding-left: 1rem;
}

.api-content {
    margin-left: 280px;
    padding: 2rem;
    flex: 1;
}

.api-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-300);
}

.api-section h2 {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.api-endpoint {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.api-endpoint h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.method {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.method.get {
    background: var(--success-color);
    color: var(--white);
}

.method.post {
    background: var(--primary-color);
    color: var(--white);
}

.method.put {
    background: var(--warning-color);
    color: var(--gray-900);
}

.method.delete {
    background: var(--danger-color);
    color: var(--white);
}

pre {
    background: var(--gray-900);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
}

code {
    background: var(--gray-200);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

pre code {
    background: transparent;
    padding: 0;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: var(--gray-400);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #4ade80;
}

.footer-logo {
    max-width: 170px;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
}

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

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-contact i {
    margin-right: 0.5rem;
    background: #4ade80;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links a {
    color: var(--gray-400);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4ade80;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-3px);
}

.footer-divider {
    border-color: var(--gray-700);
    margin: 2rem 0;
}

.copyright {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
    .api-sidebar {
        display: none;
    }
    
    .api-content {
        margin-left: 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   Modern Utility Classes & Enhancements
   ============================================ */

/* Gradient text utility */
.gradient-text {
    background: #4ade80;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section titles */
.section-title {
    position: relative;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #4ade80;
    margin-top: 1rem;
    border-radius: 2px;
}

.section-title.text-center::after {
    margin-left: auto;
    margin-right: auto;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Selection highlight */
::selection {
    background: rgba(46, 204, 113, 0.3);
    color: inherit;
}

/* Focus states for accessibility */
*:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Loading animation for buttons */
.btn.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth image loading */
img {
    transition: opacity 0.3s ease;
}

/* Glass card effect utility */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient border utility */
.gradient-border {
    position: relative;
    background: var(--white);
    border-radius: 24px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: #4ade80;
    border-radius: 26px;
    z-index: -1;
}

/* Pulse animation for CTAs */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
    }
    50% { 
        box-shadow: 0 0 0 15px rgba(46, 204, 113, 0);
    }
}
