/* ========================================
   PrimeCard — Design System & Styles
   ======================================== */

/* CSS Variables */
:root {
    --teal: #0bd513;
    --teal-light: #39D2C0;
    --primary: #00968A;
    --primary-dark: #4F46E5;
    --primary-light: #818CF8;
    --primary-50: #EEF2FF;
    --primary-100: #E0E7FF;
    --accent: #00968A;
    --white: #FFFFFF;
    --bg: #FAFAFA;
    --bg-white: #FFFFFF;
    --bg-dark: #0F0F1A;
    --bg-prime: #39D2C0;
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --transition: 0.2s ease;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul { list-style: none; }

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

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

/* Container dos precos */
.containerprice {
  display: grid;
  max-width: 80%;
  margin: 0 auto;
  padding: 0 24px;
  justify-content: center;
  align-items: start;
}

/* ========================================
   Typography
   ======================================== */
h1 {
    font-size: clamp(1.5rem, 3.0vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary-light);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 1px 3px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: var(--border-light);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #fff;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-white:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-sm { padding: 8px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; text-align: center; }

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(22, 22, 53, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--bg-white);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-links a:hover {
    color: var(--bg-prime);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

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

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    padding: 100px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 0px, transparent 0px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 0px, transparent 0px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 10px;
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    border-radius: 100px;
    font-size: 0.825rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: 20px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    border: 2px solid var(--bg);
    margin-left: -8px;
}

.avatar:first-child { margin-left: 0; }

.hero-social-proof p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-social-proof strong {
    color: var(--text-primary);
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    background: #fff;
    border-radius: 36px;
    border: 6px solid #1a1a2e;
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.05);
    position: relative;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: #1a1a2e;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.phone-screen {
    padding: 0 16px 24px;
}

.card-preview {
    text-align: center;
    padding-top: 0;
}

.card-header-bg {
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    margin: 0 -16px;
    border-radius: 0 0 20px 20px;
}

.card-avatar-wrapper {
    margin-top: -28px;
    position: relative;
    z-index: 2;
}

.card-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto;
    border: 3px solid #fff;
    box-shadow: var(--shadow-md);
}

.card-name {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 10px;
    color: var(--text-primary);
}

.card-role {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
    margin-top: 2px;
}

.card-company {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 1px;
}

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

.card-info {
    text-align: left;
}

.card-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    color: var(--text-secondary);
    padding: 5px 0;
}

.card-social {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--primary);
}

.card-save-btn {
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.phone-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
    z-index: -1;
}

/* ========================================
   Logos Section
   ======================================== */
.logos-section {
    padding: 48px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.logos-title {
    text-align: center;
    font-size: 0.825rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 24px;
}

.logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
    letter-spacing: -0.01em;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 30px;
}

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--primary-50);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-top: 12px;
    line-height: 1.7;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: 50px 0;
}

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

.feature-card {
    padding: 32px;
    background: var(--bg-prime);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-prime);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works {
    padding: 50px 0;
    background: var(--bg-white);
}

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

.step-card {
    position: relative;
    padding: 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bg-prime);
    line-height: 1;
    margin-bottom: 16px;
}

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

.step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-visual {
    margin-top: 24px;
}

.step-mockup {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
}

.mockup-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    font-size: 0.8rem;
}

.mockup-label {
    color: var(--text-muted);
    font-weight: 500;
}

.mockup-value {
    color: var(--text-primary);
    font-weight: 500;
}

.mockup-progress {
    height: 6px;
    background: var(--border-light);
    border-radius: 100px;
    margin-top: 12px;
    overflow: hidden;
}

.mockup-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 100px;
    transition: width 1s ease;
}

/* Share Mockup */
.share-mockup {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.share-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.share-icon.qr {
    background: var(--primary-50);
    color: var(--primary);
}

.share-icon.nfc {
    background: #FEF3C7;
    color: #D97706;
}

.share-icon.link {
    background: #D1FAE5;
    color: #059669;
}

.share-option span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Analytics Mockup */
.analytics-mockup {
    text-align: center;
}

.mini-stat {
    display: inline-flex;
    flex-direction: column;
    padding: 8px 20px;
}

.mini-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.mini-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    height: 60px;
    margin-top: 12px;
}

.chart-bar {
    width: 20px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 4px 4px 0 0;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.chart-bar:hover {
    opacity: 1;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    padding: 50px 0;
}

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

.testimonial-card {
    padding: 32px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #FBBF24;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

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

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
    padding-top: 50px;
    padding-bottom: 80px;
    /*background: var(--bg-white);*/
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
}

.toggle-label.active {
    color: var(--text-primary);
}

.toggle-switch {
    width: 48px;
    height: 26px;
    background: var(--border);
    border-radius: 100px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background var(--transition);
}

.toggle-switch.active {
    background: var(--primary);
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform var(--transition);
    box-shadow: var(--shadow-sm);
}

.toggle-switch.active .toggle-knob {
    transform: translateX(22px);
}

.save-badge {
    display: inline-block;
    padding: 2px 8px;
    background: #D1FAE5;
    color: #059669;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: start;    /* vertical: topo */
    justify-items: center; /* horizontal: centro */
}

.pricing-card {
    padding: 36px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.12);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--bg-prime);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.pricing-description {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

.pricing-price {
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    margin-bottom: 12px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-features li svg {
    flex-shrink: 0;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    padding: 50px 0;
    background: var(--bg-white);
}

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

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    font-family: inherit;
    gap: 16px;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-secondary);
    font-size: 0.925rem;
    line-height: 1.7;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 40px 0 100px;
}

.cta-card {
    position: relative;
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, #7C3AED 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: #fff;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    max-width: 600px;
    margin: 0 auto;
}

.cta-content > p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-top: 12px;
}

.cta-actions {
    margin-top: 32px;
}

.cta-note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 60px 0 40px;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
}

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

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--bg-white);
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    padding: 4px 0;
    font-size: 0.875rem;
    color: var(--bg-white);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--bg-prime);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    font-size: 0.825rem;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: var(--text-muted);
    transition: color var(--transition);
}

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

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 800px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-subtitle {
        margin: 20px auto 0;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-social-proof {
        justify-content: center;
    }

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

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

    .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

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

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 16px 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active a {
        padding: 12px 16px;
    }

    h1 {
        font-size: 2.25rem;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .features-grid,
    .steps-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card:last-child {
        max-width: 100%;
    }

    .containerprice {
        max-width: 100%;
        padding: 0 16px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-card {
        padding: 48px 24px;
    }

    .logos-grid {
        gap: 24px;
    }

    .phone-frame {
        width: 240px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-outline {
        justify-content: center;
    }
}

/* ========================================
   Privacy Policy Page
   ======================================== */
.privacy-policy {
    padding: 120px 0 80px;
    min-height: 100vh;
    text-align: justify;
}

.privacy-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.privacy-header h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.privacy-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.privacy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.privacy-section ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.privacy-section ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.privacy-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.privacy-table thead {
    background: var(--primary);
}

.privacy-table th {
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
}

.privacy-table td {
    padding: 16px 20px;
    vertical-align: top;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    line-height: 1.7;
}

.privacy-table tbody tr:last-child td {
    border-bottom: none;
}

.privacy-table tbody tr:nth-child(even) {
    background: var(--border-light);
}

.privacy-table td ul {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
}

.privacy-table td ul li {
    margin-bottom: 4px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.privacy-contact address {
    font-style: normal;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 12px;
    padding: 20px 24px;
    background: var(--border-light);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
}

.privacy-section a {
    color: var(--primary);
    font-weight: 500;
    transition: opacity var(--transition);
}

.privacy-section a:hover {
    opacity: 0.8;
}

.privacy-date {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.privacy-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 20px;
    margin-bottom: 8px;
}
/* ---- Store badges ---- */
.store-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-dark);
  border: 1px solid var(--bg-dark);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 0.78rem;
  color: var(--bg-dark);
  transition: border-color var(--transition), color var(--transition);
}
.store-badge:hover { border-color: var(--teal); color: rgba(255,255,255,.7); }
.store-badge svg { color: rgba(255,255,255,.5);
}

.btn-submit {
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 24px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.btn-submit:hover { background: var(--teal-light); }
.btn-submit:active { transform: scale(.98); }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; }
