/* ==============================
   DESIGN TOKENS
================================ */
:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --secondary: #1f2937;
    --bg-light: #f5f8ff;
    --bg-soft: #f9fafb;
    --text-dark: #111827;
    --text-muted: #6b7280;
    --border-soft: #e5e7eb;
    --radius-lg: 18px;
    --radius-md: 14px;
    --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.08);
    --transition: all 0.35s ease;
}

/* ==============================
   GLOBAL BASE
================================ */
body {
    font-family: 'Manrope', sans-serif;
    /*padding-top: 72px;*/
    background: var(--bg-soft);
    color: var(--text-dark);
    line-height: 1.65;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-muted);
    font-size: 15.5px;
}

/* ==============================
   HERO SECTION
================================ */
.hero-section {
    padding: 110px 0;
    background: linear-gradient(
        135deg,
        #0d6efd 0%,
        #084298 100%
    );
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.hero-section h1 {
    font-size: 44px;
}

.hero-section p {
    color: #e5edff;
    font-size: 17px;
}

/* ==============================
   INNER HERO (ABOUT / SERVICES)
================================ */
.inner-hero {
    padding: 110px 0 70px;
    background: linear-gradient(
        180deg,
        #f5f8ff,
        #ffffff
    );
    border-bottom: 1px solid var(--border-soft);
}

.inner-hero h1 {
    font-size: 38px;
}

.inner-hero p {
    max-width: 720px;
    margin: 12px auto 0;
}

/* ==============================
   CARDS – COMMON
================================ */
.service-card,
.why-box,
.info-box,
.pricing-card {
    background: #ffffff;
    padding: 34px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.service-card:hover,
.why-box:hover,
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* ==============================
   SERVICE / PRICING CARDS
================================ */
.service-card h5 {
    font-size: 18px;
    margin-bottom: 8px;
}

.service-card h2 {
    color: var(--primary);
    margin: 18px 0;
    font-size: 34px;
}

.service-card p {
    font-size: 15px;
}

.service-card ul {
    padding-left: 20px;
    margin: 20px 0 26px;
}

.service-card ul li {
    margin-bottom: 10px;
    font-size: 14.5px;
    color: var(--text-dark);
}

/* Featured pricing */
.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(
        180deg,
        #ffffff,
        #f5f8ff
    );
}

.featured::before {
    content: "Recommended";
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
}

/* ==============================
   WHY US BOX
================================ */
.why-box h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.why-box p {
    font-size: 15px;
}

/* ==============================
   INFO BOX (CONTACT / ABOUT)
================================ */
.info-box {
    background: linear-gradient(
        180deg,
        #ffffff,
        #f9fafb
    );
}

.info-box ul {
    padding-left: 18px;
}

.info-box ul li {
    margin-bottom: 10px;
}

/* ==============================
   BUTTONS (ENHANCED)
================================ */
.btn {
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(
        135deg,
        #0d6efd,
        #084298
    );
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.35);
}

.btn-outline-primary {
    border-width: 2px;
}

/* ==============================
   FORMS
================================ */
.form-control {
    border-radius: var(--radius-md);
    padding: 12px 14px;
    border: 1px solid var(--border-soft);
    font-size: 14.5px;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6 .4.4.4-.4m0 4.8h-.8'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.form-check-input.is-invalid {
    border-color: #dc3545;
}

.form-check-input.is-invalid:checked {
    background-color: #dc3545;
    border-color: #dc3545;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

/* ==============================
   FOOTER
================================ */
footer {
    background: #0b1324;
    color: #c7d2fe;
}

footer p,
footer small {
    color: #c7d2fe;
}

/* ==============================
   ENHANCED HERO SECTION
================================ */
.hero-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    animation: float 15s ease-in-out infinite reverse;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-hero {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
    transform: translateY(-2px);
}

.hero-stats {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float-img 6s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    animation: float-card 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 20px;
}

.card-1 {
    top: 10%;
    right: -10px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 2s;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

/* ==============================
   ANIMATIONS
================================ */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes float-img {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-15px) translateX(10px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==============================
   FEATURES SECTION
================================ */
.features {
    background: #fff;
    position: relative;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.feature-card {
    border: none;
    transition: var(--transition);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.featured-feature {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, #ffffff, var(--bg-light));
}

.featured-feature::before {
    content: "Popular";
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
}

.feature-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.feature-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* ==============================
   WHY SECTION
================================ */
.why-section {
    background: var(--bg-light);
}

.why-list {
    margin-top: 2rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.why-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.why-content h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.why-image {
    position: relative;
    padding: 2rem;
}

.trust-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.trust-badge i {
    font-size: 32px;
    color: #ffc107;
}

.trust-badge strong {
    display: block;
    font-size: 24px;
    color: var(--text-dark);
}

.trust-badge small {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.testimonial-preview {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-top: 2rem;
}

.testimonial-quote i {
    font-size: 48px;
    color: var(--primary);
    opacity: 0.2;
    display: block;
    margin-bottom: 1rem;
}

.testimonial-quote p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-author small {
    color: var(--text-muted);
    font-size: 13px;
}

/* ==============================
   STATS SECTION
================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 80px 0;
}

.stat-box {
    padding: 2rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin: 1rem 0 0.5rem;
    color: #fff;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==============================
   CTA SECTION
================================ */
.cta-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, #fff, var(--bg-light));
    padding: 4rem 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.cta-buttons .btn {
    padding: 14px 32px;
    font-size: 16px;
}

.trust-indicators {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-soft);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.trust-item i {
    font-size: 20px;
}

/* ==============================
   SMOOTH SCROLL
================================ */
html {
    scroll-behavior: smooth;
}

/* ==============================
   ABOUT PAGE STYLES
================================ */
.trust-badge-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.core-beliefs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.core-beliefs-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--text-dark);
}

.core-beliefs-list li:last-child {
    border-bottom: none;
}

.value-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.stats-box {
    background: linear-gradient(135deg, var(--bg-light), #fff);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.stat-item-inline {
    padding: 1rem;
}

.stat-number-inline {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label-inline {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==============================
   CONTACT PAGE STYLES
================================ */
.contact-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
}

.contact-form-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form-box .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form-box .input-group-text {
    background: var(--bg-light);
    border-color: var(--border-soft);
    color: var(--primary);
}

.contact-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-benefits li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
}

.contact-benefits li i {
    margin-top: 4px;
}

/* ==============================
   SERVICES PAGE STYLES
================================ */
.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
}

.pricing-card.highlighted .pricing-icon {
    background: linear-gradient(135deg, #fff, var(--bg-light));
    color: var(--primary);
    border: 2px solid var(--primary);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-amount .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-amount .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.pricing-amount .period {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14.5px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.comparison-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.comparison-table {
    margin: 0;
}

.comparison-table thead th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary);
    padding: 1rem;
}

.comparison-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-soft);
    color: var(--text-dark);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

/* ==============================
   WHY-US PAGE STYLES
================================ */
.why-icon-large {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    flex-shrink: 0;
}

.trust-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--radius-lg);
}

.trust-stat-item {
    padding: 1rem 0;
}

.trust-stat-item strong {
    font-size: 28px;
    color: var(--text-dark);
}

.testimonials-box {
    padding: 1rem 0;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card .testimonial-quote i {
    font-size: 40px;
    color: var(--primary);
    opacity: 0.2;
    display: block;
    margin-bottom: 1rem;
}

.testimonial-card .testimonial-quote p {
    font-size: 15px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-card .testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-weight: 600;
}

.testimonial-card .testimonial-author small {
    color: var(--text-muted);
    font-size: 13px;
}

.guarantee-box {
    background: linear-gradient(135deg, var(--bg-light), #fff);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
}

.guarantee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.guarantee-item i {
    font-size: 18px;
}

/* ==============================
   RESPONSIVE TWEAKS
================================ */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem !important;
    }

    .stat-item {
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .floating-card {
        display: none;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .stat-value {
        font-size: 36px;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem !important;
    }

    .why-item {
        flex-direction: column;
        text-align: center;
    }

    .trust-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 1rem;
    }

    .pricing-amount .amount {
        font-size: 36px;
    }

    .stat-number-inline {
        font-size: 28px;
    }

    .contact-form-box {
        padding: 1.5rem;
    }

    .comparison-box {
        padding: 1.5rem;
    }

    .trust-section {
        padding: 2rem 1.5rem;
    }

    .guarantee-box {
        padding: 2rem 1.5rem;
    }

    .guarantee-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .guarantee-item {
        font-size: 13px;
        padding: 8px 16px;
    }

    .why-icon-large {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 28px;
    }

    .stat-value {
        font-size: 32px;
    }
}
