body {
    font-family: 'Poppins', sans-serif;
}

.benefit-box {
    height: 100%;
    padding: 40px 20px;
    box-shadow: -1px -8px 30px 0px rgba(133, 66, 189, 0.1);
    position: relative;
    text-align: center;
}

.benefit-image {
    width: 80%;
    min-height: 70%;
    margin: 10px auto;
    text-align: center;
}

.benefit-title {
    font-weight: 600;
}

.benefit-text {
    font-size: 14px;
    font-weight: 300;
    color: #5d6970;
}

.section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
}

.section-title h4 {
    margin-bottom: 0;
    font-weight: 300;
    color: #5d6970;
}

.section-title h2 {
    font-weight: 700;
    font-size: 35px;
}

.top-header {
    border-top: 4px solid #ff4a0a;
}

/* Buttons */
.btn {
    font-size: 14px;
    border-radius: 0;
}

.btn-primary {
    background-color: #ff4a0a;
    border: 1px solid #ff4a0a;
}

.btn-primary:hover {
    background-color: #ff4a0a;
    border: 1px solid #ff4a0a;
    opacity: 0.8;
}

.btn-outline-primary {
    border: 1px solid #ff4a0a;
    color: #df741b;
}

.btn-outline-primary:hover {
    background-color: #ff4a0a;
    border: 1px solid #ff4a0a;
}

.main-info h1 {
    font-size: 60px;
    font-weight: 700;
}

.main-info p {
    color: #5d6970;
}

.order-easy-steps {
    padding-bottom: -150px;
}

.order-step-circle {
    width: 80px;
    height: 80px;
    background-color: #ededed;
    margin: 0 auto;
    border-radius: 50%;
    padding-top: 20px;
    color: #ff4a0a;
}

.order-step-infos {
    margin: 20px 0;
}

.order-step-infos h2 {
    font-size: 22px;
    font-weight: 600;
}

.order-step-infos p {
    font-size: 14px;
    color: #5d6970;
}

.order-step-circle i {
    font-size: 35px;
}

.order-step-image {
    padding-top: 50px;
}

.container-orange {
    width: 100%;
    height: 178px;
    background-color: #ff4a0a;
    margin-top: -150px;
}

.order-easy-steps .arrow-step::after {
    font-family: 'Font Awesome 5 Pro';
    content: "\f324";
    position: absolute;
    font-size: 35px;
    top: 5%;
    right: -10px;
    color: #ff4a0a;

}

.bg-orange {
    background-color: #ff4a0a;
}

.featured h2 {
    font-weight: 700;
    font-size: 55px;
}

.featured span {
    color: #ff4a0a;
    font-weight: bold;
    margin: 20px 0;
}

.featured p {
    color: #5d6970;
    font-weight: 300;
}

.plans .plan-title {
    padding: 30px 0;
}

.plans .plan-title h2 {
    font-weight: 800;
    font-size: 60px;
    line-height: 65px;
}

.plans .plan-title h2 span {
    font-size: 100px;
}

.plan-benefits ul {
    list-style: none;
    margin: 65px 0;
    padding: 10px;
    position: relative;
    width: 100%;
}

.plan-benefits ul li {
    display: block;
    margin-right: 20px;
    margin-bottom: 10px;
    font-size: 22px;
    color: #5d6970;
    font-weight: 300;
    position: relative;
}

.plan-benefits ul li::after {
    font-family: 'Font Awesome 5 Pro';
    content: "\f324";
    position: absolute;
    font-size: 25px;
    top: 0;
    left: -30px;
    color: #ff4a0a;
}

.news-message p {
    font-weight: bold;
    color: #5d6970;
    font-size: 25px;
    margin: 20px 0;

}

.footer {
    margin-top: 70px;
}

.footer .main-footer {
    background: #ededed;
}

.footer .main-footer .container {
    border-top: 2px solid #ff4a0a;
    padding: 50px 0 25px;
}

.footer .copy-footer {
    padding: 10px 0;
}

.footer .nav-footer {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.footer .nav-footer li {
    margin-right: 15px;
}

.footer .nav-footer li:last-child {
    margin-right: 0;
}

.footer .nav-footer li a {
    color: #5d6970;
}

.footer .nav-footer li a:hover {
    color: #ff4a0a;
}

.terms-page p {
    color: #5d6970;
    font-size: 14px;
}

.terms-page p strong {
    color: #000;
}

/* ========================================
   Home Page Animations & Effects
   ======================================== */

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

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* ========================================
   Feature Cards
   ======================================== */

.feature-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
}

/* ========================================
   Stats Counter
   ======================================== */

.stats-counter {
    font-size: 48px;
    font-weight: 700;
    color: #FF6B35;
    line-height: 1;
}

/* ========================================
   Integration Badges
   ======================================== */

.integration-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 10px;
    transition: transform 0.3s ease;
    color: #333;
    font-weight: 500;
}

.integration-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.integration-badge i {
    font-size: 24px;
    margin-right: 10px;
}

/* ========================================
   Gradient Backgrounds
   ======================================== */

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-section {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    padding: 80px 0;
    color: white;
}

/* ========================================
   Testimonial Cards
   ======================================== */

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 15px;
}


/* ========================================
   Accessibility & SEO Improvements
   ======================================== */

/* Skip to main content link */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background-color: #FF6B35;
    color: white;
    padding: 10px 20px;
    z-index: 9999;
    display: block;
    text-align: center;
    font-weight: 600;
}

/* Improve focus visibility for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid #FF6B35;
    outline-offset: 2px;
}

/* Ensure sufficient color contrast */
.text-muted {
    color: #5d6970 !important;
}

/* Improve readability */
p,
li {
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
}

/* Performance: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles for better SEO */
@media print {

    .top-header,
    .footer,
    .btn,
    .animate-on-scroll {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
}

/* ========================================
   NEW STYLES FROM HOME.PHP
   ======================================== */

:root {
    --primary: #FF6B35;
    --primary-dark: #e85d2a;
    --secondary: #2D3748;
    --text-body: #4A5568;
    --light: #F7FAFC;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-body);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--secondary);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #FF8C42 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 600;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #FF8C42 0%, var(--primary) 100%);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    padding: 140px 0 100px;
    position: relative;
    background: radial-gradient(circle at 90% 10%, rgba(255, 107, 53, 0.08), transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(255, 107, 53, 0.05), transparent 40%);
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

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

    .hero-section {
        padding: 100px 0 60px;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 90%;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Stats Section */
.stats-section {
    background: white;
    padding: 60px 0;
    border-bottom: 1px solid #edf2f7;
}

.stat-item {
    padding: 20px;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #718096;
    font-weight: 600;
}

/* Section Titles */
.section-title {
    margin-bottom: 4rem;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
}

/* Cards & Benefits */
.benefit-box {
    background: white;
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.benefit-box:hover::before {
    transform: scaleX(1);
}

.benefit-image {
    margin-bottom: 2rem;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-image img {
    max-height: 100%;
    object-fit: contain;
}

/* Features Grid */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #edf2f7;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

/* Steps / Easy Fast */
.steps-section {
    background: #fff;
    position: relative;
}

.step-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid #edf2f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-item:hover .step-circle {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

/* Plans */
.plan-card {
    background: white;
    border-radius: var(--radius);
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    border: 1px solid #edf2f7;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.plan-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 10;
}

.plan-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin: 1.5rem 0;
}

.plan-price small {
    font-size: 1rem;
    color: #718096;
    font-weight: 400;
}

/* Integrations */
.integrations-section {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    padding: 80px 0;
}

.integration-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    margin: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.integration-badge:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.integration-badge i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* CTA Box */
.cta-box {
    background: #1a202c;
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

/* Custom URL Input */
.custom-url-input {
    background: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
}

.custom-url-input input {
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    background: transparent;
    box-shadow: none !important;
}

.custom-url-input .suffix {
    background: #edf2f7;
    padding: 10px 20px;
    border-radius: 10px;
    color: #718096;
    font-weight: 500;
}