/* ================================================================
   CLOUDA HOST — Supplementary Styles
   Bridges the gap between main CSS and custom HTML structure
   ================================================================ */

/* ── Navbar Container Fix ── */
.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ── Brand Icon & Text ── */
.brand-icon {
    font-size: 1.8rem;
    margin-right: 4px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.brand-accent {
    color: #FF6B00;
}

/* ── Nav Links (maps to nav-menu) ── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-cta {
    margin-left: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.55rem 1.25rem;
    background: transparent;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 10px;
    font-size: 0.875rem;
    border: 2px solid #FF6B00;
    transition: all 0.3s ease;
    box-shadow: none;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C38 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

/* ── Hamburger Menu ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 1001;
    border-radius: 8px;
    transition: background 0.3s ease;
    background: none;
    border: none;
    padding: 0;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 3px 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ── Hero Badge ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.25);
    border-radius: 50px;
    color: #FF8C38;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 1.1rem;
    color: #FF6B00;
}

/* ── Hero Typing Effect ── */
.hero-typing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.typing-label {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.typing-text {
    color: #FF6B00;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    min-width: 160px;
}

.typing-cursor {
    color: #FF6B00;
    font-weight: 300;
    animation: blink 0.8s ease-in-out infinite;
}

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

/* ── Hero Buttons ── */
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    width: 100%;
}

/* ── Hero Trust Items ── */
.hero-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100%;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-item i {
    color: #FF6B00;
    font-size: 1.1rem;
}

/* ── Hero Scroll Indicator ── */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.hero-scroll-indicator a:hover {
    color: #FF6B00;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #FF6B00;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* ── Hero Background Shapes ── */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: #FF6B00;
    top: -150px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #FF8C38;
    bottom: -100px;
    left: -100px;
    animation: float 20s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #FFA559;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 10s ease-in-out infinite;
}

/* ── Particles ── */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 107, 0, 0.4);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* ── Section Badge ── */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 50px;
    color: #FF6B00;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.section-badge i {
    font-size: 1rem;
}

/* ── Section Header ── */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Service Card Enhancements ── */
.service-card {
    border: 3px solid rgba(255, 107, 0, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.service-card:hover {
    border-color: #FF6B00 !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2) !important;
}

.service-card-glow {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.3), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(1px);
}

.service-card:hover .service-card-glow {
    opacity: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.service-features li i {
    color: #FF6B00;
    font-size: 1rem;
    flex-shrink: 0;
}

.service-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.service-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    flex-wrap: wrap;
}

/* ── Services Grid ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ── Button System ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    font-family: inherit;
    line-height: 1.4;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C38 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: #FF6B00;
    color: #FF6B00;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-outline:hover {
    border-color: #FF6B00;
    color: #FF6B00;
    background: rgba(255, 107, 0, 0.05);
}

.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-white {
    background: #ffffff;
    color: #FF6B00;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ── Gradient Text ── */
.gradient-text {
    background: linear-gradient(135deg, #FF6B00 0%, #FFA559 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-white {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Pricing Section ── */
.pricing-wrapper {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.pricing-card {
    position: relative;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(17, 17, 17, 0.98) 100%);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 24px;
    padding: 3rem;
    max-width: 550px;
    width: 100%;
    text-align: center;
    overflow: hidden;
    transition: all 0.5s ease;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(from 0deg, #FF6B00, #FF8C38, #FFA559, transparent, transparent, #FF6B00);
    z-index: -1;
    animation: rotateBorder 6s linear infinite;
    opacity: 0.5;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pricing-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-popular {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #FF6B00, #FF8C38);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 0.5rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B00;
}

.pricing-price {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6B00, #FFA559);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pricing-period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.pricing-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pricing-feature > i {
    color: #FF6B00;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-feature div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pricing-feature strong {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-feature span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
}

.pricing-action {
    padding-top: 1rem;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
}

.pricing-guarantee i {
    color: #25D366;
}

/* ── Process Section ── */
.process-roadmap-container {
    position: relative;
    padding: 3rem 0;
    margin-top: 2rem;
}

.roadmap-svg-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 1;
}

.roadmap-svg-line {
    width: 100%;
    height: 100%;
}

.process-roadmap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.roadmap-card {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(17, 17, 17, 0.98) 100%);
    border: 3px solid rgba(255, 107, 0, 0.15);
    border-radius: 20px;
    padding: 2.2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.roadmap-card:nth-child(even) {
    transform: translateY(25px);
}

.roadmap-card:nth-child(odd) {
    transform: translateY(-15px);
}

.roadmap-card:hover {
    transform: translateY(-25px) scale(1.03) !important;
    border-color: #FF6B00;
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.3);
}

.roadmap-number-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B00, #FF8C38);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.4);
}

.roadmap-icon {
    font-size: 2.2rem;
    color: #FF6B00;
    margin-bottom: 1rem;
}

.roadmap-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.roadmap-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ── Stats Section ── */
.stats-section {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a) !important;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.05), transparent 70%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-icon {
    font-size: 2.5rem;
    color: #FF6B00;
    margin-bottom: 1rem;
}

.counter-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6B00, #FFA559);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ── Why Choose Us Section ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.1);
}

.why-icon {
    font-size: 2.5rem;
    color: #FF6B00;
    margin-bottom: 1.25rem;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ── FAQ Section ── */
.faq-container {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(26, 26, 26, 0.6);
}

.faq-item:hover {
    border-color: rgba(255, 107, 0, 0.2);
}

.faq-item.active {
    border-color: rgba(255, 107, 0, 0.3);
    background: rgba(255, 107, 0, 0.03);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

.faq-question i {
    color: #FF6B00;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: none;
}

.faq-answer {
    height: 0;
    max-height: none !important;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item.active .faq-answer {
    max-height: none !important;
    padding-bottom: 0 !important;
}

.faq-answer-inner {
    min-height: 0;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── CTA Section ── */
.cta-section {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C38 50%, #FFA559 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
}

.cta-trust-item i {
    font-size: 1.1rem;
}

/* ── Modal System ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    background: linear-gradient(180deg, #1a1a1a, #111111);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 24px;
    padding: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow-y: auto;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.modal-close:hover {
    background: rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.3);
    color: #FF6B00;
}

.modal-header {
    padding: 2.5rem 2.5rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-icon {
    font-size: 3rem;
    color: #FF6B00;
    margin-bottom: 1rem;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.modal-body {
    padding: 2rem 2.5rem;
}

.modal-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FF6B00;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.7;
}

.modal-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.modal-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.modal-features li i {
    color: #FF6B00;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.modal-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1.25rem;
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 14px;
    margin-top: 1.5rem;
}

.modal-highlight > i {
    font-size: 1.5rem;
    color: #FF6B00;
    flex-shrink: 0;
    margin-top: 2px;
}

.modal-highlight p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.modal-footer {
    padding: 1.5rem 2.5rem 2.5rem;
    text-align: center;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulseWa 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulseWa {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #1a1a1a;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float.show-tooltip .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF6B00, #FF8C38);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

/* ── Loader ── */
.loader {
    position: fixed;
    inset: 0;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: all 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.loader-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #FF6B00, #FF8C38);
    border-radius: 3px;
    animation: loaderFill 1.5s ease-in-out forwards;
}

@keyframes loaderFill {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ── Footer ── */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4rem 0 0;
}

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

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.3);
    color: #FF6B00;
    transform: translateY(-3px);
}

.footer-links-group h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.footer-links-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links-group ul li a,
.footer-contact li a,
.footer-contact li span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.footer-links-group ul li a:hover,
.footer-contact li a:hover {
    color: #FF6B00;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: #FF6B00;
    font-size: 1.1rem;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.3) !important;
}

/* ================================================================
   RESPONSIVE DESIGN
   ================================================================ */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
    }

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

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

    .why-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-typing {
        flex-direction: column;
        gap: 6px;
    }

    .pricing-card {
        padding: 2rem;
    }

    .process-roadmap {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1.5rem;
    }
    .roadmap-svg-wrapper {
        display: none;
    }
    .roadmap-card:nth-child(even),
    .roadmap-card:nth-child(odd) {
        transform: none;
    }
    .roadmap-card:hover {
        transform: translateY(-8px) scale(1.02) !important;
    }

    .cta-trust {
        flex-direction: column;
        gap: 0.75rem;
    }

    .modal-body,
    .modal-header,
    .modal-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .service-modal {
        width: 95%;
        max-height: 90vh;
    }
}

@media (max-width: 576px) {
    .process-roadmap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-price {
        font-size: 3rem;
    }

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

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 0, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 107, 0, 0.5);
}

/* ── Selection ── */
::selection {
    background: rgba(255, 107, 0, 0.3);
    color: #ffffff;
}

/* ── Refinements & Visual Fixes ── */

/* Remove double underline effect on contact nav link cta */
.nav-cta::after {
    display: none !important;
}

/* Remove double hover effect/top border overlay on service cards */
.service-card::before {
    display: none !important;
}

/* Consistent Thick Borders for FAQ, Why Choose Us, and Pricing Cards */
.faq-item {
    border: 3px solid rgba(255, 107, 0, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.faq-item:hover {
    border-color: rgba(255, 107, 0, 0.4) !important;
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.1) !important;
}
.faq-item.active {
    border-color: #FF6B00 !important;
    background: rgba(255, 107, 0, 0.03) !important;
}

.why-card {
    border: 3px solid rgba(255, 107, 0, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.why-card:hover {
    border-color: #FF6B00 !important;
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2) !important;
}

.pricing-card {
    border: 3px solid rgba(255, 107, 0, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.pricing-card:hover {
    border-color: #FF6B00 !important;
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.3) !important;
}

/* Stabilize FAQ Layout Transition & Remove Wobbles */
.faq-answer-inner {
    min-height: 0;
    padding: 1.25rem 1.5rem !important;
}
.faq-answer p {
    padding: 0 !important;
    margin: 0 !important;
}

/* Deactivate section overlap effect - make pages flow sequentially */
.hero, .services-section, .process-section, .pricing-section, .why-section, .faq-section, .cta-section, .footer {
    position: relative !important;
    transform: none !important;
    z-index: 10 !important;
}
.hero-content {
    transform: none !important;
    opacity: 1 !important;
}
.hero-scroll-indicator {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
