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

:root {
    --primary-color: #111111;
    --secondary-color: #ffffff;
    --accent-yellow: #FFD700;
    --accent-yellow-bright: #FFEB3B;
    --accent-yellow-dark: #FFC107;
    --text-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #6b7280;
    --bg-black: #111111;
    --bg-gray: #f9fafb;
    --yellow-form: #FFD700;
    --yellow-form-dark: #FFC107;
    --gradient: linear-gradient(135deg, #FFD700 0%, #FFC107 50%, #FFA500 100%);
    --shadow-yellow: 0 10px 40px rgba(255, 215, 0, 0.2);
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-script: 'Dancing Script', 'Playfair Display', cursive;
    --font-serif: 'Playfair Display', 'Times New Roman', serif;
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Screen reader only class */
.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;
}

html {
    scroll-behavior: smooth;
    /* Prevent horizontal pan/overflow on mobile browsers */
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    background: var(--bg-black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ============================================
   RESPONSIVE BASELINE (fixes overflow & improves scaling)
   ============================================ */
img, video, canvas, svg {
    max-width: 100%;
    height: auto;
}

input, select, textarea, button {
    max-width: 100%;
}

.container {
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
}

section {
    padding-top: clamp(3.5rem, 6vw, 6rem);
    padding-bottom: clamp(3.5rem, 6vw, 6rem);
}



/* ============================================
   NAVIGATION + MOBILE MENU
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-black);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.logo-box {
    border: 1px solid var(--text-white);
    padding: 0.5rem 1rem;
    display: inline-block;
}

.logo {
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--text-white);
    text-transform: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    height: 69px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-badge {
    display: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-black);
    padding: 2rem;
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--accent-yellow);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--bg-black);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    border-radius: 0 0 40px 40px;
    /* Garantir que o border-radius seja aplicado */
    isolation: isolate;
}

/* Grid Pattern Background */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    border-radius: 0 0 40px 40px;
}

/* Stars Background */
.hero-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, var(--text-white), transparent),
        radial-gradient(2px 2px at 60% 70%, var(--text-white), transparent),
        radial-gradient(1px 1px at 50% 50%, var(--text-white), transparent),
        radial-gradient(1px 1px at 80% 10%, var(--text-white), transparent),
        radial-gradient(2px 2px at 40% 80%, var(--text-white), transparent),
        radial-gradient(1px 1px at 90% 40%, var(--text-white), transparent);
    background-size: 200% 200%;
    animation: starMove 20s ease-in-out infinite;
    z-index: 1;
    opacity: 0.6;
    border-radius: 0 0 40px 40px;
}

@keyframes starMove {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

/* Yellow Glow at Bottom (Horizon) */
.hero-glow {
    position: absolute;
    bottom: -200px;
    left: 0;
    right: 0;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    z-index: 1;
    border-radius: 0 0 40px 40px;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 3rem;
    color: var(--text-white);
}

.hero-word {
    display: block;
    font-family: var(--font-family);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.script-word {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.script-oval {
    font-family: var(--font-script);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 6rem);
    display: inline-block;
    border: 2px solid var(--text-white);
    border-radius: 50px;
    padding: 0.5rem 2rem;
    margin: 0 1rem;
}

.script-plus {
    font-size: 1.5rem;
    color: var(--text-white);
    margin: 0 0.5rem;
    font-weight: 300;
}

.hero-cta {
    padding: 1rem 3rem;
    background: var(--bg-black);
    color: var(--text-white);
    border: 2px solid var(--accent-yellow);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: inline-block;
}

.hero-cta:hover {
    background: var(--accent-yellow);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Contact Form Sidebar */
.hero-form {
    background: var(--yellow-form);
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    overflow: visible;
}

.form-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.form-close:hover {
    transform: rotate(45deg) scale(1.1);
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.sticker-image {
    position: absolute;
    top: -130px;
    right: -180px;
    width: min(449px, 70vw);
    height: auto;
    z-index: 20;
    transform: rotate(15deg);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    pointer-events: none;
}

.contact-form-inline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-inline input {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--yellow-form-dark);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark);
    font-family: var(--font-family);
}

.contact-form-inline input::placeholder {
    color: var(--text-dark);
    opacity: 0.7;
}

.contact-form-inline input:focus {
    outline: none;
    background: var(--text-white);
    border-color: var(--text-dark);
}

.form-submit {
    padding: 1rem;
    background: var(--yellow-form);
    border: 2px solid var(--yellow-form-dark);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    position: relative;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-submit:hover {
    background: var(--text-dark);
    color: var(--yellow-form);
    border-color: var(--text-dark);
}

/* Form Submit States */

.form-submit.loading {
    pointer-events: none;
    opacity: 0.7;
}

.form-submit.loading .submit-text,
.form-submit.success .submit-text,
.form-submit.loading .submit-success {
    display: none;
}

.form-submit.loading .submit-loading {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.form-submit.loading .submit-loading svg {
    animation: spin 1s linear infinite;
}

.form-submit.success {
    pointer-events: none;
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.form-submit.success .submit-success {
    display: inline-block !important;
    font-size: 1.5rem;
    font-weight: bold;
}

.submit-loading svg {
    width: 20px;
    height: 20px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   TRUSTED BY SECTION
   ============================================ */
.trusted-by {
    background: #111111;
    padding: 4rem 0;
}

.trusted-frame {
    position: relative;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Prevent ticker from creating horizontal scroll on mobile */
    overflow: hidden;
    contain: layout paint;
}

.trusted-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    padding: 0 1rem; /* Adicionar padding lateral */
    flex-wrap: wrap; /* Permitir wrap em telas muito pequenas */
}

.trusted-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    max-width: 120px;
    min-width: 60px; /* Garantir espaço mínimo */
}

.trusted-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.02em;
    padding: 0 0.5rem; /* Adicionar padding lateral no texto */
    flex-shrink: 0; /* Não permitir que o texto encolha */
}

.logos-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    max-width: none;
    animation: trustedTicker 25s linear infinite;
}

.logo-item {
    color: rgba(255, 255, 255, 0.5); /* Logos em tom de cinza claro */
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: default;
    white-space: nowrap;
}

@keyframes trustedTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-item:hover {
    color: var(--accent-yellow);
    transform: scale(1.05);
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro {
    padding: 3rem 0;
    text-align: center;
    background: #111111;
    position: relative;
}

.intro-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 2rem;
    max-width: 900px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.intro-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto 3rem;
    max-width: 700px;
    line-height: 1.6;
    font-weight: 400;
}

.intro-cta {
    padding: 1rem 2rem;
    background: var(--accent-yellow);
    color: var(--bg-black);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
}

/* ============================================
   GROWTH FRAMEWORK SECTION
   ============================================ */
.growth-framework {
    padding: 8rem 0;
    background: var(--bg-black);
    position: relative;
}

.framework-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

/* LEFT SIDE */
.framework-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.framework-title {
    font-size: clamp(2.5rem, 2vw, 3.5rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.framework-description {
    font-size: clamp(1rem, 1.0vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

.framework-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.framework-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.framework-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.framework-item-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.framework-item-number {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    min-width: 30px;
}

.framework-item-question {
    flex: 1;
    background: none;
    border: none;
    text-align: left;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    font-weight: 600;
    color: var(--text-white);
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.framework-item.active .framework-item-question {
    color: var(--accent-yellow);
}

.framework-item-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.framework-item.active .framework-item-toggle {
    border-color: var(--accent-yellow);
    background: rgba(255, 215, 0, 0.1);
}

.framework-item-toggle svg {
    color: var(--text-white);
    transition: transform 0.3s ease, color 0.3s ease;
}

.framework-item.active .framework-item-toggle svg {
    color: var(--accent-yellow);
    transform: rotate(180deg);
}

.framework-item-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding-left: 46px;
}

.framework-item.active .framework-item-answer {
    max-height: 200px;
    padding-top: 0.5rem;
}

.framework-item-answer p {
    font-size: clamp(0.95rem, 1.1vw, 1rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* RIGHT SIDE */
.framework-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.framework-chart-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--accent-yellow);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5),
                 0 0 40px rgba(255, 215, 0, 0.3);
    letter-spacing: -0.02em;
}

.framework-chart-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.framework-radar-chart {
    width: 100%;
    height: auto;
}

.radar-point {
    transition: all 0.3s ease;
    cursor: pointer;
}

.radar-point.active {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
    }
    50% {
        opacity: 0.8;
        filter: drop-shadow(0 0 12px rgba(255, 215, 0, 1));
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 8rem 0;
    background: var(--bg-black);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, 
        rgba(255, 215, 0, 0.08) 0%,
        rgba(255, 193, 7, 0.05) 40%,
        transparent 70%
    );
    z-index: 0;
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tagline {
    font-size: 0.85rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tagline-dot {
    font-size: 0.5rem;
    color: var(--text-white);
    opacity: 0.8;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 4rem;
    letter-spacing: 0.02em;
    color: var(--text-white);
    text-transform: uppercase;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 0;
}

.service-card {
    position: relative;
    width: 100%;
    padding: 2.5rem;
    padding-top: 4.5rem;
    background: rgb(23, 23, 23);
    border: 1px solid rgb(255, 217, 0);
    border-radius: 0 15px 15px 15px;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: visible;
    margin-top: 50px; /* Aumentado para dar espaço à aba maior */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.folder-tab {
    display: block;
    position: absolute;
    top: -34.9px; /* Ajustado para a nova altura */
    left: -1px;
    width: 150px; /* Um pouco mais larga */
    height: 35px; /* Aumentado para a curva aparecer */
    background: rgb(23, 23, 23);
    border: 1px solid rgb(255, 217, 0);
    border-bottom: none;
    border-radius: 15px 15px 0 0; /* Curva bem mais acentuada */
    z-index: 1;
}

/* Esconde a linha de junção entre aba e card */
.folder-tab::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 04px;
    width: calc(100% - 4px);
    height: 6px;
    background: rgba(106, 90, 0, 0);
    z-index: 2;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.service-icon svg {
    width: 30px;
    height: 32px;
}

.service-content {
    position: relative;
    z-index: 3;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.service-content p {
    color: #ffffff;
    line-height: 1.5;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 300;
    opacity: 0.95;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: 8rem 0;
    background: var(--bg-black);
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.process-number {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: -2rem;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

.process-card-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    padding-top: 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.process-card:hover .process-card-content {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.process-icon {
    width: 80px;
    height: 80px;
    color: var(--accent-yellow);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon svg {
    width: 100%;
    height: 100%;
}

.process-card-title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.process-card-description {
    font-size: clamp(0.95rem, 1.2vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   PRICING PLANS SECTION
   ============================================ */
.pricing-plans {
    padding: 8rem 0;
    background: var(--bg-black);
    position: relative;
}

.pricing-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.pricing-title-accent {
    color: var(--accent-yellow);
    font-style: italic;
    font-weight: 700;
}

.pricing-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-plan-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-plan-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.pricing-plan-card.featured {
    background: rgba(255, 215, 0, 0.08);
    border: 2px solid var(--accent-yellow);
    transform: scale(1.05);
}

.pricing-plan-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-yellow);
    color: var(--bg-black);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.plan-badge svg {
    width: 14px;
    height: 14px;
    fill: var(--bg-black);
    stroke: var(--bg-black);
}

.plan-title {
    font-size: clamp(1.5rem, 2vw, 1.75rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.plan-description {
    font-size: clamp(0.95rem, 1.1vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.plan-features {
    margin-bottom: 2.5rem;
    flex: 1;
}

.features-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.check-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--accent-yellow);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-black);
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon svg {
    width: 12px;
    height: 12px;
}

.plan-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-yellow);
    color: var(--bg-black);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-button:hover {
    background: var(--accent-yellow-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.plan-button svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    padding: 8rem 0;
    background: var(--primary-color);
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--accent-yellow);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(60px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

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

/* ============================================
   TESTIMONIALS + CAROUSEL INDICATORS
   ============================================ */
.testimonials {
    padding: 8rem 0;
    background: var(--bg-gray);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 3rem;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
}

.testimonial-text {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--text-dark);
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-gray);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.carousel-btn:hover {
    transform: scale(1.05);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.indicator.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   WORKS SECTION
   ============================================ */
.works {
    padding: 8rem 0;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.work-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--secondary-color);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.work-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-yellow);
    border-color: var(--accent-yellow);
}

.work-image {
    width: 100%;
    height: 400px;
    background: var(--gradient);
    border-radius: 20px 20px 0 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.work-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 193, 7, 0.2) 100%);
}

.work-info {
    padding: 1.5rem;
}

.work-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.work-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 8rem 0;
    background: var(--bg-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 500px;
    background: var(--gradient);
    border-radius: 16px;
}

.about-text h3 {
    font-size: 1.25rem;
    margin: 1rem 0;
    color: var(--text-gray);
}

.timeline {
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item span {
    color: var(--text-gray);
}

/* ============================================
   AWARDS SECTION
   ============================================ */
.awards {
    padding: 8rem 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.award-card {
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    transition: all 0.3s;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.award-platform {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.award-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.award-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    padding: 8rem 0;
    background: var(--bg-gray);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 3rem;
    background: var(--secondary-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    transition: all 0.3s;
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pricing-delivery {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: left 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-yellow);
    color: var(--primary-color);
}

.pricing-btn:hover::before {
    left: 0;
}

.pricing-card.featured {
    border: 2px solid var(--accent-yellow);
    transform: scale(1.05);
    box-shadow: var(--shadow-yellow);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: var(--gradient);
    color: var(--primary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px var(--accent-yellow-glow);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: 8rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    background: var(--secondary-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
}

.faq-question:hover {
    color: var(--accent-yellow-dark);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
    color: var(--accent-yellow);
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 6rem 0 8rem;
    background: var(--bg-black);
}

.contact .container {
    max-width: 1000px;
}

.contact-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4rem;
    text-align: left;
}

.contact-form {
    width: 100%;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
    margin-bottom: 3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-white);
    text-transform: capitalize;
}

.form-group input,
.form-group select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 0;
    color: var(--text-white);
    font-size: 1rem;
    font-family: var(--font-family);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--accent-yellow);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    gap: 0.5rem;
}

.phone-country {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1rem;
    padding: 0.75rem 0.5rem 0.75rem 0;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 1.5rem;
}

.phone-input-wrapper input {
    flex: 1;
    border: none;
    border-bottom: none;
    padding: 0.75rem 0;
}

.phone-input-wrapper:focus-within {
    border-bottom-color: var(--accent-yellow);
}

.form-section {
    margin-bottom: 3rem;
}

.section-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.radio-group {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--accent-yellow);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--accent-yellow);
    border-radius: 50%;
}

.radio-label {
    font-size: 1rem;
    color: var(--text-white);
    user-select: none;
}

.service-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-btn {
    padding: 0.875rem 1.75rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.service-btn:hover {
    border-color: var(--accent-yellow);
    background: rgba(255, 215, 0, 0.1);
}

.service-btn.active {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--accent-yellow);
    color: var(--text-white);
}

.service-other-input {
    margin-top: 1rem;
}

.service-other-input input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-other-input input:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background: rgba(255, 215, 0, 0.05);
}

.service-other-input input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Contact Submit Button States */
.contact-submit {
    position: relative;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-submit.loading {
    pointer-events: none;
    opacity: 0.7;
}

.contact-submit.loading .submit-text,
.contact-submit.success .submit-text,
.contact-submit.loading .submit-success {
    display: none;
}

.contact-submit.loading .submit-loading {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.contact-submit.loading .submit-loading svg {
    animation: spin 1s linear infinite;
}

.contact-submit.success {
    pointer-events: none;
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.contact-submit.success .submit-success {
    display: inline-block !important;
    font-size: 1rem;
    font-weight: 600;
}

.contact-submit .submit-loading svg {
    width: 20px;
    height: 20px;
}

.form-disclaimer {
    margin-bottom: 3rem;
}

.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}

.checkbox-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 5px;
    height: 10px;
    border: solid var(--bg-black);
    border-width: 0 2px 2px 0;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-submit {
    padding: 1rem 3rem;
    background: var(--accent-yellow);
    color: var(--bg-black);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.contact-submit:hover {
    background: var(--accent-yellow-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer {
    position: relative;
    padding: 6rem 0 2rem;
    background: var(--bg-black);
    color: var(--text-white);
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(ellipse at center bottom, 
        transparent 0%,
        rgba(255, 217, 0, 0.037) 100%
    );
    z-index: 0;
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
}

/* Top Section: Contact Header */
.footer-contact-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tagline-asterisk {
    color: var(--accent-yellow);
    font-weight: 700;
}

.footer-hello {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    margin: 0;
}

.hello-accent {
    color: var(--accent-yellow);
    font-family: var(--font-script);
    font-style: italic;
}

.footer-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-label svg {
    color: var(--accent-yellow);
    width: 14px;
    height: 14px;
}

.contact-item a,
.contact-item span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-yellow);
}

.footer-contact-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-sticker-wrapper,
.footer-sticker-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 380px;
    height: 180px;
    position: relative;
}

.footer-sticker-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer-sticker-link:hover .footer-sticker-image,
.footer-sticker-wrapper:hover .footer-sticker-image {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
}

/* Middle Section: Company Info & Social */
.footer-company-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    margin-bottom: 5rem;
    padding-bottom: 4rem;
    align-items: start;
}

.footer-company-left {
    max-width: 600px;
}

.footer-company-name {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.footer-company-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: var(--bg-black);
    transform: translateY(-3px);
}

/* Bottom Section: Links & Services */
.footer-links-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-column-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-links-list a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--accent-yellow);
}

.footer-badge {
    background: var(--accent-yellow);
    color: var(--bg-black);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hours-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.hours-time {
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 600;
}

/* Footer Bar: Copyright & Legal */
.footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--accent-yellow);
}

/* ============================================
   MEDIA QUERIES
   ============================================ */

/* Tablet and below (1024px) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-form {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-contact-header {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .footer-company-section {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .process-number {
        margin-bottom: -1.5rem;
    }

    .pricing-plans-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 600px;
    }

    .pricing-plan-card.featured {
        transform: scale(1);
    }

    .pricing-plan-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .framework-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .framework-right {
        order: -1;
    }

    .framework-chart-container {
        max-width: 400px;
    }
}

/* Mobile and below (768px) */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-container {
        padding: 6rem 1rem;
    }

    .hero-form {
        padding: 2rem;
    }

    /* Decorative sticker can cause sideways pan on small screens */
    .sticker-image {
        display: none;
    }

    .form-title {
        font-size: 2rem;
    }

    .nav-badge {
        display: none;
    }

    .hero {
        padding: 4rem 0;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-hello {
        font-size: clamp(3rem, 8vw, 5rem);
    }

    .footer-sticker-wrapper,
    .footer-sticker-link {
        width: 300px;
        height: 180px;
    }

    .footer-sticker-image {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .footer-contact-header {
        gap: 2rem;
        padding-bottom: 3rem;
    }

    .footer-contact-center {
        text-align: center;
    }

    .footer-contact-right {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-hello {
        font-size: clamp(2.5rem, 8vw, 4rem);
        text-align: center;
    }

    .footer-tagline {
        text-align: center;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .trusted-frame {
        padding: 3rem 1.5rem;
        overflow: hidden;
        contain: layout paint;
    }

    .trusted-title-wrapper {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .trusted-line {
        max-width: 80px;
        min-width: 40px;
    }

    .trusted-title {
        font-size: 0.85rem;
        white-space: normal; /* Permitir quebra de linha no mobile se necessário */
        text-align: center;
        padding: 0 0.25rem;
    }

    /* Em telas muito pequenas, esconder linhas ou ajustar layout */
    @media (max-width: 480px) {
        .trusted-title-wrapper {
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .trusted-line {
            width: 100%;
            max-width: 100%;
            min-width: 100%;
        }
        
        .trusted-title {
            order: -1; /* Texto aparece antes das linhas */
            margin-bottom: 0.5rem;
        }
    }

    .growth-framework {
        padding: 4rem 0;
    }

    .framework-left {
        gap: 2rem;
    }

    .framework-item-header {
        gap: 1rem;
    }

    .framework-item-answer {
        padding-left: 38px;
    }

    .framework-chart-container {
        max-width: 300px;
    }

    .process {
        padding: 4rem 0;
    }

    .process-card-content {
        padding: 2.5rem 2rem;
        padding-top: 4rem;
    }

    .process-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.5rem;
    }

    .pricing-plans {
        padding: 4rem 0;
    }

    .pricing-plan-card {
        padding: 2.5rem 2rem;
    }

    .plan-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
    }

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

    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }

    .service-buttons {
        flex-direction: column;
    }

    .service-btn {
        width: 100%;
    }
}

/* Pricing Modal */
.pricing-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: var(--bg-black);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.pricing-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.modal-close:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-yellow);
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.modal-plan-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    text-align: center;
    display: none; /* Escondido por padrão, será mostrado quando houver plano selecionado */
}

.pricing-modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-modal-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-modal-form input[type="text"],
.pricing-modal-form input[type="email"],
.pricing-modal-form input[type="tel"] {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.pricing-modal-form input[type="text"]:focus,
.pricing-modal-form input[type="email"]:focus,
.pricing-modal-form input[type="tel"]:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background: rgba(255, 215, 0, 0.05);
}

.pricing-modal-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-choice-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.contact-choice-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    flex: 1;
}

.contact-choice-option:hover {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.05);
}

.contact-choice-option input[type="radio"] {
    display: none;
}

.contact-choice-option input[type="radio"]:checked + .radio-custom {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.contact-choice-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--bg-black);
    border-radius: 50%;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-choice-label {
    color: var(--text-white);
    font-weight: 500;
    font-size: 1rem;
}

.contact-choice-option input[type="radio"]:checked ~ .contact-choice-label {
    color: var(--accent-yellow);
}

.form-group.hidden {
    display: none;
}

.modal-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-yellow);
    color: var(--bg-black);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.modal-submit-btn:hover {
    color: #000000;
    background: var(--accent-yellow-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.modal-submit-btn:active {
    transform: translateY(0);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .contact-choice-group {
        flex-direction: column;
    }
}



/* Extra small screens polish */
@media (max-width: 420px) {
    .hero-container { padding-left: 1rem; padding-right: 1rem; }
    .pricing-card, .service-card, .process-card { padding-left: 1.25rem; padding-right: 1.25rem; }
    .nav-content { padding-left: 1rem; padding-right: 1rem; }
}
