
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px; /* Desktop default */
}

/* =========================
   Tablet (≤ 991px)
========================= */
@media (max-width: 991px) {
    html {
        scroll-padding-top: 80px;
    }
}

/* =========================
   Mobile (≤ 576px)
========================= */
@media (max-width: 576px) {
    html {
        scroll-padding-top: 230px;
    }
}

/* =========================
   Small Mobile (≤ 375px)
========================= */
@media (max-width: 375px) {
    html {
        scroll-padding-top: 95px;
    }
}





/* ======================================================= HERO SECTION 1 ================================================================================ */

.hero-section {
    background-color: #f7f7fa;
    padding: 100px 0;
    text-align: center;
    --dot-color: rgba(94, 76, 199, 0.1);
    background-image: radial-gradient(var(--dot-color) 2px, transparent 3px);
    background-size: 20px 20px;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.2;
}

.hero-subheading {
    font-size: 1.25rem;
    color: #0b0b0b;
    max-width: 650px;
    margin: 0 auto 40px;
    font-weight: 400;
}

/* CTA Buttons */
.btn-primary-solid {
    background-color: #296e48;
    border-color: #3CB371;
    color: #fff;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn-primary-solid:hover {
    background-color: #3CB371;
    border-color: #3CB371;
}

.btn-secondary-outline {
    background-color: transparent;
    border: 2px solid #ddd;
    color: #31335b;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    margin-left: 15px;
    transition: border-color 0.3s, background-color 0.3s;
}

.btn-secondary-outline:hover {
    border-color: #a0a0a0;
    background-color: #fff;
}

/* Trial Info */
.trial-info {
    margin-top: 40px;
    color: #0e0d0d;
    font-size: 0.95rem;
}

.trial-info strong {
    color: #231768;
    font-weight: 600;
}










/* ============================================================ HERO SECTION 2 =========================================================================== */



.hero-purple-bg {
    background: url("images/bg2.png") center/cover no-repeat;
    color: #fff;
    font-family: "Inter", sans-serif;
    padding: 80px 20px;
    text-align: center;
}

.hero-purple-bg h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-purple-bg p {
    font-size: 20px;
    max-width: 760px;
    margin: 20px auto;
    opacity: 0.9;
}

/* Dashboard Wrapper */
.dashboard-wrapper {
    position: relative;
    overflow: visible;
    z-index: 10;
    margin-top: 40px;
}

.dashboard {
    width: 90%;
    max-width: 1100px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    animation: floatUp 1.2s ease;
}

/* Animations */
@keyframes floatUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tag Boxes */
.tag-box {
    position: absolute;
    background: #fff;
    color: #333;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(-20px);
    animation: popIn 1s forwards, pulse 2s infinite 1s;
}

@keyframes popIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-2px) scale(1.02); }
}

/* Tag Positions */
.tag-geo {
    left: -1%;
    top: 10%;
    background: #e0f3ff;
    color: #0077b6;
    border-left: 4px solid #0096c7;
    animation-delay: 0.5s;
}

.tag-notice {
    right: -1%;
    top: 19%;
    background: #fff2e0;
    color: #d46b00;
    border-left: 4px solid #ff8800;
    animation-delay: 1s;
}

.tag-quick {
    right: -6%;
    top: 93%;
    background: #f5d9cf;
    color: #e32d19;
    border-left: 4px solid #ff2f00;
    animation-delay: 1s;
}

/* Tag arrows */
.tag-box::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.tag-geo::after {
    left: 100%;
    top: 0%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #fff;
}

.tag-notice::after {
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 10px 6px 0;
    border-color: transparent #fff transparent transparent;
}




/* Responsive adjustments for Hero 2 */
/* @media(max-width: 768px) { */
    /* .dashboard-wrapper { flex-direction: column; } */
    /* .tag-box { font-size: 12px; padding: 8px 12px; }
    .tag-geo, .tag-notice { top: auto; bottom: 10%; left: 50%; transform: translateX(-50%); }
    .tag-geo::after, .tag-notice::after { display: none; } */
/* } */







/* ======================================================= KEY FEATURES SECTION =========================================================================== */

.key-features .card {
    transition: transform 0.3s, box-shadow 0.3s;
}
.key-features .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}





/* ============================================================ PRICING SECTION =========================================================================== */


/* -------------------- BASE RESET -------------------- */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

/* -------------------- HEADER -------------------- */
.page-header {
    text-align: center;
    margin: 40px 0;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0c1530;
}

.page-header p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

/* -------------------- PRICING CARDS -------------------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.plan-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 700;
    color: #ffffff;
    font-size: 14px;
    z-index: 2;
}

.plan-header-top {
    text-align: center;
    margin-bottom: 20px;
}

.plan-header-top i {
    font-size: 36px;
    background: rgba(11, 114, 203, 0.1);
    color: #0b72cb;
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 15px;
}

.plan-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #0c1530;
}

.plan-subtitle {
    font-size: 15px;
    color: #6f767e;
    margin-bottom: 15px;
}

/* -------------------- PRICE SECTION -------------------- */
.old-price {
    font-size: 30px;
    color: #777;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.launch-discount {
    background: linear-gradient(135deg, #ff6b6b, #ff4d4d);
    color: #fff;
    padding: 7px 8px;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: -100px;
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.3);
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0px 0 5px 0;
    justify-content: center;
}

.currency {
    font-size: 28px;
    font-weight: 600;
    color: #0765b3;
}

.price-value {
    font-size: 42px;
    font-weight: 800;
    color: #0765b3;
    transition: 0.4s ease;
}

.period {
    font-size: 18px;
    color: #6f767e;
    transition: 0.4s ease;
}

/* -------------------- FEATURE LIST -------------------- */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
}

.success {
    color: #0b9f1c;
}

.fail {
    color: #f20404;
}

/* -------------------- CTA BUTTON -------------------- */
.cta-button {
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-align: center;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: auto;
}

.starter-btn {
    background: transparent;
    border: 2px solid #2b6cb0;
    color: #1771c5;
}

.standard-btn {
    background: linear-gradient(135deg, #6ee7b7, #3b82f6);
    color: #092241;
}

.core-btn {
    background: linear-gradient(135deg, #64748b, #334155);
    color: #ffffff;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* -------------------- COMPARISON TABLE -------------------- */
.compare-section {
    margin-top: 80px;
    margin-bottom: 80px;
}

.compare-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0c1530;
}

.compare-section > p {
    text-align: center;
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Table container */
.pricing-table {
    display: flex;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    background: transparent;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    gap: 15px;
}

/* Columns */
.pricing-column {
    flex: 1;
    text-align: center;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    border-right: 1px solid #eee;
}

.pricing-column:last-child {
    border-right: none;
}

/* Group column (first column with feature names) */
.group-column {
    flex: 1.2;
    text-align: left;
}

/* Headers */
.header {
    color: white;
    padding: 25px 15px;
    font-weight: 800;
}

.header .title {
    margin: 0;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Feature list */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.features-list li {
    padding: 16px 12px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    color: #333;
    display: flex;
    align-items: center;
    min-height: 60px;
    text-align: left;
}

.group-column .features-list li {
    padding-left: 20px;
    padding-right: 10px;
}

/* Group headers within the feature list */
.group-name {
    font-weight: 800;
    color: #fff !important;
    text-align: left;
    font-size: 16px;
    padding-left: 20px !important;
}

.group-name-filler {
    background-color: #fafbfc;
    min-height: 60px;
}

/* Icons */
.check-icon, .cross-icon {
    margin: 0 auto;
    font-size: 18px;
    font-weight: bold;
}

.light-blue { color: #0b9f1c; }
.green { color: #0b9f1c; }
.dark-blue { color: #0b9f1c; }
.purple { color: #0b9f1c; }
.red { color: #f20404; }
.light-gray { color: #f20404; }

/* -------------------- ANIMATIONS -------------------- */
.fade-out {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
/* 
.pop-in {
    animation: pop 0.5s ease forwards, blink 1.2s infinite 0.6s;
} */

@keyframes pop {
    0%   { transform: scale(0.6); opacity: 0; }
    70%  { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes blink {
    0%   { opacity: 1; }
    50%  { opacity: 0.2; }
    100% { opacity: 1; }
}

.blink {
    animation: blinkAnim 1.8s infinite;
}

@keyframes blinkAnim {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

/* -------------------- RESPONSIVE FOR PRICING -------------------- */






@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .pricing-table {
        overflow-x: auto;
    }
    
    .pricing-column {
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .compare-section h2 {
        font-size: 1.8rem;
    }
}







/* ============================================================ WHY CHOOSE SECTION ====================================================================== */


/* --- Variables & Global Styles --- */
:root {
    --color-primary: #343a40; /* Dark text/heading color */
    --color-secondary: #1B211A; /* General text color */
    --color-pink: #3CB371;
    --color-light-bg: #f8f9fa;
    --color-white: #ffffff;
    --max-content-width: 1200px;
    --card-radius: 52px;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-light-bg);
}

/* --- Section Setup --- */
.turia-cfo-section {
    position: relative;
    padding: 60px 0 100px;
    overflow: hidden;
    background: 
        url('images/bg2.png') no-repeat center center;
    background-size: cover;
    color: #ffffff;
}

/* --- Main Header Styling --- */
.main-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.main-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Content Wrapper (Center and Max Width) --- */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* --- Left Text Block Styling --- */
.text-block {
    padding-right: 40px;
}

.main-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color:#fff;
    margin-bottom: 20px;
}

.intro-paragraph {
    font-size: 1.05rem;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 30px;
}

.feature-listt {
    list-style: none;
    padding: 0;
}

.feature-listt li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #fff;
}

.feature-listt i {
    color: #00FFFF;
    margin-right: 10px;
    font-size: 1.1rem;
    position: relative;
    top: 4px;
}

/* --- Right Cards Grid Styling --- */
.cards-grid-area {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

/* Card Grid Placement */
.dashboard-card {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    min-height: 250px;
}
.alert-card {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    min-height: 160px;
}
.feature-card:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    min-height: 250px;
}
.notices-card {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    min-height: 160px;
}

/* --- Card Base Styling --- */
.feature-card {
    background-color: var(--color-white);
    padding: 25px;
    border-radius: var(--card-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
    cursor: pointer;
    opacity: 0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-box {
    color: var(--color-pink);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

.feature-card p {
    font-size: 0.9rem;
    color: var(--color-secondary);
    line-height: 1.5;
    margin: 0;
}

/* --- Advanced CSS Animations --- */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

/* Apply main animations to sections */
.text-block[data-animation="fade-in-left"] {
    animation: fadeInLeft 1s ease-out forwards;
}

.cards-grid-area[data-animation="fade-in-right"] {
    animation: fadeInRight 1s ease-out forwards;
    animation-delay: 0.2s;
}

/* Apply staggered animations to individual cards */
.feature-card {
    animation: fadeInUp 0.5s ease-out forwards;
}
.feature-card:nth-child(1) { animation-delay: 0.5s; }
.feature-card:nth-child(2) { animation-delay: 0.7s; }
.feature-card:nth-child(3) { animation-delay: 0.9s; }
.feature-card:nth-child(4) { animation-delay: 1.1s; }

/* --- Full Responsiveness (Media Queries) --- */
@media (min-width: 768px) and (max-width: 1200px) {
    .text-block {
        padding-right: 20px;
    }
}

@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    .text-block {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    .feature-listt {
        text-align: left;
    }
    .main-title {
        text-align: center;
    }
    
    .cards-grid-area {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-template-rows: auto;
        gap: 20px;
    }
    
    .dashboard-card, .alert-card, .feature-card:nth-child(3), .notices-card {
        grid-column: auto;
        grid-row: auto;
        min-height: auto;
    }
}












/* ============================================================ INSIGHTS SECTION =========================================================================== */
/* ANIMATION KEYFRAMES */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* INDIVIDUAL ANIMATIONS */
.fade-up {
    animation: fadeUp 0.8s ease-in-out;
}

.fade-left {
    animation: fadeLeft 0.9s ease-in-out;
}

.fade-right {
    animation: fadeRight 0.9s ease-in-out;
}

.insights-section {
    background: #f8f9fc;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
}

.insight-heading {
    font-size: 1.9rem;
    font-weight: 700;
    color: #2E8B57;
    margin-bottom: 20px;
}

.insight-list {
    list-style: none;
    padding: 0;
}

.insight-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #444;
    display: flex;
    align-items: flex-start;
}

.insight-list i {
    color: #1963B8;
    margin-right: 10px;
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Image Styling */
.insights-section img {
    transition: transform .3s ease, box-shadow .3s ease;
}

.insights-section img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Responsive Typography for Insights */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    .insight-heading {
        font-size: 1.4rem;
        text-align: center;
    }
    .insight-list li {
        font-size: 0.95rem;
    }
    .insight-list {
        text-align: left;
        margin: 0 auto;
        max-width: 350px;
    }
}







/* ======================================================= TESTIMONIALS SECTION =========================================================================== */



.testimonials-section {
    position: relative;
    background: url("images/bg2.png") center/cover no-repeat;
    padding: 70px 20px;
    color: #fff;
}

.section-title {
    text-align: center;
    color: #030C16;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
}

/* Slider wrapper */
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Slider */
.slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    padding-bottom: 10px;
}

.slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

/* Card */
.testimonial-card {
    flex: 0 0 auto;        /* don't shrink */
    width: 100%;            /* default full width */
    max-width: 300px;       /* max width for desktop */
    background: #ffffff;
    color: #333;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.6;
}

.testimonial-card h4 {
    margin-top: 15px;
    font-weight: 600;
}

.testimonial-card span {
    font-size: 13px;
    color: #777;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #030C16;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn.prev { left: 10px; }
.nav-btn.next { right: 10px; }

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Responsive */

/* Tablet: 2 cards per view */
@media (max-width: 991px) {
    .testimonial-card {
        max-width: 45%; /* 2 cards side by side */
        min-width: 200px;
    }
}

/* Mobile: 1 card per view */
@media (max-width: 576px) {
    .testimonial-card {
        max-width: 90%; /* almost full width */
        min-width: auto;
    }

    .nav-btn {
        display: none; /* hide arrows on mobile */
    }
}















/*======================================================= CTA Section ================================================================================*/
.cta-section {
    background: linear-gradient(135deg, #f4f7fb, #ffffff);
    padding: 60px 0;
}

/* Heading */
.cta-heading {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

/* Text */
.cta-text {
    font-size: 20px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Button */
.cta-section .btn-success {
    background-color: #55b85a;
    border-color: #55b85a;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Button Hover */
.cta-section .btn-success:hover {
    background-color: #48a44d;
    border-color: #48a44d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(85, 184, 90, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-heading {
        font-size: 24px;
    }

    .cta-text {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .cta-section {
        padding: 40px 15px;
    }
}
