/* ===================================
   NEW DESIGN SYSTEM - PROFESSIONAL LIGHT THEME
   Based on DESIGN.md specifications
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Clean & Professional */
    --coral-red: #ff5147;
    --emerald-green: #26916c;
    --surface-gray: #f9fafb;
    --white: #ffffff;
    --charcoal-black: #151619;
    --gray: #8d94a6;
    --rich-black: #0f1115;
    --slate-gray: #50576b;
    --border-gray: #d2dae4;
    --accent-purple: var(--coral-red);
    --accent-purple-light: #ff7369;

    /* Typography */
    --font-heading: 'Poppins', Arial, sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing System (8px base grid) */
    --space-xs: 6px;
    --space-sm: 10px;
    --space-md: 16px;
    --space-lg: 20px;
    --space-xl: 28px;
    --space-2xl: 36px;
    --space-3xl: 48px;
    --space-4xl: 56px;
    --space-5xl: 72px;

    /* Border Radius */
    --radius-input: 14px;
    --radius-card: 24px;
    --radius-button: 48px;
    --radius-pill: 800px;
    --radius-navbar: 71px;
    --radius-badge: 40px;

    /* Shadows */
    --shadow-card: 0px 30.18px 15.09px -2.5px rgba(38, 39, 41, 0.06);
    
    /* Container */
    --max-width: 1400px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--charcoal-black);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

a {
    color: var(--coral-red);
    text-decoration: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 80px;
}

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

@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

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

/* ===================================
   LOADING SCREEN
   =================================== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-text {
    display: flex;
    gap: 8px;
}

.loading-text span {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--charcoal-black);
    animation: bounce 1.2s ease-in-out infinite;
}

.loading-text span:nth-child(1) { animation-delay: 0s; }
.loading-text span:nth-child(2) { animation-delay: 0.1s; }
.loading-text span:nth-child(3) { animation-delay: 0.2s; }
.loading-text span:nth-child(4) { animation-delay: 0.3s; }
.loading-text span:nth-child(5) { animation-delay: 0.4s; }
.loading-text span:nth-child(6) { animation-delay: 0.5s; }
.loading-text span:nth-child(7) { animation-delay: 0.6s; }

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

/* ===================================
   FLOATING PILL NAVBAR
   =================================== */
.navbar {
    position: fixed;
    top: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 160px);
    max-width: 1200px;
    background: var(--charcoal-black);
    border-radius: var(--radius-navbar);
    z-index: 1000;
    padding: 14px 32px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.navbar--scrolled {
    box-shadow: 0px 40px 25px -5px rgba(38, 39, 41, 0.12);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

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

.nav-links a {
    font-family: var(--font-body);
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--coral-red);
    transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* --- Nav Item Dropdown --- */
.nav-item-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-item-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-arrow {
    display: inline-block;
    transition: transform 0.25s ease;
    font-size: 10px;
    opacity: 0.8;
}

.nav-item-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: var(--charcoal-black);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 10px 8px;
    min-width: 250px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Invisible hover bridge connecting trigger link to menu */
.nav-dropdown-menu::after {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
    background: transparent;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--charcoal-black);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    z-index: 1;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: flex !important;
    flex-direction: column;
    padding: 10px 14px !important;
    border-radius: var(--radius-input);
    color: var(--white) !important;
    text-decoration: none;
    transition: all 0.2s ease !important;
    text-align: left;
}

.nav-dropdown-item::after {
    display: none !important;
}

.nav-dropdown-item:hover,
.nav-dropdown-item.active-page {
    background: rgba(255, 81, 71, 0.12);
}

.nav-dropdown-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--white);
    transition: color 0.2s ease;
}

.nav-dropdown-item:hover .nav-dropdown-title,
.nav-dropdown-item.active-page .nav-dropdown-title {
    color: var(--coral-red);
}

.nav-dropdown-desc {
    font-size: 11.5px;
    color: var(--gray);
    margin-top: 2px;
    line-height: 1.3;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--coral-red);
    border-color: var(--coral-red);
    transform: translateY(-2px);
}

.nav-cta {
    background: var(--coral-red);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-button);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #ff6759;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 81, 71, 0.3);
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    padding: 140px 0 var(--space-xl);
    min-height: 100vh;
    position: relative;
    background: var(--white);
}

.hero-background {
    display: none; /* Remove dark background effects */
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: var(--space-2xl);
}

.hero-left {
    animation: fadeInUp 0.8s ease;
}

.hero-intro {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--gray);
    margin-bottom: var(--space-md);
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: -2.4px;
    margin-bottom: var(--space-lg);
    color: var(--charcoal-black);
}

.gradient-text {
    color: var(--coral-red);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray);
    margin-bottom: var(--space-xl);
    max-width: 540px;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cta-button-white {
    background: var(--white);
    color: var(--charcoal-black);
    border: 2px solid var(--border-gray);
    padding: 16px 32px;
    border-radius: var(--radius-button);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button-white:hover {
    border-color: var(--charcoal-black);
    box-shadow: 0 4px 12px rgba(21, 22, 25, 0.1);
    transform: translateY(-2px);
}

.cta-button-whatsapp {
    background: var(--coral-red);
    color: var(--white);
    border: 2px solid var(--coral-red);
    padding: 16px 32px;
    border-radius: var(--radius-button);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(255, 81, 71, 0.2);
    transition: all 0.3s ease;
}

.cta-button-whatsapp:hover {
    background: #ff6759;
    box-shadow: 0 8px 20px rgba(255, 81, 71, 0.3);
    transform: translateY(-2px);
}

.hero-right {
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-image-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    transition: transform 0.4s ease;
}

.hero-image-card:hover {
    transform: translateY(-8px);
}

.card-glow {
    display: none; /* Remove glow effect */
}

.image-wrapper {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 0;
    border: 2px solid var(--border-gray);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-image-card:hover .image-wrapper {
    border-color: var(--coral-red);
    box-shadow: 0px 40px 25px -5px rgba(255, 81, 71, 0.15);
}

.image-wrapper::before {
    display: none; /* Remove overlay */
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-card) - 2px);
    display: block;
}

/* Stats Row */
.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-2xl) 0;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    background: var(--surface-gray);
    border-radius: var(--radius-card);
    padding: var(--space-2xl) var(--space-3xl);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--coral-red);
    margin-bottom: var(--space-xs);
    line-height: 1;
}

.stat-number::after {
    content: '+';
}

.stat-number[data-target="5"]::after,
.stat-number[data-target="7"]::after {
    content: '';
}

.stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-gray);
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border-gray);
}

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

/* ===================================
   SECTION TITLES
   =================================== */
.section-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.72px;
    margin-bottom: 16px;
    text-align: center;
    color: var(--charcoal-black);
}

.accent,
.accent-inline,
.section-title .accent,
.section-title .accent-inline,
.section-title-center .accent {
    color: var(--coral-red);
}

.section-title-center {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.72px;
    margin-bottom: 16px;
    text-align: center;
    color: var(--charcoal-black);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 28px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */
.content-section {
    padding: 56px 0;
}

.content-section.bg-dark {
    background: var(--surface-gray);
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray);
    margin-bottom: var(--space-lg);
}

.content-block p strong {
    color: var(--charcoal-black);
    font-weight: 600;
}

.content-block p a {
    color: var(--coral-red);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.content-block p a:hover {
    border-bottom-color: var(--coral-red);
}

/* Feature Grid */
.feature-grid,
.feature-grid-balanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.feature-card {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-card);
    padding: var(--space-xl);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    display: none; /* Remove gradient border effect */
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--coral-red);
    box-shadow: var(--shadow-card);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: var(--space-md);
}

.feature-icon-svg {
    width: 56px;
    height: 56px;
    background: rgba(255, 81, 71, 0.1);
    border-radius: var(--radius-input);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--coral-red);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    line-height: 26.4px;
    color: var(--charcoal-black);
    margin-bottom: var(--space-sm);
}

.feature-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray);
    flex: 1;
}

/* Service Badges */
.service-badge {
    display: inline-block;
    background: rgba(255, 81, 71, 0.1);
    color: var(--coral-red);
    padding: 8px 16px;
    border-radius: var(--radius-badge);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    border: none;
}

/* Services Label */
.services-label {
    display: inline-block;
    background: rgba(255, 81, 71, 0.1);
    color: var(--coral-red);
    padding: 8px 16px;
    border-radius: var(--radius-badge);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

/* Comparison Table */
.comparison-section {
    margin-top: var(--space-3xl);
}

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding: 0 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    font-family: var(--font-body);
    font-size: 14px;
    border: 2px solid var(--border-gray);
}

.comparison-table thead {
    background: var(--surface-gray);
}

.comparison-table th {
    padding: var(--space-lg);
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--charcoal-black);
    border-bottom: 2px solid var(--border-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table td {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--border-gray);
    color: var(--gray);
    line-height: 1.6;
}

.comparison-table td strong {
    color: var(--charcoal-black);
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background: var(--surface-gray);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Mobile: Stack table into cards */
@media (max-width: 640px) {
    .comparison-table thead {
        display: none; /* Hide thead, labels come from data-label */
    }

    .comparison-table,
    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table td {
        display: block;
        width: 100%;
    }

    .comparison-table tr {
        border: 2px solid var(--border-gray);
        border-radius: var(--radius-card);
        margin-bottom: var(--space-lg);
        overflow: hidden;
        background: var(--white);
    }

    .comparison-table td {
        position: relative;
        padding-left: 45%;
        text-align: left;
        border-bottom: 1px solid var(--border-gray);
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .comparison-table td:last-child {
        border-bottom: none;
    }

    .comparison-table td::before {
        content: attr(data-label);
        position: absolute;
        left: var(--space-lg);
        width: 40%;
        font-family: var(--font-heading);
        font-size: 12px;
        font-weight: 600;
        color: var(--charcoal-black);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
    }
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-card);
    padding: var(--space-2xl);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--coral-red);
    transform: scale(1.05);
    box-shadow: var(--shadow-card);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coral-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-badge);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.pricing-card.featured:hover {
    transform: translateY(-8px) scale(1.05);
}

.pricing-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--coral-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-sm);
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--charcoal-black);
    margin-bottom: var(--space-md);
    line-height: 1;
}

.pricing-desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray);
}

/* Process Two-Column Layout */
.process-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    margin: var(--space-3xl) 0;
    align-items: start;
}

.process-steps {
    display: flex;
    flex-direction: column;
}

.process-step-item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.process-step-number {
    width: 64px;
    height: 64px;
    background: var(--coral-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 81, 71, 0.2);
}

.process-step-content {
    flex: 1;
    padding-top: var(--space-xs);
}

.process-step-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--charcoal-black);
    margin-bottom: var(--space-xs);
}

.process-step-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray);
}

.process-connector {
    width: 2px;
    height: var(--space-2xl);
    background: linear-gradient(180deg, var(--coral-red) 0%, rgba(255, 81, 71, 0.2) 100%);
    margin-left: 31px;
}

.process-infographic-area {
    position: sticky;
    top: 140px;
    background: transparent;
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.process-infographic-area img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    border: 2px solid var(--border-gray);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.process-infographic-area img:hover {
    border-color: var(--coral-red);
    box-shadow: 0 12px 32px rgba(255, 81, 71, 0.12);
}

/* About Two-Column Layout */
.about-two-column {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-3xl);
    align-items: center;
    margin-top: var(--space-xl);
}

.about-image-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-area img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-card);
    border: 2px solid var(--border-gray);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.about-image-area img:hover {
    border-color: var(--coral-red);
    box-shadow: 0 12px 32px rgba(255, 81, 71, 0.12);
}

/* Section Media Showcase */
.section-media-showcase {
    margin-top: var(--space-2xl);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-media-showcase img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    border: 2px solid var(--border-gray);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.section-media-showcase img:hover {
    border-color: var(--coral-red);
    box-shadow: 0 12px 32px rgba(255, 81, 71, 0.12);
}

/* Checklist Grid */
.checklist-grid,
.checklist-grid-balanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-input);
    transition: all 0.3s ease;
}

.checklist-item:hover {
    border-color: var(--coral-red);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.checklist-icon {
    width: 28px;
    height: 28px;
    background: var(--coral-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white);
    flex-shrink: 0;
}

.checklist-icon-svg {
    width: 32px;
    height: 32px;
    background: var(--coral-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.checklist-item p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray);
    margin: 0;
}

/* Industries Grid */
.industries-grid,
.industries-grid-balanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-3xl) 0;
}

.industry-card {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-card);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: var(--coral-red);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.industry-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 81, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--coral-red);
    font-size: 32px;
}

.industry-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--charcoal-black);
    margin-bottom: var(--space-sm);
}

.industry-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray);
}

/* ===================================
   SERVICES MODERN SECTION
   =================================== */
.services-modern {
    padding: var(--space-xl) 0 var(--space-3xl);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.services-left {
    position: sticky;
    top: 140px;
}

.services-title-modern {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    line-height: 54px;
    letter-spacing: -0.72px;
    color: var(--charcoal-black);
    margin-bottom: var(--space-md);
}

.services-description-modern {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-input);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-list-item:hover,
.service-list-item.active {
    border-color: var(--coral-red);
    background: var(--surface-gray);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--gray);
    transition: color 0.3s ease;
}

.service-list-item.active .service-number,
.service-list-item:hover .service-number {
    color: var(--coral-red);
}

.service-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--charcoal-black);
}

.service-card-container {
    position: sticky;
    top: 140px;
}

.service-card-modern {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-card);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 81, 71, 0.1);
    border-radius: var(--radius-input);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-red);
    margin-bottom: var(--space-lg);
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    color: var(--charcoal-black);
    margin-bottom: var(--space-md);
}

.service-card-badge {
    display: inline-block;
    background: rgba(255, 81, 71, 0.1);
    color: var(--coral-red);
    padding: 8px 16px;
    border-radius: var(--radius-badge);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.service-card-description {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray);
}

.service-card-description p {
    margin-bottom: var(--space-md);
}

.service-card-description p:last-child {
    margin-bottom: 0;
}

.service-card-nav {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-gray);
}

.service-nav-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal-black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-nav-btn:hover {
    background: var(--coral-red);
    border-color: var(--coral-red);
    color: var(--white);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--charcoal-black);
    color: var(--white);
    padding: var(--space-4xl) 0 var(--space-xl);
    position: relative;
}

.footer-glow-bg {
    display: none; /* Remove gradient effects */
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    max-width: 400px;
}

.footer-profile {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
}

.footer-bio {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--gray);
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: var(--coral-red);
    border-color: var(--coral-red);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-contact li {
    margin-bottom: var(--space-sm);
}

.footer-contact a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(38, 145, 108, 0.2);
    color: var(--emerald-green);
    padding: 8px 16px;
    border-radius: var(--radius-badge);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--gray);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--coral-red);
}

.footer-legal-links span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
}

@media (max-width: 768px) {
    .footer-legal-links {
        justify-content: center;
        margin: var(--space-md) 0;
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .navbar {
        width: calc(100% - 80px);
    }
    
    .hero-content {
        gap: 60px;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr 2fr;
        gap: var(--space-2xl);
    }
    
    .service-list-item {
        grid-column: 1 / -1;
    }
    
    .service-card-container {
        grid-column: 1 / -1;
    }
}

@media (max-width: 991px) {
    .navbar {
        width: calc(100% - 48px);
        top: var(--space-md);
        padding: 12px 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 140px 0 var(--space-3xl);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 54px;
        letter-spacing: -1.2px;
    }
    
    .stats-row {
        flex-wrap: wrap;
        gap: var(--space-lg);
        padding: var(--space-xl);
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - var(--space-lg) / 2);
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .services-left {
        position: static;
    }
    
    .service-card-container {
        position: static;
    }
    
    .process-two-column,
    .about-two-column {
        grid-template-columns: 1fr;
    }
    
    .process-infographic-area,
    .about-image-area {
        position: static;
        min-height: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-title,
    .section-title-center,
    .services-title-modern {
        font-size: 28px;
        line-height: 42px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 48px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - var(--space-lg) / 2);
    }
    
    .stats-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
        padding: var(--space-xl);
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .cta-button-white,
    .cta-button-whatsapp {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 479px) {
    .navbar {
        width: calc(100% - 32px);
        padding: 10px 16px;
    }
    
    .logo-name {
        font-size: 14px;
    }
    
    .logo-avatar {
        width: 36px;
        height: 36px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 42px;
    }
    
    .section-title,
    .section-title-center {
        font-size: 24px;
        line-height: 36px;
    }
}


/* ===================================
   SECTION SPACING FIXES
   =================================== */
/* Consistent section spacing for visual differentiation */
.content-section {
    padding: var(--space-xl) 0; /* 32px - compact spacing */
}

/* ===================================
   CARD LAYOUT FIXES - 3+2 CENTERED
   =================================== */
/* Fix for "Why Work With Local Developer" - 5 cards: 3 + 2 centered */
.feature-grid-balanced {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

/* First 3 cards span 2 columns each (fills 6 columns) */
.feature-grid-balanced .feature-card:nth-child(1),
.feature-grid-balanced .feature-card:nth-child(2),
.feature-grid-balanced .feature-card:nth-child(3) {
    grid-column: span 2;
}

/* Last 2 cards: offset by 1 column, span 2 columns each */
.feature-grid-balanced .feature-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.feature-grid-balanced .feature-card:nth-child(5) {
    grid-column: 4 / span 2;
}

/* Fix for "Local SEO" - 6 cards: 3 + 3 */
.checklist-grid-balanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

/* Fix for "Industries I Serve" - 5 cards: 3 + 2 centered */
.industries-grid-balanced {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

/* First 3 cards span 2 columns each */
.industries-grid-balanced .industry-card:nth-child(1),
.industries-grid-balanced .industry-card:nth-child(2),
.industries-grid-balanced .industry-card:nth-child(3) {
    grid-column: span 2;
}

/* Last 2 cards: offset by 1 column, span 2 columns each */
.industries-grid-balanced .industry-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.industries-grid-balanced .industry-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.industry-card {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-card);
    padding: var(--space-xl);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.industry-card:hover {
    border-color: var(--coral-red);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.industry-icon-svg {
    width: 64px;
    height: 64px;
    background: rgba(255, 81, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--coral-red);
}

.industry-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--charcoal-black);
    margin-bottom: var(--space-sm);
}

.industry-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray);
}

/* ===================================
   PORTFOLIO / WORKS SECTION
   =================================== */
.portfolio {
    padding: var(--space-xl) 0 var(--space-3xl);
    background: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.portfolio-card {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    box-shadow: var(--shadow-card);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--coral-red);
    box-shadow: 0 20px 40px rgba(255, 81, 71, 0.15);
}

.portfolio-image {
    width: 100%;
    overflow: hidden;
    background: var(--surface-gray);
    padding: var(--space-lg);
}

.portfolio-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: var(--radius-input);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: var(--space-xl);
}

.portfolio-category {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--coral-red);
    margin-bottom: var(--space-xs);
}

.portfolio-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--charcoal-black);
    margin-bottom: var(--space-xs);
}

.portfolio-description {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray);
    margin-bottom: var(--space-md);
}

.portfolio-tag {
    display: inline-block;
    background: rgba(255, 81, 71, 0.1);
    color: var(--coral-red);
    padding: 6px 12px;
    border-radius: var(--radius-badge);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
}

.cta-button-outline {
    background: var(--white);
    color: var(--charcoal-black);
    border: 2px solid var(--border-gray);
    padding: 16px 32px;
    border-radius: var(--radius-button);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-outline:hover {
    border-color: var(--charcoal-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 22, 25, 0.1);
}

/* ===================================
   RESUME / EXPERIENCE SECTION
   =================================== */
.resume {
    padding: var(--space-xl) 0 var(--space-3xl);
    background: var(--surface-gray);
}

.resume-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
    margin-top: var(--space-2xl);
}

.resume-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.resume-card {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-left: 4px solid var(--coral-red);
    border-radius: var(--radius-input);
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.resume-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-card);
}

.resume-date {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--coral-red);
    margin-bottom: var(--space-xs);
}

.resume-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal-black);
    margin-bottom: 4px;
}

.resume-company {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--gray);
}

/* ===================================
   SKILLS SECTION
   =================================== */
.skills {
    padding: var(--space-xl) 0 var(--space-3xl);
    background: var(--white);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.skill-item {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-card);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.skill-item:hover,
.skill-item.active {
    border-color: var(--coral-red);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.skill-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.skill-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.skill-percentage {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--coral-red);
    margin-bottom: var(--space-xs);
}

.skill-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--charcoal-black);
}

/* ===================================
   TESTIMONIALS - DUAL ROW MARQUEE
   =================================== */
.testimonials-modern {
    padding: var(--space-3xl) 0;
    background: #151619;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 81, 71, 0.1);
    color: var(--coral-red);
    padding: 8px 16px;
    border-radius: var(--radius-badge);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.rating-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--coral-red);
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    line-height: 54px;
    letter-spacing: -0.72px;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    width: 100%;
    overflow: hidden;
}

.marquee-row {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: var(--space-lg);
    animation: marquee 80s linear infinite;
}

.marquee-row-bottom .marquee-content {
    animation: marquee-reverse 80s linear infinite;
}

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

@keyframes marquee-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.testimonial-card,
.testimonial-card-modern {
    min-width: 400px;
    max-width: 400px;
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-card);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.quote-mark {
    font-size: 48px;
    font-weight: 700;
    color: var(--coral-red);
    line-height: 1;
    opacity: 0.5;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--coral-red);
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray);
    font-style: italic;
    flex: 1;
}

.testimonial-author,
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-gray);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--coral-red);
}

.testimonial-info,
.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name,
.testimonial-author-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal-black);
}

.testimonial-role,
.testimonial-author-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
}

/* ===================================
   ABOUT LIST
   =================================== */
.about-list {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
}

.about-list li {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray);
    padding-left: 32px;
    position: relative;
    margin-bottom: var(--space-sm);
}

.about-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--coral-red);
    font-weight: 700;
    font-size: 20px;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: var(--space-xl) 0 var(--space-3xl);
    background: var(--white);
}

.cta-box {
    background: var(--surface-gray);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-card);
    padding: var(--space-4xl);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    line-height: 54px;
    letter-spacing: -0.72px;
    color: var(--charcoal-black);
    margin-bottom: var(--space-md);
}

.cta-text {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: var(--gray);
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.cta-button-primary {
    background: var(--coral-red);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: var(--radius-button);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(255, 81, 71, 0.2);
}

.cta-button-primary:hover {
    background: #ff6759;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 81, 71, 0.3);
}

.cta-note {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--slate-gray);
}

/* ===================================
   SOURCES SECTION
   =================================== */
.sources-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.source-item {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-input);
    padding: var(--space-lg);
}

.source-item p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal-black);
    margin-bottom: var(--space-xs);
}

.source-item a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--coral-red);
    text-decoration: none;
    word-break: break-all;
}

.source-item a:hover {
    text-decoration: underline;
}

/* ===================================
   FAQ SECTION - IMPROVED DESIGN
   =================================== */
.faq {
    padding: var(--space-3xl) 0;
    background: #151619;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 81, 71, 0.3), transparent);
}

.contact-faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-faq-left {
    position: sticky;
    top: 140px;
    padding-right: var(--space-lg);
}

.faq-label {
    display: inline-block;
    background: rgba(255, 81, 71, 0.2);
    color: var(--coral-red);
    padding: 8px 16px;
    border-radius: var(--radius-badge);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-md);
}

.faq .section-title-center,
.faq .section-title,
.faq h2,
.faq .contact-faq-left h2 {
    color: var(--white) !important;
}

.faq .section-subtitle,
.faq p,
.faq .contact-faq-left p,
.faq .contact-faq-left .section-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
}

.contact-faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-faq-item {
    background: var(--white) !important;
    border: 2px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.contact-faq-item:hover {
    border-color: var(--coral-red) !important;
    box-shadow: 0 8px 24px rgba(255, 81, 71, 0.12) !important;
    transform: translateY(-2px);
}

.contact-faq-item.active,
.contact-faq-item.open {
    border-color: var(--coral-red) !important;
    box-shadow: 0 8px 24px rgba(255, 81, 71, 0.16) !important;
    background: var(--white) !important;
}

.contact-faq-btn {
    width: 100%;
    text-align: left;
    background: none !important;
    border: none;
    padding: var(--space-lg) var(--space-xl);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal-black) !important;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    transition: all 0.3s ease;
}

.contact-faq-btn span:first-child {
    flex: 1;
}

.contact-faq-btn:hover {
    color: var(--coral-red) !important;
}

.contact-faq-item.active .contact-faq-btn,
.contact-faq-item.open .contact-faq-btn {
    color: var(--coral-red) !important;
    padding-bottom: var(--space-md);
}

.contact-faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 300;
    color: var(--coral-red) !important;
    transition: all 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.contact-faq-item:hover .contact-faq-icon {
    transform: scale(1.1);
}

.contact-faq-item.active .contact-faq-icon,
.contact-faq-item.open .contact-faq-icon {
    transform: rotate(45deg);
}

.contact-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--space-xl);
}

.contact-faq-item.active .contact-faq-body,
.contact-faq-item.open .contact-faq-body {
    max-height: 500px;
    padding: var(--space-md) var(--space-xl) var(--space-lg);
    border-top: 1px solid var(--border-gray);
    margin-top: var(--space-sm);
}

.contact-faq-body p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: var(--slate-gray) !important;
    margin-bottom: 0;
}

/* ===================================
   CONTACT SPLIT SECTION - IMPROVED
   =================================== */
.contact-split {
    padding: 30px 0;
    background: var(--white);
    margin-top: 30px;
    margin-bottom: 30px;
}

.contact-split-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
}

.contact-info-panel {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.contact-section-label {
    display: inline-block;
    background: rgba(255, 81, 71, 0.1);
    color: var(--coral-red);
    padding: 8px 16px;
    border-radius: var(--radius-badge);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.contact-section-h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    line-height: 54px;
    letter-spacing: -0.72px;
    color: var(--charcoal-black);
    margin-bottom: var(--space-md);
}

.contact-purple {
    color: var(--coral-red);
}

.contact-section-sub {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray);
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-info-card {
    background: var(--surface-gray);
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: var(--radius-input);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--coral-red);
    transform: translateX(8px);
}

.contact-info-icon {
    font-size: 24px;
}

.contact-info-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--slate-gray);
    display: block;
    margin-bottom: 4px;
}

.contact-info-val {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--charcoal-black);
    text-decoration: none;
}

.contact-info-val:hover {
    color: var(--coral-red);
}

.contact-social-block {
    padding-top: var(--space-lg);
    border-top: 2px solid var(--border-gray);
}

.contact-social-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal-black);
    display: block;
    margin-bottom: var(--space-md);
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-social-link {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--coral-red);
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

.contact-social-link:hover {
    transform: translateX(8px);
}

.contact-form-wrap {
    background: var(--surface-gray);
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: var(--radius-card);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
}

.contact-form-group {
    margin-bottom: var(--space-lg);
}

.contact-form-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal-black);
    display: block;
    margin-bottom: var(--space-xs);
}

.contact-type-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.contact-type-btn {
    background: var(--white);
    color: var(--charcoal-black) !important;
    border: 1px solid rgba(0, 0, 0, 0.14);
    padding: 12px 24px;
    border-radius: var(--radius-button);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.contact-type-btn:hover {
    background: var(--coral-red) !important;
    color: var(--white) !important;
    border-color: var(--coral-red) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 81, 71, 0.2);
}

.contact-type-btn.active {
    background: var(--coral-red) !important;
    color: var(--white) !important;
    border-color: var(--coral-red) !important;
    box-shadow: 0 4px 12px rgba(255, 81, 71, 0.3);
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.contact-form-input,
.contact-textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: var(--radius-input);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--charcoal-black);
    transition: all 0.3s ease;
}

.contact-form-input:focus,
.contact-textarea:focus {
    outline: none;
    border-color: var(--coral-red);
    box-shadow: 0 0 0 3px rgba(255, 81, 71, 0.1);
}

.contact-textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-submit {
    background: var(--coral-red);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: var(--radius-button);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 12px rgba(255, 81, 71, 0.2);
}

.contact-submit:hover {
    background: var(--coral-red) !important;
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 81, 71, 0.3);
}

.contact-success-state {
    text-align: center;
    padding: var(--space-3xl);
}

.contact-success-icon {
    width: 80px;
    height: 80px;
    background: var(--emerald-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto var(--space-lg);
}

.contact-success-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--charcoal-black);
    margin-bottom: var(--space-sm);
}

.contact-success-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray);
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */

/* --- 1024px: Pricing collapses to 1 column (3 cards don't fit) --- */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 1200px) {
    /* Keep 6-column grid but adjust for smaller screens */
    .feature-grid-balanced,
    .industries-grid-balanced {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 991px) {
    /* Stack to 2 columns */
    .feature-grid-balanced,
    .industries-grid-balanced {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Checklist stays 2 columns at tablet */
    .checklist-grid-balanced {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Reset all explicit column spans to auto */
    .feature-grid-balanced .feature-card,
    .industries-grid-balanced .industry-card {
        grid-column: span 1 !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    /* Last odd card (5th) spans FULL width for clean layout */
    .feature-grid-balanced .feature-card:nth-child(5),
    .industries-grid-balanced .industry-card:nth-child(5) {
        grid-column: 1 / -1 !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    /* Checklist: if odd last item, also span full */
    .checklist-grid-balanced .checklist-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .resume-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-faq-inner {
        grid-template-columns: 1fr;
    }
    
    .contact-faq-left {
        position: static;
    }
    
    .contact-split-inner {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel {
        position: static;
    }
}

@media (max-width: 768px) {
    .feature-grid-balanced,
    .checklist-grid-balanced,
    .industries-grid-balanced {
        grid-template-columns: 1fr;
    }
    
    .feature-grid-balanced .feature-card,
    .industries-grid-balanced .industry-card,
    .checklist-grid-balanced .checklist-item {
        grid-column: 1 / -1 !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-type-buttons {
        flex-direction: column;
    }
    
    .contact-type-btn {
        width: 100%;
        text-align: left;
    }

    .pricing-grid {
        max-width: 100%;
    }

    .pricing-card {
        max-width: 100%;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

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

    .section-title,
    .section-title-center,
    .services-title-modern {
        font-size: 24px;
        line-height: 36px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 42px;
    }

    .cta-title {
        font-size: 22px;
        line-height: 32px;
    }
}

/* ===================================
   SERVICE DETAIL BUTTON COMPONENT
   =================================== */
.service-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 24px;
    background: var(--coral-red);
    color: var(--white) !important;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 600;
    border-radius: var(--radius-button);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(255, 81, 71, 0.28);
}

.service-detail-btn:hover {
    background: #e0443a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 81, 71, 0.4);
    color: var(--white) !important;
}

.service-detail-btn svg {
    transition: transform 0.25s ease;
}

.service-detail-btn:hover svg {
    transform: translateX(4px);
}

/* ===================================
   PAGINATION CONTROLS
   =================================== */
.pagination-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: var(--space-4xl);
    padding: var(--space-lg) 0;
}

.pagination-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal-black);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pagination-arrow:hover:not(:disabled) {
    border-color: var(--coral-red);
    background: var(--coral-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 81, 71, 0.3);
}

.pagination-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    border-color: var(--border-gray);
    background: var(--surface-gray);
}

.pagination-info {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal-black);
    background: var(--surface-gray);
    border: 1px solid var(--border-gray);
    padding: 8px 20px;
    border-radius: var(--radius-badge);
}

.pagination-current {
    color: var(--coral-red);
}

/* ===================================
   UNIFIED GLOBAL CTA SECTION
   =================================== */
.service-cta-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.service-cta-card {
    background: var(--charcoal-black);
    border-radius: 32px;
    padding: 64px var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 650px;
    height: 380px;
    background: radial-gradient(circle at center, rgba(255, 81, 71, 0.28), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.service-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.service-cta-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: var(--space-md);
    letter-spacing: -0.8px;
}

.service-cta-title .accent {
    color: var(--coral-red);
}

.service-cta-desc {
    font-size: 16.5px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-2xl);
}

.service-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.service-cta-status {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

@media (max-width: 768px) {
    .service-cta-card {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .service-cta-title {
        font-size: 26px;
    }

    .service-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .service-cta-buttons a,
    .service-cta-buttons button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ============================================================
   INDUSTRIES GRID - 6 CARDS (3 per row) — used on SEO page
   ============================================================ */
.industries-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.industries-grid-6 .industry-card {
    grid-column: span 1 !important;
}

@media (max-width: 991px) {
    .industries-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
    .industries-grid-6 .industry-card {
        grid-column: span 1 !important;
    }
}

@media (max-width: 600px) {
    .industries-grid-6 {
        grid-template-columns: 1fr;
    }
    .industries-grid-6 .industry-card {
        grid-column: 1 / -1 !important;
    }
}

/* Tools section: left column image placement */
.service-tools-left-image {
    margin-top: var(--space-xl);
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 2px solid var(--border-gray);
}

.service-tools-left-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================================
   INDUSTRIES GRID - 4 CARDS (2x2 layout) — Shopify & Next.js
   ============================================================ */
.industries-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.industries-grid-4 .industry-card {
    grid-column: span 1 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .industries-grid-4 {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* ============================================================
   SEO CERTIFICATIONS SECTION
   ============================================================ */
.certifications-section {
    padding: var(--space-4xl) 0;
    background: var(--surface-gray);
    position: relative;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.certification-card {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-card);
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--coral-red), #FF7B72);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certification-card:hover {
    border-color: var(--coral-red);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.certification-card:hover::before {
    opacity: 1;
}

.certification-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.certification-badge-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 800;
    font-size: 18px;
    font-family: var(--font-heading);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.badge-ahrefs {
    background: #003666;
    color: #FFFFFF;
}

.badge-semrush {
    background: #FF642D;
    color: #FFFFFF;
}

.certification-meta h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal-black);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.certification-issuer {
    font-size: 14px;
    font-weight: 600;
    color: var(--coral-red);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.certification-desc {
    font-size: 15px;
    color: var(--slate-gray);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.certification-skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--space-lg);
}

.certification-skill-tag {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    background: rgba(255, 81, 71, 0.08);
    color: var(--charcoal-black);
    border-radius: 20px;
    border: 1px solid rgba(255, 81, 71, 0.15);
}

.certification-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-gray);
    font-size: 13px;
    color: var(--slate-gray);
}

.certification-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #10B981;
}

@media (max-width: 768px) {
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}


