/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Themevisto
Author URI: https://themevisto.com
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 1.0

*/


/* 
  <link rel="preconnect" href="https://fonts.googleapis.com" />
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
  <link rel="preconnect" href="https://cdn.jsdelivr.net" />

  <!-- Fonts: Syne (display) + Inter (body) -->
  <link href="https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700&display=swap" rel="stylesheet">
  
  <!-- Bootstrap 5.3 -->
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" />

  <!-- Bootstrap Icons -->
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css" />

  <!-- AOS Animate On Scroll -->
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.css" />
*/

/* ============================================================
    DESIGN TOKENS
    Palette:
        --ink      #0D0F1A  (near-black navy)
        --deep     #111627  (section bg)
        --card     #181D2E  (card bg)
        --accent   #7C5CFC  (violet)
        --spark    #00E5C3  (teal spark – signature)
        --muted    #6B7280
        --border   rgba(255,255,255,.07)
        --white    #FFFFFF
============================================================ */
:root {
    --ink:    #0D0F1A;
    --deep:   #111627;
    --card:   #181D2E;
    --accent: #7C5CFC;
    --spark:  #00E5C3;
    --muted:  #8892A4;
    --border: rgba(255,255,255,.07);
    --white:  #FFFFFF;
    --font-display: 'Inter', sans-serif;
    --font-body:    'Inter', sans-serif;
    --radius: 14px;
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--ink) !important;
    color: var(--white) !important;
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    -webkit-font-smoothing: antialiased !important;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-display) !important;
    line-height: 1.2 !important;
    color: var(--white) !important; 
}

a { text-decoration: none !important; color: inherit !important; }

img { max-width: 100%; height: auto; display: block; }

/* ── Utility ── */
.text-accent  { color: var(--accent) !important; }
.text-spark   { color: var(--spark)  !important; }
.text-muted-c { color: var(--muted)  !important; }
.bg-deep      { background: var(--deep); }
.bg-card      { background: var(--card); }

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--spark);
    margin-bottom: 1rem;
}
.section-eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 2px;
    background: var(--spark);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
}
.section-sub {
    color: var(--muted);
    max-width: 580px;
    font-size: 1.05rem;
}

/* ── Buttons ── */
.btn-primary-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), #5A3FD4);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .92rem;
    padding: 13px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 0 0 rgba(124,92,252,.4);
    white-space: nowrap;
}
.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124,92,252,.5);
    color: #fff;
}

.btn-outline-spark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--spark);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .92rem;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1.5px solid var(--spark);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-outline-spark:hover {
    background: var(--spark);
    color: var(--ink);
    transform: translateY(-2px);
}

.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.07);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .92rem;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,.15);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-ghost-white:hover {
    background: rgba(255,255,255,.14);
    color: #fff;
    transform: translateY(-2px);
}

/* ── TOP BAR ── */
#topbar {
    background: linear-gradient(90deg, #0a0c16, var(--accent));
    padding: 9px 0;
    font-size: .82rem;
}
#topbar a { color: rgba(255,255,255,.85); transition: color var(--transition); }
#topbar a:hover { color: var(--spark); }
.topbar-info { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.topbar-info span { display: flex; align-items: center; gap: 6px; }
.topbar-socials a {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .8rem;
    transition: var(--transition);
}
.topbar-socials a:hover { background: var(--spark); border-color: var(--spark); color: var(--ink); }

/* ── HEADER / NAV ── */
#mainNav {
    background: rgba(13,15,26,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding var(--transition), box-shadow var(--transition);
}
#mainNav.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 40px rgba(0,0,0,.4);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white) !important;
    display: flex; align-items: center; gap: 8px;
}
.brand-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--spark);
    display: inline-block;
    box-shadow: 0 0 10px var(--spark);
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,.75) !important;
    font-weight: 500;
    font-size: .9rem;
    padding: 6px 14px !important;
    border-radius: 8px;
    transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,.06);
}

.navbar-toggler { border: 1px solid rgba(255,255,255,.2); padding: 6px 10px; }
.navbar-toggler-icon { filter: invert(1); }

/* ── HERO ── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Grid noise bg */
#hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(124,92,252,.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0,229,195,.1) 0%, transparent 60%),
    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' stroke='%23ffffff' stroke-opacity='.03' stroke-width='1'%3E%3Cpath d='M0 0h60v60H0z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,229,195,.08);
    border: 1px solid rgba(0,229,195,.25);
    color: var(--spark);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.hero-badge i { font-size: .8rem; }

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1.5rem;
}
.hero-title .highlight {
    position: relative;
    display: inline-block;
    color: var(--accent);
}
.hero-title .highlight::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--spark));
    border-radius: 2px;
}

.hero-desc {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 520px;
    margin-bottom: 2.2rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 2.8rem;
    padding-top: 2.8rem;
    border-top: 1px solid var(--border);
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.hero-stat-num span { color: var(--spark); }
.hero-stat-label {
    font-size: .8rem;
    color: var(--muted);
    margin-top: 3px;
}

/* Floating hero graphic */
.hero-visual {
    position: relative;
    z-index: 1;
}
.hero-visual-inner {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 0 1px var(--border);
}
.hero-visual-inner::before {
    content: '';
    position: absolute;
    top: -1px; left: 32px; right: 32px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--spark), transparent);
    border-radius: 2px;
}
.hero-browser-bar {
    display: flex; align-items: center; gap: 6px;
    margin-bottom: 16px;
}
.hero-browser-bar span {
    width: 11px; height: 11px; border-radius: 50%;
}
.dot-r { background: #FF5F57; }
.dot-y { background: #FFBD2E; }
.dot-g { background: #28CA42; }
.mock-url {
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .75rem;
    color: var(--muted);
    flex: 1;
}
.hero-mock-img {
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(124,92,252,.2), rgba(0,229,195,.1));
    height: 240px;
    display: flex; align-items: center; justify-content: center;
}
.hero-mock-img .mock-icon { font-size: 3.5rem; color: rgba(255,255,255,.1); }

.hero-float-badge {
    position: absolute;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,.4);
    white-space: nowrap;
    animation: floatY 3s ease-in-out infinite alternate;
}
@keyframes floatY { from { transform: translateY(0); } to { transform: translateY(-8px); } }
.badge-top-right  { top: -18px; right: -20px; animation-delay: .5s; }
.badge-bottom-left { bottom: -18px; left: -20px; animation-delay: 0s; }
.badge-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.bg-violet { background: rgba(124,92,252,.2); color: var(--accent); }
.bg-teal   { background: rgba(0,229,195,.15); color: var(--spark);  }

/* ── SERVICES ── */
.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(124,92,252,.08), transparent);
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover {
    border-color: rgba(124,92,252,.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(124,92,252,.15);
}
.service-card:hover::after { opacity: 1; }

.service-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: rgba(124,92,252,.12);
    border: 1px solid rgba(124,92,252,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 18px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 6px 20px rgba(124,92,252,.4);
}
.service-card h5 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    font-family: var(--font-display);
}
.service-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.step-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    position: relative;
}
.step-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--spark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}
.step-arrow {
    position: absolute;
    top: 50%; right: -18px;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 1.4rem;
    z-index: 2;
}

/* ── PORTFOLIO ── */
#portfolio { background: var(--deep); }
.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 3rem;
}
.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.portfolio-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 100%;
    transition: var(--transition);
}
.portfolio-card:hover {
    border-color: rgba(124,92,252,.4);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.portfolio-thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.portfolio-thumb-inner {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    transition: transform var(--transition);
}
.portfolio-card:hover .portfolio-thumb-inner { transform: scale(1.06); }

.portfolio-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(13,15,26,0) 0%, rgba(124,92,252,.7) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: opacity var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-body { padding: 20px 22px; }
.portfolio-cat {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--spark);
    margin-bottom: 6px;
}
.portfolio-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.portfolio-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--accent);
    transition: gap var(--transition);
    border: none; background: none; cursor: pointer; padding: 0;
}
.portfolio-view-btn:hover { gap: 10px; }

/* ── ABOUT ── */
#about { background: var(--deep); }
.about-img-wrap {
    position: relative;
}
.about-main-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    height: 380px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    position: relative;
}
.about-main-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(124,92,252,.15), rgba(0,229,195,.08));
}
.about-float-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(124,92,252,.4);
}
.about-float-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; line-height: 1; }
.about-float-label { font-size: .78rem; opacity: .85; margin-top: 2px; }

.skill-bar-wrap { margin-bottom: 16px; }
.skill-bar-top { display: flex; justify-content: space-between; font-size: .83rem; margin-bottom: 6px; }
.skill-bar-track {
    height: 6px; border-radius: 4px;
    background: rgba(255,255,255,.06);
}
.skill-bar-fill {
    height: 100%; border-radius: 4px;
    background: linear-gradient(90deg, var(--accent), var(--spark));
    transition: width 1.2s cubic-bezier(.4,0,.2,1);
    width: 0;
}

/* ── SPECIALITIES ── */
.spec-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}
.spec-card:hover {
    border-color: rgba(0,229,195,.35);
    box-shadow: 0 0 0 1px rgba(0,229,195,.15), 0 16px 50px rgba(0,0,0,.3);
    transform: translateY(-4px);
}
.spec-icon {
    font-size: 2.2rem;
    color: var(--spark);
    margin-bottom: 14px;
    display: block;
}
.spec-card h6 {
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.spec-card p { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--ink); }
.testi-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    height: 100%;
    transition: var(--transition);
}
.testi-card:hover { border-color: rgba(124,92,252,.3); }
.testi-stars { color: #FFB800; font-size: .88rem; margin-bottom: 12px; }
.testi-text { font-size: .9rem; color: rgba(255,255,255,.8); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--spark));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 700; font-family: var(--font-display);
    flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: .9rem; }
.testi-role { font-size: .78rem; color: var(--muted); }

/* ── CTA SECTION ── */
#cta-section {
    background: linear-gradient(135deg, #0f0827 0%, #0a1f1b 100%);
    position: relative;
    overflow: hidden;
}
#cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(124,92,252,.15) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(0,229,195,.08) 0%, transparent 60%);
    pointer-events: none;
}

/* ── CONTACT ── */
#contact { background: var(--deep); }
.contact-form-wrap {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 36px;
}
.form-label { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 6px; }
.form-control, .form-select {
    background: rgba(255,255,255,.05) !important;
    border: 1px solid var(--border) !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 13px 16px !important;
    font-size: .9rem !important;
    transition: border-color var(--transition) !important;
}
.form-control::placeholder { color: rgba(255,255,255,.3) !important; }
.form-control:focus, .form-select:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(124,92,252,.15) !important;
}
.form-select option { background: #1a1f35; }

.contact-info-item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: rgba(124,92,252,.12);
    border: 1px solid rgba(124,92,252,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--accent);
    flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
    background: #080a12;
    padding-top: 70px;
    border-top: 1px solid var(--border);
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 800;
    color: var(--white);
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 14px;
}
.footer-desc { font-size: .88rem; color: var(--muted); line-height: 1.75; }
.footer-heading { font-family: var(--font-display); font-size: .85rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .88rem; color: var(--muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--spark); }
.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 50px; padding: 22px 0;
    font-size: .82rem; color: var(--muted);
}
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--muted);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── MISC ── */
.divider-glow {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--spark));
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

/* Back to top */
#backToTop {
    position: fixed; bottom: 28px; right: 28px;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0; pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    z-index: 9999;
    border: none;
    box-shadow: 0 4px 20px rgba(124,92,252,.5);
}
#backToTop.visible { opacity: 1; pointer-events: all; }
#backToTop:hover { transform: scale(1.1); }

/* Form alert */
.form-success {
    background: rgba(0,229,195,.1);
    border: 1px solid rgba(0,229,195,.3);
    color: var(--spark);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: .88rem;
    display: none;
    margin-top: 14px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .step-arrow { display: none; }
    #hero { padding: 80px 0 60px; min-height: auto; }
    .hero-visual { margin-top: 50px; }
    .badge-top-right, .badge-bottom-left { display: none; }
}
@media (max-width: 767.98px) {
    .topbar-info { justify-content: center; }
    .section-title { font-size: 1.75rem; }
    .contact-form-wrap { padding: 26px 20px; }
}

/* Section spacing */
section { padding: 90px 0; }

