/* ============================================
   VENDENDO COM TRAFEGO PAGO — Google Ads Site
   Design System & Complete Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
    --bg-color: #050507;
    --card-bg: #101014;
    --card-bg-hover: #18181f;
    --primary-color: #007bff;
    --accent-color: #28a745;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, #007bff 0%, #00c6ff 100%);
    --gradient-text: linear-gradient(90deg, #ffffff 0%, #007bff 50%, #28a745 100%);
    --gold: #FFD700;
    --google-blue: #4285F4;
    --google-red: #EA4335;
    --google-yellow: #FBBC05;
    --google-green: #34A853;
    --transition: all 0.3s ease;
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

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

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

input, textarea, select {
    font-family: 'Inter', sans-serif;
    outline: none;
}

/* --- Utility --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-text {
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
}

.hero h1 .gold-text {
    background: linear-gradient(90deg, #FFD700 0%, #FFF8DC 15%, #FFD700 30%, #FFA500 50%, #FFD700 70%, #FFF8DC 85%, #FFD700 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gold-shimmer 3s ease-in-out infinite;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
    animation: btn-glow-pulse 2.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.5);
}

.btn-outline {
    background: rgba(0, 123, 255, 0.08);
    color: var(--white);
    border: 2px solid rgba(0, 123, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.1);
}

.btn-outline:hover {
    background: rgba(0, 123, 255, 0.15);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.2);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.05rem;
    letter-spacing: 1px;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease, box-shadow 0.4s ease;
}

.header.scrolled {
    background: rgba(5, 5, 7, 0.8);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 0 1px 30px rgba(0, 123, 255, 0.05);
    padding: 10px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.header-nav a:hover {
    color: var(--white);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0;
    transition: color 0.3s;
}

.nav-dropdown .dropdown-toggle:hover {
    color: var(--white);
}

.nav-dropdown .dropdown-toggle svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -16px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.dropdown-menu a:hover {
    background: var(--glass);
    color: var(--white);
}

.header-cta .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 7, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

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

.mobile-menu .btn {
    margin-top: 16px;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0, 123, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(40, 167, 69, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* Grid overlay — Living Grid Pulse */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 123, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 123, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    animation: grid-shift 20s linear infinite;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--google-blue);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero h1 .gold-text {
    display: inline;
}

.hero p.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 620px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat .value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.hero-stat .label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Glow effect */
.hero-glow {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* --- AI Differentials --- */
.ai-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(0, 123, 255, 0.03) 50%, var(--bg-color) 100%);
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ai-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ai-card:hover {
    background: var(--card-bg-hover);
    transform: translateY(-4px);
    border-color: rgba(0, 123, 255, 0.2);
}

.ai-card:hover::before {
    opacity: 1;
}

.ai-card-icon {
    width: 48px;
    height: 48px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.ai-card-icon svg {
    width: 24px;
    height: 24px;
}

.ai-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.ai-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background: var(--card-bg-hover);
    transform: translateY(-4px);
    border-color: rgba(0, 123, 255, 0.2);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.service-card-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex: 1;
}

.service-card .card-link {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.service-card:hover .card-link {
    gap: 10px;
}

/* Bottom row 2 cards centered */
.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
    /* will be centered via JS or flex fallback */
}

/* --- Methodology --- */
.methodology-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(40, 167, 69, 0.03) 50%, var(--bg-color) 100%);
}

.methodology-steps {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.methodology-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    opacity: 0.3;
}

.method-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.method-step:last-child {
    margin-bottom: 0;
}

.method-step-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 1;
}

.method-step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.method-step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Plans --- */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.plan-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 123, 255, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.plan-card.featured {
    border-color: var(--primary-color);
    border-width: 2px;
    box-shadow: 0 0 40px rgba(0, 123, 255, 0.15), 0 0 80px rgba(0, 123, 255, 0.05);
    background: linear-gradient(180deg, rgba(0, 123, 255, 0.06) 0%, var(--card-bg) 100%);
    padding-top: 48px;
}

.plan-card.featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 50px rgba(0, 123, 255, 0.25), 0 0 100px rgba(0, 123, 255, 0.08);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plan-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.plan-price {
    margin-bottom: 24px;
}

.plan-price .currency {
    font-size: 1rem;
    color: var(--text-muted);
    vertical-align: super;
}

.plan-price .amount {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
}

.plan-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.plan-features {
    text-align: left;
    margin-bottom: 32px;
    flex: 1;
}

.plan-features li {
    padding: 12px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.plan-features li svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    color: var(--accent-color);
    margin-top: 2px;
}

.plan-card .btn {
    width: 100%;
}

.plans-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--gold);
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-author .info .name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

.testimonial-author .info .role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- FAQ --- */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--card-bg);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary-color);
}

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

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* --- Contact --- */
.contact-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(0, 123, 255, 0.03) 50%, var(--bg-color) 100%);
}

.contact-form {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15), 0 0 20px rgba(0, 123, 255, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    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 1.5L6 6.5L11 1.5' stroke='%23a0a0a0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--card-bg);
    color: var(--white);
}

.contact-form .btn {
    align-self: center;
    min-width: 240px;
}

/* --- Footer --- */
footer,
.footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-col > p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 6px;
}

.footer-brand img {
    height: 36px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-col .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-col .contact-item svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 3px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-wa 2s ease-in-out infinite;
}

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

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* --- Service Subpage Hero --- */
.subpage-hero {
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(0, 123, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .separator {
    color: var(--text-muted);
}

.breadcrumb .current {
    color: var(--white);
}

.subpage-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.subpage-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.ai-grid .fade-in:nth-child(1), .services-grid .fade-in:nth-child(1) { transition-delay: 0s; }
.ai-grid .fade-in:nth-child(2), .services-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.ai-grid .fade-in:nth-child(3), .services-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.ai-grid .fade-in:nth-child(4), .services-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }
.ai-grid .fade-in:nth-child(5), .services-grid .fade-in:nth-child(5) { transition-delay: 0.4s; }
.ai-grid .fade-in:nth-child(6), .services-grid .fade-in:nth-child(6) { transition-delay: 0.5s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes growBar {
    from { width: 0; }
    to { width: var(--bar-width, 100%); }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

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

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

    .plans-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid,
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .header-nav,
    .header-cta {
        display: none;
    }

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

    .mobile-menu {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p.hero-sub {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat .value {
        font-size: 1.1rem;
    }

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

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

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .plan-card.featured {
        order: -1;
    }

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

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

    .footer-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .subpage-hero h1 {
        font-size: 2rem;
    }

    .methodology-steps::before {
        left: 24px;
    }

    .method-step {
        gap: 20px;
    }

    .method-step-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .btn-lg {
        padding: 16px 32px;
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .plan-price .amount {
        font-size: 2.5rem;
    }
}

/* === WOW EFFECTS === */

/* Gold Shimmer */
@keyframes gold-shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* Living Grid Pulse */
@keyframes grid-shift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 60px 60px, 60px 60px; }
}

/* Button Glow Pulse */
@keyframes btn-glow-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3); }
    50% { box-shadow: 0 4px 40px rgba(0, 123, 255, 0.6), 0 0 60px rgba(0, 123, 255, 0.15); }
}

/* Card Shine Sweep on Hover */
.ai-card, .service-card, .plan-card { position: relative; overflow: hidden; }
.service-card::before, .plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 40%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.03) 60%, transparent 100%);
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 1;
}
.service-card:hover::before, .plan-card:hover::before {
    animation: shine-sweep 0.8s ease-out forwards;
}
@keyframes shine-sweep {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Nav Sliding Underline */
.header-nav > a { position: relative; }
.header-nav > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.header-nav > a:hover::after { width: 100%; }

/* Featured Plan Aura */
.plan-card.featured {
    animation: featured-aura 3s ease-in-out infinite;
}
@keyframes featured-aura {
    0%, 100% { box-shadow: 0 0 40px rgba(0, 123, 255, 0.15), 0 0 80px rgba(0, 123, 255, 0.05); }
    50% { box-shadow: 0 0 60px rgba(0, 123, 255, 0.25), 0 0 120px rgba(0, 123, 255, 0.1); }
}

/* WhatsApp Ring Ping */
.whatsapp-float { position: relative; }
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: wa-ring 2s ease-out infinite;
    pointer-events: none;
}
@keyframes wa-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Hero Badge Shimmer */
.hero-badge { position: relative; overflow: hidden; }
.hero-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
    animation: badge-shimmer 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes badge-shimmer {
    0%, 100% { left: -150%; }
    50% { left: 150%; }
}

/* FAQ Active Glow */
.faq-item.active {
    border-color: rgba(0, 123, 255, 0.3);
    box-shadow: -4px 0 0 0 var(--primary-color), 0 4px 20px rgba(0, 123, 255, 0.05);
}

/* Testimonial Floating Quote */
.testimonial-card { position: relative; overflow: hidden; }
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    font-family: 'Outfit', serif;
    color: rgba(0, 123, 255, 0.06);
    line-height: 1;
    pointer-events: none;
    animation: quote-float 6s ease-in-out infinite;
}
@keyframes quote-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Focus Visible */
:focus-visible { outline: 2px solid var(--primary-color); outline-offset: 2px; }
.btn:focus-visible { box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.4); outline: none; }

/* Footer Logo & Partner Badge */
.footer-logo { max-height: 36px; width: auto; margin-bottom: 16px; }
.partner-badge-footer {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 12px;
}

/* Button Ripple Effect */
@keyframes ripple-effect { to { transform: scale(4); opacity: 0; } }

/* === SUBPAGE SHARED STYLES === */

/* Grid overlay for subpage heroes */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 123, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 123, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 70%);
}

/* WhatsApp pulse animation */
.pulse-animation-strong {
    animation: wa-ring 2s ease-in-out infinite;
}

.subpage-hero {
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.subpage-hero .hero-bg-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.subpage-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}

.subpage-hero .subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.subpage-hero .btn {
    margin-top: 8px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-color, #007bff);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .current {
    color: var(--primary-color, #007bff);
}

.section-subpage {
    padding: 80px 0;
}

.section-subpage h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.section-subpage h2 .gradient-text-gold {
    background: linear-gradient(135deg, #f5a623, #f7d070, #e8a020);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subpage p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.explanation-content {
    max-width: 800px;
    margin: 0 auto;
}

.explanation-content p {
    margin-bottom: 20px;
}

.ai-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.ai-card {
    background: #101014;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.3s, transform 0.3s;
}

.ai-card:hover {
    border-color: rgba(0, 123, 255, 0.3);
    transform: translateY(-4px);
}

.ai-card .card-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.ai-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.ai-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.audience-item {
    text-align: center;
    padding: 32px 20px;
    background: #101014;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s;
}

.audience-item:hover {
    border-color: rgba(40, 167, 69, 0.3);
}

.audience-item .icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.audience-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.audience-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.deliverables-section {
    background: #101014;
    border-radius: 20px;
    padding: 48px 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 700px;
    margin: 40px auto 0;
}

.deliverables-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deliverables-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.deliverables-list li:last-child {
    border-bottom: none;
}

.deliverables-list .check {
    color: #28a745;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-section-subpage {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 123, 255, 0.04) 50%, transparent 100%);
    border-top: 1px solid var(--border);
}

.cta-section-subpage h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-section-subpage p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

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

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

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

/* Subpage-specific extras */
.banner-sizes {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.size-badge {
    background: rgba(245, 166, 35, 0.08);
    border: 1px solid rgba(245, 166, 35, 0.15);
    border-radius: 8px;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.channels-strip {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0 0;
}

.channel-badge {
    background: rgba(0, 123, 255, 0.08);
    border: 1px solid rgba(0, 123, 255, 0.15);
    border-radius: 100px;
    padding: 10px 22px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .subpage-hero {
        padding: 140px 0 60px;
    }

    .deliverables-section {
        padding: 32px 24px;
    }

    .ai-cards-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* === HERO BUTTONS === */

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* === BLOG PAGE STYLES === */

.blog-hero {
    padding: 140px 0 60px;
    text-align: center;
}

.blog-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 12px;
}

.blog-hero .gradient-text-blue {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero p {
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 0 80px;
}

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

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card .card-category {
    display: inline-block;
    background: rgba(0, 123, 255, 0.12);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    width: fit-content;
}

.blog-card h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--white);
}

.blog-card .card-excerpt {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.blog-card .card-link:hover {
    gap: 10px;
}

/* === PLATAFORMA PAGE STYLES === */

.platform-hero {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.platform-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.platform-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.platform-hero .subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.platform-hero .subtitle strong {
    color: var(--white);
}

.gradient-text-blue {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.platform-section:nth-child(even) {
    background: rgba(16, 16, 20, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.pipeline-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.pipeline-step {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
    min-width: 150px;
    transition: var(--transition);
}

.pipeline-step:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.pipeline-step .step-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.pipeline-step .step-title {
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
}

.pipeline-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .pipeline-arrow {
        transform: rotate(90deg);
    }
}

.pipeline-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.pipeline-detail-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
}

.pipeline-detail-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.pipeline-detail-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.dashboard-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.dash-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    transition: var(--transition);
}

.dash-feature:hover {
    border-color: var(--primary-color);
}

.dash-feature .feat-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.dash-feature .feat-text h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.dash-feature .feat-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.screenshot-placeholder {
    background: var(--card-bg);
    border: 2px dashed var(--border);
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 30px;
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.report-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.report-card:hover {
    transform: translateY(-4px);
    border-color: #28a745;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.12);
}

.report-card .r-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
    display: block;
}

.report-card h4 {
    color: var(--white);
    margin-bottom: 8px;
}

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

.portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.portal-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.portal-card:hover {
    border-color: #FFD700;
    transform: translateY(-3px);
}

.portal-card .p-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
}

.portal-card h4 {
    color: var(--white);
    margin-bottom: 6px;
    font-size: 1rem;
}

.portal-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.sec-badge {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.sec-badge:hover {
    border-color: #28a745;
}

.sec-badge .badge-icon {
    font-size: 1.8rem;
}

.sec-badge .badge-text {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.platform-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(0, 123, 255, 0.05));
}

.platform-cta h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 16px;
}

.platform-cta p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 30px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}
