/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00bf63;
    /* Muchen Green */
    --primary-dark: #00914b;
    --primary-light: #33cc82;
    --secondary-color: #1e293b;
    /* Slate 800 */
    --accent-color: #f59e0b;
    /* Amber/Gold */
    --text-dark: #1f2937;
    --text-light: #4b5563;
    --text-lighter: #9ca3af;
    --bg-light: #f0fdf4;
    /* Very subtle green tint */
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #00bf63;
    --gradient-1: linear-gradient(135deg, #00bf63 0%, #00914b 100%);
    --gradient-2: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 20px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.16);
}

::selection {
    background: var(--accent-color);
    color: white;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container_2 {
    max-width: 1200px;
    width: 100%;
    margin-top: 60px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 10;
}


section {
    padding: 40px 0;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    /* box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15); */
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

.logo img {
    vertical-align: top;
}

/* Logo Visibility Logic */
.logo-desktop {
    display: block;
}

.logo-mobile,
.logo-mobile-invert {
    display: none;
}

.logo a {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-link {
    text-decoration: none;
    color: #e5e7eb;
    font-weight: bold;
    font-size: 0.95rem;
    transition: color 0.2s ease, opacity 0.2s ease;
    opacity: 0.85;
}

.nav-link:hover {
    color: #ffffff;
    opacity: 1;
}

/* Navbar themes: over dark hero vs over light content */

/* .navbar.navbar-theme-dark .nav-wrapper {
    background: radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.3), transparent 55%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.85));
} */

.navbar.navbar-theme-dark .nav-link {
    color: #e5e7eb;
}

.navbar.navbar-theme-dark .nav-link:hover,
.navbar.navbar-theme-dark .nav-link.active {
    color: var(--primary-color);
    opacity: 1;
}

.navbar.navbar-theme-dark .nav-phone-number {
    color: #f9fafb;
}

.navbar.navbar-theme-light .nav-wrapper {
    /* background: rgba(255, 255, 255, 0.98); */
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.navbar.navbar-theme-light .nav-link {
    color: var(--text-dark);
    opacity: 0.9;
}

.navbar.navbar-theme-light .nav-link:hover,
.navbar.navbar-theme-light .nav-link.active {
    color: var(--primary-color);
}

.navbar.navbar-theme-light .nav-phone-icon {
    background: var(--primary-color);
}

.navbar.navbar-theme-light .nav-phone-number {
    color: var(--text-dark);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 0.9rem 0.35rem 0.35rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.nav-phone-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
}

.nav-phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-phone-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
}

.nav-phone-number {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e5e7eb;
}

.mobile-call-fab {
    display: none;
    position: fixed;
    left: 16px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(0, 191, 99, 0.35);
    z-index: 2000;
    border: 2px solid #ffffff;
    text-decoration: none;
}

.mobile-call-fab .icon {
    font-size: 26px;
    line-height: 1;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.navbar.navbar-theme-dark .mobile-menu-toggle span {
    background: #ffffff;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25)),
        url("kl.jpg") center center / cover no-repeat;
    padding-top: 110px;
    padding-bottom: 0;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 55%);
    opacity: 0.8;
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #f9fafb;
    max-width: 640px;
    margin-bottom: 40px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.2rem;
    color: rgba(241, 245, 249, 0.92);
    animation: fadeInUp 0.8s ease 0.15s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.32);
    color: #e5e7eb;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.hero-stats {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.hero-stat-number {
    display: block;
    font-weight: 700;
    font-size: 1.6rem;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.9);
}

.hero-meta {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: center;
}

.hero-clients {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-avatars {
    display: flex;
    align-items: center;
}

.hero-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0f172a;
    background: #f9fafb;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
    margin-left: -10px;
}

.hero-avatar:first-child {
    margin-left: 0;
}

.hero-avatar-1 {
    background: #d1fae5;
}

.hero-avatar-2 {
    background: #fee2e2;
}

.hero-avatar-3 {
    background: #e0f2fe;
}

.hero-clients-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hero-clients-label {
    font-size: 0.8rem;
    color: rgba(226, 232, 240, 0.9);
}

.hero-clients-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f9fafb;
}

.hero-metrics {
    display: flex;
    gap: 2.5rem;
    /* background: rgba(15, 23, 42, 0.65);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.1); */
    /* padding: 1.75rem 2.5rem; */
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.hero-metrics:hover {
    transform: translateY(-5px);
    /* background: rgba(15, 23, 42, 0.75);
border-color: rgba(255, 255, 255, 0.2); */
}

.hero-metric-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.hero-metric-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #e2e8f0;
    letter-spacing: 0.01em;
}

.hero-image-placeholder {
    flex-shrink: 0;
    width: 420px;
    max-width: 100%;
    height: 420px;
    /* background: rgba(15, 23, 42, 0.8); */
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.hero-image-frame {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.6);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-badge {
    align-self: flex-start;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #bbf7d0;
    font-size: 0.75rem;
    font-weight: 600;
}

.hero-image-main {
    flex: 1;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.6), rgba(37, 99, 235, 0.3));
    /* image placeholder: replace with real image later */
}

.hero-mini-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.hero-mini-card {
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.55);
    padding: 0.75rem 0.9rem;
}

.mini-label {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.mini-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e5e7eb;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.about-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.about-icon svg {
    width: 32px;
    height: 32px;
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services-section {
    background: radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.25), transparent 55%),
        linear-gradient(135deg, #082f49, #064e3b);
    color: #e5e7eb;
    border-radius: 0px 0px 40px 40px;
    margin: 0;
    --services-card-gap: 1.75rem;
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-section .section-tag {
    color: #bbf7d0;
}

.services-section .section-title {
    color: #f9fafb;
}

.services-section .section-description {
    color: rgba(226, 232, 240, 0.9);
}

.services-carousel {
    position: relative;
    --services-visible: 4;
}

.services-track-mask {
    overflow: hidden;
}

.services-grid {
    display: flex;
    gap: var(--services-card-gap);
    transition: transform 0.6s ease;
}

.services-grid.no-transition {
    transition: none !important;
}


.service-card {
    background: rgba(15, 23, 42, 0.4);
    padding: 2.25rem 2rem;
    border-radius: 26px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    display: flex;
    flex-direction: column;
    flex: 0 0 calc((100% - (var(--services-card-gap) * (var(--services-visible, 4) - 1))) / var(--services-visible, 4));
    min-width: 0;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.6);
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(74, 222, 128, 0.8);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, #bbf7d0, #22c55e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #022c22;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f9fafb;
}

.service-card p {
    color: rgba(226, 232, 240, 0.9);
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.service-link {
    color: #bbf7d0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: auto;
}

.service-link:hover {
    color: #fff;
}

.service-link::after {
    content: '↗';
    font-size: 0.85rem;
}

.services-cta-row {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 1.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.services-cta-main {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.services-cta-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #facc15;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #022c22;
    font-size: 1.1rem;
}

.services-cta-text {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.95);
}

.services-cta-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #bbf7d0;
    text-decoration: none;
}

.services-cta-link:hover {
    color: #ffffff;
}

.services-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.85);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.services-nav svg {
    width: 20px;
    height: 20px;
}

.services-nav:hover {
    background: rgba(74, 222, 128, 0.25);
    color: #bbf7d0;
    transform: translateY(-50%) scale(1.05);
}

.services-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.services-nav-prev {
    left: -22px;
}

.services-nav-next {
    right: -22px;
}

.services-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
}

.services-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    transition: all 0.2s ease;
    cursor: pointer;
}

.services-dot.active {
    width: 28px;
    background: #bbf7d0;
}

@media (max-width: 1200px) {
    .services-nav-prev {
        left: -10px;
    }

    .services-nav-next {
        right: -10px;
    }
}

@media (max-width: 1024px) {
    .services-carousel {
        --services-visible: 2;
    }
}

@media (max-width: 768px) {
    .services-section {
        border-radius: 0 0 32px 32px;
    }

    .services-carousel {
        --services-visible: 1;
    }

    .services-nav {
        opacity: 0.8;
    }

    .services-nav-prev {
        left: 0;
    }

    .services-nav-next {
        right: 0;
    }

    .services-cta-row {
        border-radius: 20px;
        align-items: flex-start;
    }
}

/* ===========================
   WHY CHOOSE US SECTION
   =========================== */
.why-choose-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.why-main-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: stretch;
    margin-top: 2rem;
}

.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.why-intro {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.why-tabs-container {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.why-tabs {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
}

.why-tab {
    border: none;
    background: transparent;
    padding: 0 0 1rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.why-tab:hover {
    color: var(--primary-color);
}

.why-tab.active {
    background: transparent;
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    box-shadow: none;
}

.why-tab-icon {
    width: 20px;
    height: 20px;
}

.why-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
    line-height: 1.2;
}

.why-body {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.why-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.why-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 6px;
}

.why-badge::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232563eb'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
}

.why-text-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.why-text-link:hover {
    text-decoration: underline;
}

.why-media-col {
    height: 100%;
}

.why-card-image {
    border-radius: 24px;
    background-image: url('kl-office.jpg');
    /* placeholder */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    min-height: 400px;
    box-shadow: var(--shadow-xl);
}

.why-tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.why-tab-content.active {
    display: block;
}

@media (max-width: 960px) {
    .why-main-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-card-image {
        min-height: 250px;
    }

    .why-tabs {
        padding-bottom: 0.5rem;
    }
}

.promises-section {
    background: var(--secondary-color);
    color: white;
}

.promises-section .section-tag {
    color: var(--accent-color);
}

.promises-section .section-title {
    color: white;
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.promise-card {
    padding: 2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.promise-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.promise-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.promise-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.promise-card p {
    opacity: 0.9;
    line-height: 1.6;
}


/* Vision & Mission */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.vision-card,
.mission-card {
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.vision-card {
    background: var(--gradient-1);
    color: white;
}

.mission-card {
    background: linear-gradient(135deg, #c5a065 0%, #d97706 100%);
    color: white;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.vm-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-icon svg {
    width: 32px;
    height: 32px;
}

.vision-card h3,
.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.vision-card p,
.mission-card p {
    opacity: 0.95;
    line-height: 1.8;
}

/* Values */
.values-container {
    margin-bottom: 5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.value-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Box */
.cta-box {
    background: var(--primary-color);
    color: white;
    padding: 4rem 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-box .btn {
    background: white;
    color: var(--primary-color);
}

.cta-box .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===========================
   ONBOARDING SECTION
   =========================== */
.onboarding-section {
    background: white;
    padding-top: 2rem;
    padding-bottom: 5rem;
}

.onboarding-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 3rem;
}

.step-card {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 1rem;
    z-index: 2;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(226, 232, 240, 0.6);
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    position: relative;
}

.step-icon svg {
    width: 32px;
    height: 32px;
}

.step-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.step-connector {
    flex: 0.5;
    height: 2px;
    background: #e2e8f0;
    margin-top: 2rem;
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
}

@media (max-width: 960px) {
    .onboarding-steps {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .step-connector {
        display: none;
        /* Hide horizontal connectors on mobile */
    }

    .step-card {
        width: 100%;
        max-width: 400px;
    }

    /* Add vertical connectors if needed, or keep simple stack */
}

/* ===========================
   RESOURCES SECTION
   =========================== */
.resources-section {
    background: var(--bg-light);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.resources-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Featured Resource */
.resource-featured {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.resource-featured:hover {
    transform: translateY(-4px);
}

.resource-featured-image {
    height: 280px;
    background: #cbd5e1;
    position: relative;
    overflow: hidden;
}

.resource-placeholder-featured {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
}

.resource-placeholder-featured svg {
    width: 64px;
    height: 64px;
}

.resource-featured-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.resource-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.resource-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.badge-featured {
    background: #fef3c7;
    color: #d97706;
}

.badge-article {
    background: #e0f2fe;
    color: #0284c7;
}

.resource-featured-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.resource-featured-excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.resource-meta {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.meta-dot {
    margin: 0 0.5rem;
}

.btn-link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s ease;
}

.btn-link-arrow:hover {
    gap: 0.75rem;
}

/* Sidebar Resources */
.resources-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.resource-compact-card {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.resource-compact-card:hover {
    transform: translateX(4px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.resource-icon-box {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.resource-icon-box svg {
    width: 24px;
    height: 24px;
}

.icon-checklist {
    background: #10b981;
}

.icon-article {
    background: #6366f1;
}

.icon-guide {
    background: #f59e0b;
}

.resource-compact-content {
    flex: 1;
    min-width: 0;
    /* prevents flex item from overflowing */
}

.resource-category-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 0.35rem;
}

.resource-compact-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.resource-link-sm {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.resource-link-sm:hover {
    text-decoration: underline;
}

/* Checklists */
.checklists-section-wrapper {
    margin-top: 4rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 3rem;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.checklist-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.checklist-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.checklist-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    background: #f0fdf4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
}

.checklist-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

.checklist-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.checklist-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.download-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.download-link:hover {
    text-decoration: underline;
}

.resource-category-title {
    padding-bottom: 2em;
}

/* Social Footer */
.resources-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
    display: flex;
    justify-content: center;
}

.social-strip {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
}

.social-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #64748b;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: var(--primary-color);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 960px) {
    .resources-layout {
        grid-template-columns: 1fr;
    }

    .resource-featured-image {
        height: 220px;
    }
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
}

/* Contact Form */
.contact-form-container {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 968px) {

    /* Fix Hero Layout */
    .container_2 {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
        margin-top: 20px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-metrics {
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 2rem;
    }

    /* Show floating call on tablets/mobiles */
    .nav-contact {
        display: none;
    }

    .mobile-call-fab {
        display: flex;
    }

    .hero-metric-number, .hero-metric-label, .hero-tagline {
        text-align: center;
    }

    .workflow-arrow {
        display: none;
    }

    .workflow-steps {
        flex-direction: column;
    }

    .workflow-step {
        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {

    .hero {
        padding-top: 85px;
    }

    .hero-meta,
    .hero-metrics,
    .hero-tagline {
        justify-content: center;
    }

    .hero-tagline {
        display: flex;
    }

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

    .nav-menu {
        position: fixed;
        left: -110%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
        backdrop-filter: none;
        /* Ensure no blur effect */
    }

    .nav-menu.active {
        left: 0;
        color: var(--primary-color);
    }

    .navbar.navbar-theme-dark .nav-link:hover,
    .navbar.navbar-theme-dark .nav-link.active {
        color: var(--primary-color);
    }

    .nav-menu li {
        margin: 1rem 0;
        color: black;
    }

    .navbar.navbar-theme-dark .nav-link {
        color: black;
    }

    .navbar.navbar-theme-dark .nav-link:hover {
        color: var(--primary-color);
    }

    /* Fix mobile menu text color */
    .nav-link {
        color: var(--text-dark);
    }

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

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cta-box {
        padding: 3rem 2rem;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    .logo img {
        width: 100px !important;
    }

    /* Logo Logic */
    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }

    .logo-mobile-invert {
        display: none;
    }

    /* When navbar is light (white background), show dark logo */
    .navbar.navbar-theme-light .logo-mobile {
        display: none;
    }

    .navbar.navbar-theme-light .logo-mobile-invert {
        display: block;
    }

    .services-cta-icon {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .about-grid,
    .services-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 1.5rem;
    }
}

/* ===========================
   PRICING SECTION
   =========================== */
.pricing-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card-featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(180deg, rgba(0, 191, 99, 0.03) 0%, var(--bg-white) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pricing-card-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.pricing-card-price {
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-card-monthly {
    color: var(--text-lighter);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.feature-check {
    color: var(--primary-color);
    font-weight: 600;
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Pay-Per-Request Section */
.ppr-section {
    margin-bottom: 3rem;
}

.ppr-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.ppr-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.ppr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ppr-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ppr-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ppr-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

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

.ppr-card-highlight {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.02) 0%, rgba(30, 41, 59, 0.06) 100%);
    border-color: var(--secondary-color);
}

.ppr-card-highlight .ppr-icon {
    background: var(--secondary-color);
    color: white;
}

.ppr-card-highlight .ppr-price {
    color: var(--secondary-color);
}

.ppr-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 191, 99, 0.1) 0%, rgba(0, 145, 75, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.ppr-icon svg {
    width: 24px;
    height: 24px;
}

.ppr-content {
    flex: 1;
}

.ppr-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.ppr-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.ppr-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: auto;
}

/* Pricing CTA */
.pricing-cta {
    background: var(--secondary-color);
    border-radius: 16px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-cta-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.pricing-cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Pricing Responsive */
@media (max-width: 968px) {
    .ppr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .ppr-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-cta {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .pricing-cta-content {
        margin-bottom: 1rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}