/* ===================================
   FLARELABS CREATIVE - ENHANCED DESIGN
   Dark Noir | Purple Gradient Accents
   =================================== */

/* ROOT VARIABLES */
:root {
    --primary-color: #b946f7;
    --secondary-color: #ec4899;
    --accent-color: #f59e0b;
    --dark-bg: #0a0e27;
    --darker-bg: #050812;
    --card-bg: #111831;
    --light-text: #ffffff;
    --muted-text: #94a3b8;
    --border-color: #1e293b;
    --transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes buttonJump {
    0%, 82%, 100% {
        transform: translate(0, 0);
    }
    8% {
        transform: translateX(1px);
    }
    10% {
        transform: translateX(-1px);
    }
    12% {
        transform: translateX(0);
    }
    48% {
        transform: translateX(-1px);
    }
    50% {
        transform: translateX(1px);
    }
    52% {
        transform: translateX(0);
    }
    88% {
        transform: translateY(-5px);
    }
    94% {
        transform: translateY(1px);
    }
}

@keyframes buttonGradientPulse {
    0%, 100% {
        background-position: 0% 50%;
        filter: saturate(1);
    }
    50% {
        background-position: 100% 50%;
        filter: saturate(1.18);
    }
}

/* RESET & TYPOGRAPHY */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #080b20;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background:
        radial-gradient(circle at 8% 18%, rgba(236, 72, 153, 0.11) 0%, transparent 24rem),
        radial-gradient(circle at 92% 14%, rgba(185, 70, 247, 0.12) 0%, transparent 28rem),
        linear-gradient(135deg, #080b20 0%, #090816 48%, #090d24 100%);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    background-attachment: scroll;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
}

p {
    color: var(--muted-text);
}

/* GRADIENT TEXT */
.gradient-text {
    background: linear-gradient(135deg, #b946f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(10deg); }
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(10, 14, 39, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(185, 70, 247, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 20px;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    height: 50px;
    flex-shrink: 0;
}

.logo-image {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(185, 70, 247, 0.3));
    transition: var(--transition);
}

.logo:hover .logo-image {
    filter: drop-shadow(0 0 20px rgba(185, 70, 247, 0.6));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--muted-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b946f7, #ec4899);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-nav {
    background: linear-gradient(135deg, #b946f7, #ec4899) !important;
    background-size: 180% 180% !important;
    color: white !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    box-shadow: 0 0 20px rgba(185, 70, 247, 0.3);
    animation: buttonJump 3.2s ease-in-out infinite, buttonGradientPulse 4s ease-in-out infinite;
}

.cta-nav:hover {
    box-shadow: 0 0 30px rgba(185, 70, 247, 0.6);
    transform: translateY(-2px);
    animation: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 95px 20px 80px;
    overflow: visible;
    margin-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(185, 70, 247, 0.25) 0%, transparent 70%);
    top: -20%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: 2s;
    animation-direction: reverse;
}

.gradient-line {
    display: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.35rem;
    text-align: center;
    max-width: 980px;
    width: 100%;
}

.hero-logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    height: 108px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(185, 70, 247, 0.4));
    animation: fadeInScale 0.8s ease-out;
}

.logo-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(185, 70, 247, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.hero-title {
    font-size: clamp(2.7rem, 5.4vw, 4.25rem);
    max-width: 820px;
    margin-top: 0.5rem;
    line-height: 1.28;
    display: block;
    overflow: visible;
    letter-spacing: 0;
}

.word {
    display: inline-block;
    line-height: 1.28;
    padding-bottom: 0.12em;
    margin-bottom: -0.12em;
    margin-right: 0.18em;
    animation: fadeInUp 0.8s ease-out backwards;
}

.word:last-child {
    margin-right: 0;
}

.word:nth-child(1) { animation-delay: 0.1s; }
.word:nth-child(2) { animation-delay: 0.2s; }
.word:nth-child(3) { animation-delay: 0.3s; }
.word:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted-text);
    margin: 0;
    max-width: 700px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.75rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-cta .btn {
    min-width: 300px;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: min(100%, 840px);
    margin-top: 1.35rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stat {
    background: rgba(185, 70, 247, 0.05);
    border: 1px solid rgba(185, 70, 247, 0.1);
    border-radius: 0.75rem;
    min-height: 124px;
    padding: 1.35rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

.hero-stat:hover {
    border-color: rgba(185, 70, 247, 0.3);
    background: rgba(185, 70, 247, 0.1);
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #b946f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-value span {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #b946f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.8;
}

.stat-text {
    font-size: 0.85rem;
    color: var(--muted-text);
}

.scroll-indicator {
    border: 0;
    background: transparent;
    color: var(--muted-text);
    cursor: pointer;
    margin-top: 1.5rem;
    padding: 0;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #b946f7, #ec4899);
    border-radius: 50%;
    margin: 0 auto 0.75rem;
    box-shadow: 0 0 15px rgba(185, 70, 247, 0.5);
}

.scroll-indicator span {
    font-size: 1.275rem;
    color: var(--muted-text);
    display: block;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 0.65rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    animation: buttonJump 3.2s ease-in-out infinite;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
    z-index: 0;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    animation: none;
}

.btn-text, .btn-icon {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #b946f7, #ec4899);
    background-size: 180% 180%;
    color: white;
    box-shadow: 0 0 30px rgba(185, 70, 247, 0.4);
    animation: buttonJump 3.2s ease-in-out infinite, buttonGradientPulse 4s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(185, 70, 247, 0.8);
    animation: none;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 0 rgba(185, 70, 247, 0);
}

.btn-secondary:hover {
    background: rgba(185, 70, 247, 0.1);
    box-shadow: 0 0 30px rgba(185, 70, 247, 0.3);
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    .btn,
    .btn-primary,
    .cta-nav {
        animation: none;
    }
}

.btn-large {
    padding: 1.2rem 4rem;
    font-size: 1.1rem;
}

/* ===================================
   ANIMATIONS
   =================================== */
@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);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(168, 85, 247, 0.8);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   SECTION HEADER
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
    padding-bottom: 0.08em;
    background: linear-gradient(135deg, #ffffff, #b946f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--muted-text);
}

/* ===================================
   WHY US SECTION
   =================================== */
.why-us {
    padding: 120px 20px;
    background: transparent;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-text h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #b946f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-us-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-us-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 1.5rem;
    animation: slideIn 0.6s ease-out both;
}

.why-us-item:nth-child(1) { animation-delay: 0s; }
.why-us-item:nth-child(2) { animation-delay: 0.1s; }
.why-us-item:nth-child(3) { animation-delay: 0.2s; }
.why-us-item:nth-child(4) { animation-delay: 0.3s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.why-us-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #b946f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-us-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--light-text);
}

.why-us-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-us-video {
    width: min(100%, 320px);
    margin: 0 auto;
}

.why-us-video .video-placeholder {
    margin-bottom: 0;
}

.video-result {
    margin-top: 1.25rem;
    text-align: left;
}

.video-result h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--light-text);
}

.video-result p {
    color: var(--muted-text);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
}

.why-us-video-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    justify-content: center;
}

/* ===================================
   VIDEO PLACEHOLDER
   =================================== */
.video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: linear-gradient(135deg, rgba(185, 70, 247, 0.1), rgba(236, 72, 153, 0.05));
    border: 3px solid rgba(185, 70, 247, 0.65);
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 1rem;
    box-shadow:
        0 0 0 1px rgba(236, 72, 153, 0.18),
        0 0 28px rgba(185, 70, 247, 0.22);
}

.video-placeholder::before {
    content: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(185, 70, 247, 0.2) 50%, transparent 70%);
    animation: shimmer 3s infinite;
    z-index: 0;
    pointer-events: none;
}

.feature-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.play-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    z-index: 1;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(185, 70, 247, 0.5));
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process {
    padding: 70px 20px;
    background: transparent;
}

.process-steps {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.process-step {
    background: linear-gradient(135deg, rgba(185, 70, 247, 0.08), rgba(236, 72, 153, 0.05));
    border: 1px solid rgba(185, 70, 247, 0.15);
    border-radius: 1.2rem;
    padding: 1.75rem 1.35rem;
    text-align: center;
    animation: fadeInUp 0.6s ease-out both;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(185, 70, 247, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover {
    border-color: rgba(185, 70, 247, 0.3);
    background: linear-gradient(135deg, rgba(185, 70, 247, 0.15), rgba(236, 72, 153, 0.1));
    transform: translateY(-5px);
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:nth-child(1) { animation-delay: 0s; }
.process-step:nth-child(2) { animation-delay: 0.1s; }
.process-step:nth-child(3) { animation-delay: 0.2s; }
.process-step:nth-child(4) { animation-delay: 0.3s; }

.step-number {
    font-size: 2.7rem;
    font-weight: 900;
    background: linear-gradient(135deg, #b946f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.process-step h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--light-text);
    position: relative;
    z-index: 1;
}

.process-step p {
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    opacity: 0.2;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta {
    position: relative;
    padding: 70px 20px;
    background: transparent;
    text-align: center;
    overflow: visible;
}

.cta::before {
    display: none;
}

.cta::after {
    display: none;
}

.cta .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.cta h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #b946f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta p {
    font-size: 1.1rem;
    color: var(--muted-text);
    margin-bottom: 0;
}

.cta-main-text {
    margin-bottom: 0.55rem !important;
}

.cta-note {
    color: var(--light-text) !important;
    font-weight: 700;
    margin-bottom: 2rem !important;
}

.cta-glow {
    display: none;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: transparent;
    border-top: 0;
    padding: 45px 20px 35px;
}

.footer-content {
    display: flex;
    justify-content: center;
}

.contact-card {
    width: min(100%, 760px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem;
    background:
        linear-gradient(135deg, rgba(185, 70, 247, 0.12), rgba(236, 72, 153, 0.06)),
        rgba(17, 24, 49, 0.35);
    border: 1px solid rgba(185, 70, 247, 0.22);
    border-radius: 1.2rem;
    box-shadow:
        0 0 0 1px rgba(236, 72, 153, 0.08),
        0 24px 60px rgba(5, 8, 18, 0.28),
        0 0 40px rgba(185, 70, 247, 0.12);
    text-align: center;
}

.contact-card h4,
.contact-form h4 {
    margin-bottom: 1.4rem;
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    background: linear-gradient(135deg, #ffffff, #b946f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-details {
    min-width: 0;
}

.contact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-list a,
.contact-list div {
    display: flex;
    min-height: 92px;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    padding: 1rem;
    color: var(--light-text);
    text-decoration: none;
    background: rgba(5, 8, 18, 0.36);
    border: 1px solid rgba(185, 70, 247, 0.16);
    border-radius: 0.75rem;
    transition: var(--transition);
}

.contact-list span {
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.contact-list a:hover {
    border-color: rgba(236, 72, 153, 0.38);
    background: rgba(185, 70, 247, 0.12);
    transform: translateY(-3px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-form h4 {
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.form-field label {
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(185, 70, 247, 0.16);
    border-radius: 0.75rem;
    background: rgba(5, 8, 18, 0.36);
    color: var(--light-text);
    font: inherit;
    padding: 0.9rem 1rem;
    outline: none;
    transition: var(--transition);
}

.form-field textarea {
    min-height: 132px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(236, 72, 153, 0.5);
    background: rgba(185, 70, 247, 0.1);
    box-shadow: 0 0 0 3px rgba(185, 70, 247, 0.12);
}

.contact-form-submit {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .why-us-content {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-arrow {
        transform: rotate(90deg);
        opacity: 0.3;
    }

    .contact-list {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-logo {
        height: 90px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 20px 40px;
        min-height: auto;
    }

    .process,
    .cta {
        padding: 55px 20px;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .navbar .container {
        height: auto;
        padding: 0.5rem 20px;
    }

    .hero-logo {
        height: 60px;
    }

    .why-us-item {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }

    .why-us-number {
        font-size: 1.5rem;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.no-scroll {
    overflow: hidden;
}

.calendly-badge-widget .calendly-badge-content {
    background: linear-gradient(135deg, #b946f7, #ec4899) !important;
    border-radius: 0.65rem !important;
    box-shadow: 0 0 30px rgba(185, 70, 247, 0.4) !important;
    font-weight: 700 !important;
}
