/* ============================================
   IRONGATE AI SOLUTIONS — Premium Resume Service
   Light Executive Theme
   Color Palette:
   - Background:    #FFFFFF, #F5F7FB, #EDF1F7
   - Executive Navy:#0B1D3A, #122B52, #1A3A6B
   - Accent Blue:   #2563EB, #3B82F6, #60A5FA
   - Titanium:      #6B7A8D, #8896A7, #A8B4C2, #C2CCD8
   - Text Dark:     #0F1C32, #1E2D45, #3A4A60
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-white: #FFFFFF;
    --bg-light: #F5F7FB;
    --bg-subtle: #EDF1F7;
    --navy-deep: #0B1D3A;
    --navy: #122B52;
    --navy-light: #1A3A6B;
    --navy-lighter: #2A4F8A;
    --accent: #2563EB;
    --accent-light: #3B82F6;
    --accent-lighter: #60A5FA;
    --accent-glow: rgba(37, 99, 235, 0.10);
    --accent-border: rgba(37, 99, 235, 0.20);
    --titanium-dark: #6B7A8D;
    --titanium: #8896A7;
    --titanium-light: #A8B4C2;
    --titanium-lighter: #C2CCD8;
    --titanium-pale: #D8DEE8;
    --text-heading: #0F1C32;
    --text-body: #1E2D45;
    --text-secondary: #3A4A60;
    --text-muted: #6B7A8D;
    --text-faint: #8896A7;
    --border-light: #E2E8F0;
    --border-subtle: #D0D8E4;
    --white: #FFFFFF;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(11, 29, 58, 0.06);
    --shadow-md: 0 4px 20px rgba(11, 29, 58, 0.08);
    --shadow-lg: 0 8px 40px rgba(11, 29, 58, 0.10);
    --shadow-accent: 0 4px 30px rgba(37, 99, 235, 0.25);
    --shadow-card: 0 1px 3px rgba(11, 29, 58, 0.04), 0 4px 16px rgba(11, 29, 58, 0.06);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-white);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Announcement Bar ---- */
.announcement-bar {
    background: linear-gradient(90deg, #0B1D3A, #1A3A6B, #2563EB, #1A3A6B);
    background-size: 300% 100%;
    animation: shimmer 4s ease-in-out infinite;
    color: #FFFFFF;
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1001;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #60A5FA;
    border-radius: 50%;
    margin-right: 4px;
    animation: pulse 1.5s ease-in-out infinite;
    vertical-align: middle;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
    top: 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-heading);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--navy-deep);
}

.logo-sub {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
}

.btn-outline-nav {
    color: var(--text-secondary);
    font-size: 14px;
    padding: 8px 18px;
    border: 1px solid var(--border-light);
    background: transparent;
}

.btn-outline-nav:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-primary-nav {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #FFFFFF;
    font-size: 14px;
    padding: 8px 20px;
}

.btn-primary-nav:hover {
    box-shadow: var(--shadow-accent);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy-deep);
    border-radius: 2px;
    transition: 0.3s;
}

/* ---- Buttons ---- */
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #FFFFFF;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-sm);
}

.btn-primary:hover {
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
}

.btn-ghost {
    color: var(--text-secondary);
    padding: 14px 32px;
    font-size: 16px;
    border: 1px solid var(--border-light);
    background: transparent;
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline {
    color: var(--accent);
    padding: 14px 32px;
    font-size: 16px;
    border: 2px solid var(--accent);
    background: transparent;
}

.btn-outline:hover {
    background: var(--accent);
    color: #FFFFFF;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
    border-radius: var(--radius-md);
}

.btn-xl {
    padding: 18px 40px;
    font-size: 18px;
    border-radius: var(--radius-md);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    padding: 180px 0 60px;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 70%);
    top: -100px;
    right: -100px;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 180, 194, 0.12), transparent 70%);
    bottom: 0;
    left: -100px;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-glow);
    border: 1px solid var(--accent-border);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 14px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    color: var(--text-heading);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--accent-lighter));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-subtitle strong {
    color: var(--text-heading);
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
    border: 2px solid var(--bg-white);
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.hero-trust p {
    font-size: 14px;
    color: var(--text-muted);
}

.hero-trust strong {
    color: var(--text-heading);
}

/* Hero Visual - Resume Preview */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.resume-preview {
    position: relative;
    width: 340px;
    height: 440px;
}

.resume-card {
    position: absolute;
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
}

.resume-card-back {
    width: 300px;
    height: 400px;
    top: 20px;
    left: 40px;
    opacity: 0.5;
    transform: rotate(3deg);
    box-shadow: var(--shadow-sm);
}

.resume-card-main {
    width: 300px;
    height: 400px;
    top: 10px;
    left: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 20px 60px rgba(11, 29, 58, 0.12);
}

.resume-header-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resume-name-line {
    width: 60%;
    height: 14px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 4px;
}

.resume-title-line {
    width: 40%;
    height: 8px;
    background: var(--titanium-pale);
    border-radius: 4px;
}

.resume-score {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--accent-glow);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-sm);
}

.score-ring {
    position: relative;
    width: 50px;
    height: 50px;
}

.score-ring svg {
    width: 50px;
    height: 50px;
}

.score-number {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--accent);
}

.score-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

.resume-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.line {
    height: 6px;
    background: var(--bg-subtle);
    border-radius: 3px;
}

.line-full { width: 100%; }
.line-90 { width: 90%; }
.line-85 { width: 85%; }
.line-75 { width: 75%; }

.resume-badges {
    display: flex;
    gap: 8px;
}

.mini-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}

.mini-badge.pass {
    background: rgba(22, 163, 74, 0.1);
    color: #16A34A;
    border: 1px solid rgba(22, 163, 74, 0.25);
}

.floating-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
    white-space: nowrap;
}

.tag-icon {
    font-size: 16px;
}

.tag-1 {
    top: 0;
    right: -30px;
    color: var(--accent);
    animation-delay: 0s;
}

.tag-2 {
    bottom: 80px;
    left: -30px;
    color: #7C3AED;
    animation-delay: 1s;
}

.tag-3 {
    bottom: 20px;
    right: -20px;
    color: #16A34A;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Logos Bar */
.logos-bar {
    margin-top: 80px;
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
}

.logos-label {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-faint);
    margin-bottom: 28px;
    font-weight: 500;
}

.logos-track {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.logo-item {
    font-size: 18px;
    font-weight: 700;
    color: var(--titanium-light);
    letter-spacing: 1px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.logo-item:hover {
    opacity: 1;
    color: var(--titanium-dark);
}

/* ---- Stats Section ---- */
.stats-section {
    padding: 80px 0;
    background: var(--navy-deep);
    border-top: none;
    border-bottom: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--accent-lighter);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--accent-lighter);
    display: inline;
    margin-left: 2px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    font-weight: 500;
}

/* ---- Section Headers ---- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    background: var(--accent-glow);
    border: 1px solid var(--accent-border);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text-heading);
}

.section-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Problem Section ---- */
.problem-section {
    padding: 100px 0 60px;
    background: var(--bg-white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.problem-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-card);
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-border);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-heading);
}

.problem-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.solution-bridge {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.bridge-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.bridge-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.bridge-icon {
    font-size: 20px;
}

/* ---- Services Section ---- */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    transition: all 0.3s;
    box-shadow: var(--shadow-card);
}

.service-card:hover {
    border-color: var(--accent-border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--bg-white), rgba(37, 99, 235, 0.03));
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon-wrap {
    margin-bottom: 20px;
}

.service-icon {
    font-size: 40px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-heading);
}

.service-card > p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 12px;
}

.service-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: gap 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-link:hover {
    gap: 8px;
}

/* ---- Process Section ---- */
.process-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.process-grid {
    max-width: 800px;
    margin: 0 auto;
}

.process-card {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 28px;
    align-items: center;
    padding: 32px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-card);
}

.process-card:hover {
    border-color: var(--accent-border);
    box-shadow: var(--shadow-lg);
}

.process-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
}

.process-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-heading);
}

.process-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.process-visual {
    display: flex;
    justify-content: center;
}

.upload-mockup,
.ai-mockup,
.review-mockup,
.hired-mockup {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.upload-icon, .check-icon, .party-icon {
    font-size: 20px;
}

.upload-progress {
    width: 60px;
    height: 4px;
    background: var(--titanium-pale);
    border-radius: 2px;
    overflow: hidden;
}

.upload-bar {
    width: 70%;
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

.ai-pulse {
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.process-connector {
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

.connector-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent-border), transparent);
}

/* ---- Results Section ---- */
.results-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.result-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.result-before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.result-before .value {
    font-size: 28px;
    font-weight: 800;
    color: var(--titanium);
    display: block;
}

.result-after .value {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.result-after .value.highlight {
    color: #16A34A;
}

.result-before .label,
.result-after .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-faint);
    display: block;
    margin-bottom: 4px;
}

.result-arrow {
    font-size: 24px;
    color: var(--accent);
}

.result-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-heading);
}

.result-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- Pricing Section ---- */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-card);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--accent);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.04), var(--bg-white));
    transform: scale(1.05);
    box-shadow: var(--shadow-accent);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #FFFFFF;
    padding: 6px 24px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-heading);
}

.pricing-for {
    font-size: 14px;
    color: var(--text-faint);
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-old {
    font-size: 18px;
    color: var(--titanium-light);
    text-decoration: line-through;
}

.price-current {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--text-heading);
}

.popular .price-current {
    color: var(--accent);
}

.price-period {
    font-size: 14px;
    color: var(--text-faint);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--bg-subtle);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.disabled {
    color: var(--titanium-light);
}

.check {
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}

.x-mark {
    color: var(--titanium-light);
    font-size: 14px;
}

.guarantee-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--accent-glow);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    text-align: left;
}

.guarantee-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.guarantee-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--accent);
}

.guarantee-text p {
    font-size: 15px;
    color: var(--text-secondary);
}

/* ---- Testimonials Section ---- */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-card);
}

.testimonial-card:hover {
    border-color: var(--accent-border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 14px;
    color: var(--text-heading);
}

.author-info span {
    font-size: 12px;
    color: var(--text-faint);
}

/* ---- Comparison Section ---- */
.comparison-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.comparison-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
}

.comparison-table th,
.comparison-table td {
    padding: 18px 24px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid var(--bg-subtle);
    color: var(--text-secondary);
}

.comparison-table th {
    background: var(--bg-light);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-heading);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-body);
}

.comparison-table .highlight-col {
    background: rgba(37, 99, 235, 0.04);
}

.comparison-table th.highlight-col {
    color: var(--accent);
    background: rgba(37, 99, 235, 0.08);
}

.comparison-table .yes {
    color: var(--accent);
    font-weight: 700;
}

.comparison-table .no {
    color: var(--titanium-light);
}

.comparison-table .partial {
    color: var(--text-muted);
}

/* ---- FAQ Section ---- */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--accent-border);
}

.faq-question {
    width: 100%;
    background: var(--bg-white);
    border: none;
    padding: 20px 24px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- CTA Section ---- */
.cta-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.cta-card {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-xl);
    padding: 64px;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.cta-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    color: #FFFFFF;
    outline: none;
    transition: border-color 0.3s;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
    border-color: var(--accent-light);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.upload-wrap {
    position: relative;
}

.upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
}

.upload-label:hover {
    border-color: var(--accent-light);
    color: var(--accent-lighter);
}

.upload-btn-icon {
    font-size: 18px;
}

.cta-form .btn {
    margin-top: 8px;
}

.cta-disclaimer {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 16px;
}

/* ---- Footer ---- */
.footer {
    padding: 80px 0 40px;
    background: var(--navy-deep);
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer .logo-name {
    color: #FFFFFF;
}

.footer .logo-sub {
    color: var(--accent-lighter);
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.footer-socials a:hover {
    background: var(--accent);
    color: #FFFFFF;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent-lighter);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-title { font-size: 44px; }
    .section-header h2 { font-size: 36px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .process-card { grid-template-columns: 60px 1fr; }
    .process-visual { display: none; }
}

@media (max-width: 768px) {
    .announcement-bar { font-size: 12px; padding: 8px 12px; }
    .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: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border-light);
    }

    .hero { padding: 140px 0 40px; min-height: auto; }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .hero-visual { display: none; }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .stat-number { font-size: 40px; }

    .problem-grid,
    .services-grid,
    .results-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }

    .section-header h2 { font-size: 30px; }
    .cta-card { padding: 40px 24px; }
    .cta-content h2 { font-size: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .process-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .process-number {
        font-size: 36px;
    }

    .comparison-table th, .comparison-table td {
        padding: 12px 14px;
        font-size: 12px;
    }

    .guarantee-bar {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .logos-track {
        gap: 24px;
    }
    .logo-item {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .hero-cta-group {
        flex-direction: column;
    }
    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ---- Animations ---- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
