/* =========================
   Ceritell — Homepage Institucional
   Design System derivado do HUB
   Paleta: #4e73df (primary), #1a1a2e (dark), #1cc88a (accent)
========================= */

/* ─── Reset & Variables ─── */
:root {
    --ct-primary: #4e73df;
    --ct-primary-dark: #2e59d9;
    --ct-primary-light: #6f8ff8;
    --ct-accent: #1cc88a;
    --ct-accent-dark: #17a673;
    --ct-dark: #1a1a2e;
    --ct-darker: #0f0f1a;
    --ct-surface: #16162b;
    --ct-text: #d1d3e2;
    --ct-text-muted: #8a8caa;
    --ct-border: rgba(255,255,255,0.06);
    --ct-warning: #f6c23e;
    --ct-danger: #e74a3b;
    --ct-info: #36b9cc;
    --ct-radius: 16px;
    --ct-radius-sm: 10px;
    --ct-radius-lg: 24px;
    --ct-shadow: 0 4px 24px rgba(0,0,0,0.3);
    --ct-shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --ct-font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --ct-font-mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    --ct-glow: 0 0 40px rgba(78,115,223,0.15);
    --ct-max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--ct-font);
    background: var(--ct-darker);
    color: var(--ct-text);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { color: var(--ct-primary-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: #fff; }

/* ─── Container ─── */
.ct-container {
    max-width: var(--ct-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Navbar ─── */
.ct-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(15,15,26,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--ct-border);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: background 0.3s;
}

.ct-navbar.scrolled {
    background: rgba(15,15,26,0.95);
    box-shadow: var(--ct-shadow-sm);
}

.ct-navbar .ct-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.ct-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    color: #fff;
}

.ct-brand-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--ct-primary), var(--ct-primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
}

.ct-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ct-nav-links a {
    color: var(--ct-text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}

.ct-nav-links a:hover { color: #fff; }

.ct-nav-cta {
    background: var(--ct-primary);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: var(--ct-radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.2s;
}

.ct-nav-cta:hover {
    background: var(--ct-primary-dark);
    transform: translateY(-1px);
    color: #fff !important;
}

.ct-menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--ct-border);
    border-radius: 8px;
    color: #fff;
    font-size: 1.2rem;
    padding: 8px 12px;
    cursor: pointer;
}

/* ─── Section Base ─── */
.ct-section {
    padding: 100px 0;
    position: relative;
}

.ct-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(78,115,223,0.1);
    border: 1px solid rgba(78,115,223,0.2);
    color: var(--ct-primary-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.ct-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.ct-section-subtitle {
    font-size: 1.1rem;
    color: var(--ct-text-muted);
    max-width: 640px;
    line-height: 1.7;
}

/* ─── Hero ─── */
.ct-hero {
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
}

.ct-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(78,115,223,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.ct-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(28,200,138,0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.ct-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(78,115,223,0.1);
    border: 1px solid rgba(78,115,223,0.2);
    color: var(--ct-primary-light);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

.ct-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 24px;
    max-width: 720px;
}

.ct-hero h1 .ct-gradient {
    background: linear-gradient(135deg, var(--ct-primary-light), var(--ct-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ct-hero-subtitle {
    font-size: 1.15rem;
    color: var(--ct-text-muted);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.ct-hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--ct-border);
}

.ct-hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.ct-hero-stat-label {
    font-size: 0.82rem;
    color: var(--ct-text-muted);
    margin-top: 2px;
}

/* ─── Buttons ─── */
.ct-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--ct-radius-sm);
    font-weight: 700;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.ct-btn-primary {
    background: var(--ct-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(78,115,223,0.3);
}

.ct-btn-primary:hover {
    background: var(--ct-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(78,115,223,0.4);
    color: #fff;
}

.ct-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}

.ct-btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.ct-btn-accent {
    background: var(--ct-accent);
    color: var(--ct-darker);
    box-shadow: 0 4px 16px rgba(28,200,138,0.3);
}

.ct-btn-accent:hover {
    background: var(--ct-accent-dark);
    transform: translateY(-2px);
    color: var(--ct-darker);
}

.ct-btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ─── Cards ─── */
.ct-card {
    background: var(--ct-surface);
    border: 1px solid var(--ct-border);
    border-radius: var(--ct-radius);
    padding: 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.ct-card:hover {
    border-color: rgba(78,115,223,0.2);
    transform: translateY(-4px);
    box-shadow: var(--ct-shadow);
}

.ct-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 20px;
}

.ct-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.ct-card-text {
    font-size: 0.9rem;
    color: var(--ct-text-muted);
    line-height: 1.6;
}

/* ─── Grid Layouts ─── */
.ct-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.ct-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ─── Infra Section ─── */
.ct-infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ct-infra-card {
    background: var(--ct-surface);
    border: 1px solid var(--ct-border);
    border-radius: var(--ct-radius);
    padding: 36px 32px;
    text-align: center;
    transition: all 0.3s;
}

.ct-infra-card:hover {
    border-color: rgba(78,115,223,0.2);
    transform: translateY(-4px);
    box-shadow: var(--ct-shadow);
}

.ct-infra-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin: 0 auto 24px;
}

.ct-infra-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.ct-infra-text {
    font-size: 0.9rem;
    color: var(--ct-text-muted);
    line-height: 1.6;
}

.ct-infra-tag {
    display: inline-block;
    background: rgba(28,200,138,0.1);
    color: var(--ct-accent);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 16px;
}

/* ─── Solutions Section ─── */
.ct-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.ct-solution-card {
    background: var(--ct-surface);
    border: 1px solid var(--ct-border);
    border-radius: var(--ct-radius);
    padding: 28px 24px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.ct-solution-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--ct-radius) var(--ct-radius) 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.ct-solution-card:hover { transform: translateY(-4px); box-shadow: var(--ct-shadow); }
.ct-solution-card:hover::after { opacity: 1; }

.ct-solution-card:nth-child(1)::after { background: #4e73df; }
.ct-solution-card:nth-child(2)::after { background: #f59e0b; }
.ct-solution-card:nth-child(3)::after { background: #1cc88a; }
.ct-solution-card:nth-child(4)::after { background: #25d366; }
.ct-solution-card:nth-child(5)::after { background: #e74c3c; }
.ct-solution-card:nth-child(6)::after { background: #ff6b35; }
.ct-solution-card:nth-child(7)::after { background: #8b5cf6; }
.ct-solution-card:nth-child(8)::after { background: #10b981; }

.ct-solution-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 16px;
}

.ct-solution-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.ct-solution-desc {
    font-size: 0.85rem;
    color: var(--ct-text-muted);
    line-height: 1.5;
}

/* ─── Platform / HUB Section ─── */
.ct-platform {
    background: var(--ct-dark);
    border-top: 1px solid var(--ct-border);
    border-bottom: 1px solid var(--ct-border);
}

.ct-platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 48px;
}

.ct-platform-features {
    display: grid;
    gap: 20px;
}

.ct-platform-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ct-platform-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    background: rgba(78,115,223,0.15);
}

.ct-platform-feature-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.ct-platform-feature-text {
    font-size: 0.85rem;
    color: var(--ct-text-muted);
    line-height: 1.5;
}

.ct-platform-visual {
    background: var(--ct-surface);
    border: 1px solid var(--ct-border);
    border-radius: var(--ct-radius-lg);
    padding: 40px;
    position: relative;
}

.ct-terminal {
    background: var(--ct-darker);
    border: 1px solid var(--ct-border);
    border-radius: var(--ct-radius-sm);
    overflow: hidden;
    font-family: var(--ct-font-mono);
    font-size: 0.82rem;
}

.ct-terminal-header {
    background: rgba(255,255,255,0.03);
    padding: 10px 16px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid var(--ct-border);
}

.ct-terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ct-terminal-body {
    padding: 20px;
    line-height: 1.8;
    color: var(--ct-text-muted);
}

.ct-terminal-body .ct-cmd { color: var(--ct-accent); }
.ct-terminal-body .ct-val { color: var(--ct-primary-light); }
.ct-terminal-body .ct-str { color: var(--ct-warning); }

/* ─── White-label Section ─── */
.ct-whitelabel {
    position: relative;
}

.ct-whitelabel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 48px;
}

.ct-wl-features {
    display: grid;
    gap: 24px;
}

.ct-wl-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ct-wl-icon {
    font-size: 1.5rem;
    color: var(--ct-accent);
    min-width: 32px;
    padding-top: 2px;
}

.ct-wl-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.ct-wl-text {
    font-size: 0.88rem;
    color: var(--ct-text-muted);
    line-height: 1.5;
}

/* ─── Founder Section — Mensagem do Fundador ─── */
.ct-founder {
    background: var(--ct-dark);
    border-top: 1px solid var(--ct-border);
    border-bottom: 1px solid var(--ct-border);
}

.ct-founder-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
}

.ct-founder-header .ct-section-label {
    margin-bottom: 20px;
}

.ct-founder-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.ct-founder-header .ct-founder-subtitle {
    font-size: 1.05rem;
    color: var(--ct-text-muted);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

.ct-founder-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: start;
    margin-top: 0;
}

/* Photo column */
.ct-founder-photo-col {
    position: sticky;
    top: 100px;
}

.ct-founder-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--ct-surface), var(--ct-dark));
    border-radius: var(--ct-radius);
    overflow: hidden;
    border: 1px solid var(--ct-border);
}

.ct-founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}

.ct-founder-photo:hover img {
    filter: grayscale(0%);
}

.ct-founder-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(78,115,223,0.2);
    background: linear-gradient(145deg, var(--ct-surface), var(--ct-dark));
}

.ct-founder-nameplate {
    margin-top: 20px;
    text-align: center;
}

.ct-founder-nameplate h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}

.ct-founder-nameplate span {
    font-size: 0.8rem;
    color: var(--ct-primary-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Content column */
.ct-founder-content {
    padding-top: 4px;
}

.ct-founder-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.ct-founder-content p {
    font-size: 1rem;
    color: var(--ct-text-muted);
    line-height: 1.85;
    margin-bottom: 20px;
}

.ct-founder-content p strong {
    color: var(--ct-text);
    font-weight: 600;
}

.ct-founder-divider {
    width: 48px;
    height: 2px;
    background: var(--ct-primary);
    margin: 32px 0;
    opacity: 0.6;
}

.ct-founder-quote {
    background: rgba(78,115,223,0.04);
    border-left: 3px solid var(--ct-primary);
    padding: 28px 32px;
    border-radius: 0 var(--ct-radius-sm) var(--ct-radius-sm) 0;
    margin: 36px 0;
}

.ct-founder-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--ct-text);
    line-height: 1.75;
    margin: 0;
    font-weight: 400;
}

.ct-founder-quote cite {
    display: block;
    margin-top: 16px;
    font-size: 0.82rem;
    font-style: normal;
    color: var(--ct-text-muted);
    letter-spacing: 0.03em;
}

.ct-founder-closing {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--ct-border);
}

.ct-founder-closing p {
    font-size: 1rem;
    color: var(--ct-text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

.ct-founder-closing p:last-child {
    margin-bottom: 0;
}

.ct-founder-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.ct-founder-pillar {
    padding: 20px 24px;
    background: var(--ct-surface);
    border-radius: var(--ct-radius-sm);
    border: 1px solid var(--ct-border);
}

.ct-founder-pillar h5 {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ct-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 8px;
}

.ct-founder-pillar p {
    font-size: 0.88rem;
    color: var(--ct-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ─── Product Page ─── */
.ct-product-hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.ct-product-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ct-product-hero .ct-container {
    position: relative;
    z-index: 1;
}

.ct-product-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    backdrop-filter: blur(4px);
}

.ct-product-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 16px;
    max-width: 700px;
}

.ct-product-hero p {
    max-width: 640px;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin: 0 0 32px;
}

.ct-btn-white {
    background: #fff;
    color: var(--ct-darker);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.ct-btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    color: var(--ct-darker);
}

.ct-btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}

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

.ct-product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ct-product-feature-card {
    background: var(--ct-surface);
    border: 1px solid var(--ct-border);
    border-radius: var(--ct-radius);
    padding: 32px 28px;
    transition: all 0.3s;
}

.ct-product-feature-card:hover {
    border-color: rgba(78,115,223,0.2);
    transform: translateY(-4px);
    box-shadow: var(--ct-shadow);
}

.ct-product-feature-card .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 16px;
}

.ct-product-feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.ct-product-feature-card p {
    font-size: 0.88rem;
    color: var(--ct-text-muted);
    line-height: 1.6;
    margin: 0;
}

.ct-product-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 48px;
    list-style: none;
    padding: 0;
    margin: 48px auto 0;
    max-width: 800px;
}

.ct-product-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--ct-text);
    padding: 8px 0;
}

.ct-product-bullets li i {
    color: var(--ct-accent);
    font-size: 1rem;
    min-width: 20px;
}

.ct-product-pricing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ct-product-plan {
    background: var(--ct-surface);
    border: 1px solid var(--ct-border);
    border-radius: var(--ct-radius);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.ct-product-plan:hover {
    transform: translateY(-4px);
    box-shadow: var(--ct-shadow);
}

.ct-product-plan.featured {
    border-color: var(--ct-primary);
    box-shadow: 0 0 30px rgba(78,115,223,0.15);
}

.ct-product-plan.featured::before {
    content: 'Recomendado';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ct-primary);
    color: #fff;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.ct-product-plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.ct-product-plan-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    margin: 16px 0;
    line-height: 1;
}

.ct-product-plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ct-text-muted);
}

.ct-product-plan-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
    flex: 1;
}

.ct-product-plan-features li {
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--ct-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--ct-border);
}

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

.ct-product-plan-features li i {
    font-size: 0.8rem;
    min-width: 16px;
}

.ct-product-cta {
    text-align: center;
    padding: 100px 0;
}

.ct-product-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.ct-product-cta p {
    font-size: 1.05rem;
    color: var(--ct-text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* Solution card as link */
a.ct-solution-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.ct-solution-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ct-primary-light);
    margin-top: 12px;
    opacity: 0;
    transform: translateY(4px);
    transition: all 0.3s;
}

.ct-solution-card:hover .ct-solution-link {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Pricing Section ─── */
.ct-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
    align-items: stretch;
}

.ct-pricing-card {
    background: var(--ct-surface);
    border: 1px solid var(--ct-border);
    border-radius: var(--ct-radius);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    position: relative;
}

.ct-pricing-card:hover {
    border-color: rgba(78,115,223,0.2);
    transform: translateY(-4px);
    box-shadow: var(--ct-shadow);
}

.ct-pricing-popular {
    border-color: var(--ct-primary);
    box-shadow: 0 0 40px rgba(78,115,223,0.15);
}

.ct-pricing-popular:hover {
    border-color: var(--ct-primary-light);
    box-shadow: 0 0 50px rgba(78,115,223,0.25);
}

.ct-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--ct-primary), var(--ct-primary-light));
    color: #fff;
    padding: 4px 20px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.ct-pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.ct-pricing-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}

.ct-pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.ct-pricing-currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ct-text-muted);
}

.ct-pricing-amount {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.ct-pricing-period {
    font-size: 0.9rem;
    color: var(--ct-text-muted);
    font-weight: 500;
}

.ct-pricing-trial {
    font-size: 0.78rem;
    color: var(--ct-accent);
    font-weight: 600;
    margin-top: 4px;
}

.ct-pricing-desc {
    font-size: 0.85rem;
    color: var(--ct-text-muted);
    margin-top: 8px;
    line-height: 1.4;
}

.ct-pricing-features {
    flex: 1;
    margin-bottom: 24px;
}

.ct-pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--ct-text);
}

.ct-pricing-feature i {
    min-width: 18px;
    font-size: 0.85rem;
    text-align: center;
}

.ct-pricing-divider {
    height: 1px;
    background: var(--ct-border);
    margin: 12px 0;
}

.ct-pricing-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ct-text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ct-pricing-addon {
    color: var(--ct-accent) !important;
}

.ct-pricing-bonus-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(28,200,138,0.15);
    color: var(--ct-accent);
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: auto;
}

.ct-pricing-footer {
    text-align: center;
}

.ct-btn-block {
    width: 100%;
    justify-content: center;
}

/* ─── CTA Final ─── */
.ct-cta-final {
    text-align: center;
    padding: 120px 0;
}

.ct-cta-final h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.ct-cta-final p {
    font-size: 1.1rem;
    color: var(--ct-text-muted);
    max-width: 500px;
    margin: 0 auto 40px;
}

.ct-cta-final .ct-hero-actions {
    justify-content: center;
}

/* ─── Footer ─── */
.ct-footer {
    background: var(--ct-darker);
    border-top: 1px solid var(--ct-border);
    padding: 48px 0 32px;
}

.ct-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.ct-footer-brand {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.ct-footer-desc {
    font-size: 0.85rem;
    color: var(--ct-text-muted);
    line-height: 1.6;
    max-width: 300px;
}

.ct-footer h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

.ct-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ct-footer-links li { margin-bottom: 10px; }

.ct-footer-links a {
    font-size: 0.88rem;
    color: var(--ct-text-muted);
    transition: color 0.2s;
}

.ct-footer-links a:hover { color: #fff; }

.ct-footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--ct-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--ct-text-muted);
}

/* ─── Testimonials ─── */
.ct-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.ct-testimonial-card {
    background: var(--ct-surface);
    border: 1px solid var(--ct-border);
    border-radius: var(--ct-radius);
    padding: 32px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ct-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.ct-testimonial-stars {
    color: #f6c23e;
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

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

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

.ct-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ct-primary), var(--ct-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ct-testimonial-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

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

/* ─── Animations ─── */
.ct-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .ct-infra-grid { grid-template-columns: 1fr; }
    .ct-platform-grid { grid-template-columns: 1fr; }
    .ct-whitelabel-content { grid-template-columns: 1fr; }
    .ct-founder-grid { grid-template-columns: 1fr; }
    .ct-founder-photo-col { position: static; max-width: 240px; margin: 0 auto; }
    .ct-founder-pillars { grid-template-columns: 1fr; }
    .ct-footer-grid { grid-template-columns: 1fr 1fr; }
    .ct-product-features { grid-template-columns: repeat(2, 1fr); }
    .ct-product-pricing { grid-template-columns: repeat(2, 1fr); }
    .ct-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ct-nav-links { display: none; }
    .ct-menu-toggle { display: block; }

    .ct-nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--ct-darker);
        border-bottom: 1px solid var(--ct-border);
        padding: 24px;
        gap: 16px;
    }

    .ct-hero { padding: 120px 0 80px; }
    .ct-hero h1 { font-size: 2rem; }
    .ct-hero-stats { flex-direction: column; gap: 24px; }
    .ct-section { padding: 64px 0; }
    .ct-section-title { font-size: 1.8rem; }
    .ct-solutions-grid { grid-template-columns: 1fr 1fr; }
    .ct-grid-3 { grid-template-columns: 1fr; }
    .ct-infra-grid { grid-template-columns: 1fr; }
    .ct-cta-final h2 { font-size: 2rem; }
    .ct-footer-grid { grid-template-columns: 1fr; }
    .ct-product-hero { padding: 120px 0 60px; }
    .ct-product-hero h1 { font-size: 2rem; }
    .ct-product-features { grid-template-columns: 1fr; }
    .ct-product-pricing { grid-template-columns: 1fr; }
    .ct-pricing-grid { grid-template-columns: 1fr; }
    .ct-product-bullets { grid-template-columns: 1fr; }
    .ct-product-cta h2 { font-size: 1.8rem; }
    .ct-product-cta { padding: 64px 0; }
}

@media (max-width: 480px) {
    .ct-container { padding: 0 16px; }
    .ct-solutions-grid { grid-template-columns: 1fr; }
    .ct-hero-actions { flex-direction: column; }
    .ct-hero-actions .ct-btn { width: 100%; justify-content: center; }
    .ct-testimonials-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   Vendas Page — Pricing, FAQ, Steps, Trust
═══════════════════════════════════════ */

/* ─── Hero Inline Badges ─── */
.ct-badges-inline {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.ct-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(28,200,138,0.08);
    border: 1px solid rgba(28,200,138,0.2);
    color: var(--ct-accent);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
}

.ct-badge-inline i {
    font-size: 0.9rem;
}

/* ─── Product Free Badge ─── */
.ct-product-free-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--ct-accent);
    color: var(--ct-darker);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ct-solution-price {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ct-accent);
    margin-top: 12px;
}

/* ─── Steps Section ─── */
.ct-steps-section {
    background: var(--ct-dark);
    border-top: 1px solid var(--ct-border);
    border-bottom: 1px solid var(--ct-border);
}

.ct-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
}

.ct-step {
    text-align: center;
    padding: 32px 28px;
    max-width: 280px;
    position: relative;
}

.ct-step-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(78,115,223,0.08);
    line-height: 1;
}

.ct-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--ct-primary), var(--ct-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 auto 20px;
}

.ct-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.ct-step p {
    font-size: 0.88rem;
    color: var(--ct-text-muted);
    line-height: 1.6;
    margin: 0;
}

.ct-step-arrow {
    display: flex;
    align-items: center;
    padding-top: 56px;
    color: rgba(78,115,223,0.3);
    font-size: 1.2rem;
}

/* ─── Pricing Tabs ─── */
.ct-pricing-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 32px;
    padding: 6px;
    background: var(--ct-surface);
    border-radius: var(--ct-radius);
    border: 1px solid var(--ct-border);
}

.ct-pricing-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: var(--ct-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--ct-font);
    border-radius: var(--ct-radius-sm);
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

.ct-pricing-tab:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}

.ct-pricing-tab.active {
    background: var(--ct-primary);
    color: #fff;
    box-shadow: 0 2px 12px rgba(78,115,223,0.3);
}

.ct-pricing-tab.active i {
    color: #fff !important;
}

.ct-pricing-tab i {
    font-size: 1rem;
}

/* ─── Pricing Panels ─── */
.ct-pricing-panel {
    display: none;
}

.ct-pricing-panel.active {
    display: block;
}

.ct-pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* ─── Pricing Card (vendas) ─── */
.ct-pricing-card--featured {
    border-color: var(--ct-primary) !important;
    box-shadow: 0 0 40px rgba(78,115,223,0.15);
    transform: scale(1.03);
}

.ct-pricing-card--featured:hover {
    border-color: var(--ct-primary-light) !important;
    box-shadow: 0 0 50px rgba(78,115,223,0.25);
    transform: scale(1.03) translateY(-4px);
}

/* ─── Pricing Bonus Add-ons ─── */
.ct-pricing-bonus {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed rgba(28,200,138,0.3);
    margin-bottom: 20px;
}

.ct-pricing-bonus-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ct-accent);
    margin-bottom: 10px;
}

.ct-pricing-bonus-header i {
    font-size: 0.85rem;
}

.ct-pricing-bonus-value {
    margin-left: auto;
    background: rgba(28,200,138,0.12);
    color: var(--ct-accent);
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.ct-pricing-bonus .ct-pricing-feature {
    padding: 5px 0;
    font-size: 0.82rem;
}

.ct-pricing-bonus .ct-pricing-feature small {
    color: var(--ct-text-muted);
    font-size: 0.72rem;
    text-decoration: line-through;
}

/* ─── Compare Table ─── */
.ct-compare-section {
    background: var(--ct-dark);
    border-top: 1px solid var(--ct-border);
    border-bottom: 1px solid var(--ct-border);
}

.ct-compare-table-wrap {
    margin-top: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.ct-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.ct-compare-table thead th {
    background: var(--ct-surface);
    color: var(--ct-text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid var(--ct-border);
}

.ct-compare-table thead th:first-child {
    text-align: left;
    border-radius: var(--ct-radius-sm) 0 0 0;
}

.ct-compare-table thead th:last-child {
    border-radius: 0 var(--ct-radius-sm) 0 0;
}

.ct-compare-table tbody td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--ct-border);
    font-size: 0.9rem;
}

.ct-compare-table tbody td:first-child {
    text-align: left;
}

.ct-compare-table tbody tr:hover {
    background: rgba(78,115,223,0.03);
}

.ct-compare-product {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #fff;
}

.ct-compare-product i {
    font-size: 1rem;
}

.ct-compare-free {
    background: rgba(28,200,138,0.1);
    color: var(--ct-accent);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
}

.ct-compare-price {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

.ct-compare-period {
    color: var(--ct-text-muted);
    font-size: 0.8rem;
}

/* ─── Trust Grid ─── */
.ct-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ct-trust-card {
    background: var(--ct-surface);
    border: 1px solid var(--ct-border);
    border-radius: var(--ct-radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.ct-trust-card:hover {
    border-color: rgba(78,115,223,0.2);
    transform: translateY(-4px);
    box-shadow: var(--ct-shadow);
}

.ct-trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(78,115,223,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--ct-primary-light);
    margin: 0 auto 16px;
}

.ct-trust-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    text-transform: none;
    letter-spacing: 0;
}

.ct-trust-card p {
    font-size: 0.85rem;
    color: var(--ct-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ─── FAQ Accordion ─── */
.ct-faq {
    max-width: 760px;
    margin: 40px auto 0;
}

.ct-faq-item {
    border: 1px solid var(--ct-border);
    border-radius: var(--ct-radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--ct-surface);
    transition: border-color 0.3s;
}

.ct-faq-item.open {
    border-color: rgba(78,115,223,0.3);
}

.ct-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--ct-font);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

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

.ct-faq-question i {
    font-size: 0.75rem;
    color: var(--ct-text-muted);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.ct-faq-item.open .ct-faq-question i {
    transform: rotate(180deg);
    color: var(--ct-primary-light);
}

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

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

.ct-faq-answer p {
    padding: 0 24px 18px;
    font-size: 0.9rem;
    color: var(--ct-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ─── Vendas Page Responsive ─── */
@media (max-width: 1024px) {
    .ct-pricing-cards { grid-template-columns: repeat(3, 1fr); }
    .ct-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ct-badges-inline { flex-direction: column; gap: 10px; }
    .ct-steps { flex-direction: column; align-items: center; }
    .ct-step-arrow { transform: rotate(90deg); padding: 0; margin: -8px 0; }
    .ct-pricing-tabs { gap: 4px; }
    .ct-pricing-tab { padding: 8px 14px; font-size: 0.78rem; }
    .ct-pricing-tab span { display: none; }
    .ct-pricing-tab i { font-size: 1.1rem; }
    .ct-pricing-cards { grid-template-columns: 1fr; }
    .ct-pricing-card--featured { transform: none; }
    .ct-pricing-card--featured:hover { transform: translateY(-4px); }
    .ct-trust-grid { grid-template-columns: 1fr; }
    .ct-compare-table { min-width: 500px; }
}

@media (max-width: 480px) {
    .ct-pricing-tabs { padding: 4px; }
    .ct-pricing-tab { padding: 8px 10px; }
}

/* ═══════════════════════════════════════
   Hover Animations & Visual Polish
   Added 02/03/2026
═══════════════════════════════════════ */

/* ─── 1. Card hover lift + glow (.ct-solution-card) ─── */
.ct-solution-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ct-solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(78,115,223,0.15);
}

/* ─── 2. Infrastructure card hover (.ct-infra-card) ─── */
.ct-infra-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ct-infra-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ─── 3. White-label feature hover (.ct-wl-feature) ─── */
.ct-wl-feature {
    padding: 12px 16px;
    border-radius: var(--ct-radius-sm);
    transition: background 0.3s ease;
}

.ct-wl-feature:hover {
    background: rgba(255,255,255,0.03);
}

/* ─── 4. Platform feature hover (.ct-platform-feature) ─── */
.ct-platform-feature {
    padding: 12px 16px;
    border-radius: var(--ct-radius-sm);
    transition: background 0.3s ease;
}

.ct-platform-feature:hover {
    background: rgba(78,115,223,0.04);
}

/* ─── 5. Staggered fade-up delays ─── */
.ct-fade-up.visible {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ct-infra-grid .ct-fade-up:nth-child(2) { transition-delay: 0.1s; }
.ct-infra-grid .ct-fade-up:nth-child(3) { transition-delay: 0.2s; }

.ct-solutions-grid .ct-solution-card:nth-child(2) { transition-delay: 0.05s; }
.ct-solutions-grid .ct-solution-card:nth-child(3) { transition-delay: 0.1s; }
.ct-solutions-grid .ct-solution-card:nth-child(4) { transition-delay: 0.15s; }
.ct-solutions-grid .ct-solution-card:nth-child(5) { transition-delay: 0.2s; }
.ct-solutions-grid .ct-solution-card:nth-child(6) { transition-delay: 0.25s; }
.ct-solutions-grid .ct-solution-card:nth-child(7) { transition-delay: 0.3s; }
.ct-solutions-grid .ct-solution-card:nth-child(8) { transition-delay: 0.35s; }

/* ─── 6. Hero gradient text shimmer (.ct-gradient) ─── */
.ct-gradient {
    background-size: 200% auto;
    animation: gradient-shimmer 4s ease infinite;
}

@keyframes gradient-shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* ─── 7. CTA button pulse (.ct-cta-final .ct-btn-primary) ─── */
.ct-cta-final .ct-btn-primary {
    animation: cta-glow-pulse 2.5s ease-in-out infinite;
}

@keyframes cta-glow-pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(78,115,223,0.3); }
    50% { box-shadow: 0 4px 32px rgba(78,115,223,0.5), 0 0 60px rgba(78,115,223,0.15); }
}

.ct-cta-final .ct-btn-primary:hover {
    animation: none;
    box-shadow: 0 6px 24px rgba(78,115,223,0.4);
}

/* ─── 8. Navbar link underline animation (.ct-nav-links a) ─── */
.ct-nav-links a {
    position: relative;
}

.ct-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ct-primary-light);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.ct-nav-links a:hover::after {
    width: 100%;
}

/* Exclude the CTA button from underline */
.ct-nav-links a.ct-nav-cta::after {
    display: none;
}

/* ─── 9. Footer link hover — smooth color transition ─── */
.ct-footer-links a {
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.ct-footer-links a:hover {
    color: var(--ct-primary-light);
    padding-left: 4px;
}

/* ─── 10. Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
    .ct-gradient {
        animation: none;
    }

    .ct-cta-final .ct-btn-primary {
        animation: none;
    }

    .ct-solution-card,
    .ct-infra-card,
    .ct-wl-feature,
    .ct-platform-feature,
    .ct-card,
    .ct-trust-card,
    .ct-pricing-card,
    .ct-product-feature-card,
    .ct-product-plan {
        transition: none;
    }

    .ct-solution-card:hover,
    .ct-infra-card:hover,
    .ct-card:hover,
    .ct-trust-card:hover,
    .ct-pricing-card:hover,
    .ct-product-feature-card:hover,
    .ct-product-plan:hover {
        transform: none;
    }

    .ct-fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .ct-nav-links a::after {
        transition: none;
    }

    .ct-footer-links a {
        transition: none;
    }

    .ct-infra-grid .ct-fade-up:nth-child(2),
    .ct-infra-grid .ct-fade-up:nth-child(3),
    .ct-solutions-grid .ct-solution-card:nth-child(2),
    .ct-solutions-grid .ct-solution-card:nth-child(3),
    .ct-solutions-grid .ct-solution-card:nth-child(4),
    .ct-solutions-grid .ct-solution-card:nth-child(5),
    .ct-solutions-grid .ct-solution-card:nth-child(6),
    .ct-solutions-grid .ct-solution-card:nth-child(7),
    .ct-solutions-grid .ct-solution-card:nth-child(8) {
        transition-delay: 0s;
    }
}

/* ─── Logo Bar ─── */
.ct-logo-bar {
    padding: 64px 0;
    text-align: center;
    background: var(--ct-surface);
    border-top: 1px solid var(--ct-border);
    border-bottom: 1px solid var(--ct-border);
}

.ct-logo-bar__title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ct-text-muted);
    margin-bottom: 32px;
}

.ct-logo-bar__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: opacity 0.3s, filter 0.3s;
}

.ct-logo-bar__logos:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.ct-logo-bar__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ct-text-muted);
    letter-spacing: 0.5px;
}

.ct-logo-bar__img {
    height: 32px;
    max-width: 120px;
    object-fit: contain;
}

/* ─── Video Demo ─── */
.ct-video-demo {
    padding: 80px 0;
    text-align: center;
}

.ct-video-demo__frame {
    max-width: 900px;
    margin: 40px auto 0;
    border-radius: var(--ct-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    aspect-ratio: 16 / 9;
}

.ct-video-demo__iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .ct-logo-bar__logos { gap: 24px; }
    .ct-logo-bar__img { height: 24px; }
    .ct-video-demo__frame { margin: 24px auto 0; border-radius: var(--ct-radius); }
}
