/* Property Point - Complete Stylesheet */

:root {
    --primary: #1a2b4a;
    --primary-light: #2d4268;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --text: #1a2b4a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --shadow: 0 4px 20px -2px rgb(0 0 0 / 0.08);
    --glow: 0 0 20px rgba(249, 115, 22, 0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; max-width: 100%; width: 100%; }
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; line-height: 1.2; word-wrap: break-word; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
section, main, header, footer { max-width: 100%; overflow-x: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; width: 100%; box-sizing: border-box; }
.container-sm { max-width: 540px; }
.page-wrapper { width: 100%; max-width: 100%; overflow-x: hidden; position: relative; }
.accent { color: var(--accent); }
.section { padding: 4rem 0; }
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--primary); color: #fff; }
.bg-gradient { background: linear-gradient(135deg, rgba(249,115,22,0.05) 0%, #fff 50%, rgba(26,43,74,0.05) 100%); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.625rem 1.25rem; font: 600 0.875rem/1.5 'DM Sans', sans-serif; border-radius: 0.5rem; border: 2px solid transparent; cursor: pointer; transition: all 0.2s; max-width: 100%; text-align: center; }
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); box-shadow: var(--glow); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-outline-light:hover { background: #fff; color: var(--primary); }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-lg svg { width: 1.25rem; height: 1.25rem; }
.btn-block { width: 100%; }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.logo img { height: 2.5rem; }
.nav { display: none; gap: 2rem; }
.nav a { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav a:hover { color: var(--primary); }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-cta .btn-accent { display: none; }
.phone-link { display: none; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--primary); }
.phone-link:hover { color: var(--accent); }
.menu-toggle { display: flex; flex-direction: column; gap: 5px; width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; }
.menu-toggle span { width: 24px; height: 2px; background: var(--primary); transition: 0.2s; }

@media (min-width: 768px) {
    .header-inner { height: 5rem; }
    .logo img { height: 3rem; }
    .nav { display: flex; }
    .phone-link { display: flex; }
    .header-cta .btn-accent { display: inline-flex; }
    .menu-toggle { display: none; }
}

/* Hero */
.hero { padding: 7rem 0 4rem; background: linear-gradient(180deg, rgba(26,43,74,0.03) 0%, #fff 30%, #f8fafc 100%); }
.hero-content { max-width: 800px; margin: 0 auto; text-align: center; }
.badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2); border-radius: 999px; font-size: 0.875rem; font-weight: 500; color: var(--primary); margin-bottom: 1.5rem; }
.badge .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1.5rem; }
.hero p { font-size: 1.125rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 2rem; padding: 0 0.5rem; }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; padding: 0 0.5rem; }
.hero-buttons .btn { width: 100%; white-space: normal; line-height: 1.4; }
.hero-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; padding: 0 0.5rem; }
.stat { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem; background: #fff; border-radius: 0.75rem; box-shadow: var(--shadow); flex-shrink: 0; }
.stat-icon { width: 2rem; height: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon svg { width: 16px; height: 16px; }
.stat-icon.blue { background: rgba(26,43,74,0.1); color: var(--primary); }
.stat-icon.orange { background: rgba(249,115,22,0.1); color: var(--accent); }
.stat strong { font-size: 1rem; display: block; }
.stat span { font-size: 0.65rem; color: var(--text-muted); }

@media (min-width: 640px) {
    .stat { gap: 0.75rem; padding: 0.75rem 1rem; }
    .stat-icon { width: 2.5rem; height: 2.5rem; }
    .stat-icon svg { width: 20px; height: 20px; }
    .stat strong { font-size: 1.25rem; }
    .stat span { font-size: 0.75rem; }
}

@media (min-width: 640px) {
    .hero-buttons { flex-direction: row; justify-content: center; flex-wrap: wrap; }
    .hero-buttons .btn { width: auto; white-space: nowrap; }
    .hero { padding: 9rem 0 5rem; }
}

/* Section Header */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.section-header.light { color: #fff; }
.section-header.light p { color: rgba(255,255,255,0.7); }
.section-header .label { display: inline-block; font-size: 0.875rem; font-weight: 600; color: var(--accent); margin-bottom: 0.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); }

/* Cards Grid */
.cards-grid { display: grid; gap: 1.5rem; }
.card { background: #fff; border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; transition: all 0.3s; position: relative; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.card.featured { border-color: var(--accent); box-shadow: var(--glow); }
.featured-badge { position: absolute; top: 0; right: 0; background: var(--accent); color: #fff; font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 0 1rem 0 0.5rem; }
.card-icon { width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.card-icon.blue { background: rgba(26,43,74,0.1); color: var(--primary); }
.card-icon.orange { background: rgba(249,115,22,0.1); color: var(--accent); }
.card-label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.5rem; }
.card-label.blue { color: var(--primary); }
.card-label.orange { color: var(--accent); }
.card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.check-list { margin-bottom: 1rem; }
.check-list li { display: flex; gap: 0.75rem; font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.check-list li::before { content: '✓'; width: 1.25rem; height: 1.25rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; }
.check-list.blue li::before { background: rgba(26,43,74,0.1); color: var(--primary); }
.check-list.orange li::before { background: rgba(249,115,22,0.1); color: var(--accent); }
.ideal { font-size: 0.75rem; font-weight: 500; margin-bottom: 1rem; }
.ideal.orange { color: var(--accent); }

@media (min-width: 768px) {
    .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

/* What Makes Us Different */
.not-grid { display: grid; gap: 1rem; margin-bottom: 2rem; }
.not-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem; }
.x-icon { width: 2rem; height: 2rem; border-radius: 50%; background: rgba(239,68,68,0.2); color: #ef4444; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.x-icon svg { width: 16px; height: 16px; }
.not-item strong { display: block; font-size: 0.875rem; }
.not-item span { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

@media (min-width: 768px) {
    .not-item { gap: 1rem; padding: 1rem; }
    .x-icon { width: 2.5rem; height: 2.5rem; }
    .x-icon svg { width: 20px; height: 20px; }
    .not-item strong { font-size: 1rem; }
    .not-item span { font-size: 0.875rem; }
}
.solution-box { background: linear-gradient(135deg, rgba(249,115,22,0.2) 0%, rgba(249,115,22,0.05) 100%); border: 1px solid rgba(249,115,22,0.3); border-radius: 1rem; padding: 2rem 1rem; text-align: center; position: relative; margin-top: 1rem; }
.solution-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--accent); color: #fff; font-size: 0.75rem; font-weight: 600; padding: 0.5rem 1rem; border-radius: 999px; position: absolute; top: -1rem; left: 50%; transform: translateX(-50%); white-space: nowrap; }
.solution-box h3 { font-size: 1.25rem; margin: 1rem 0; }
.solution-box > p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 1.5rem; font-size: 0.875rem; }
.steps-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; align-items: center; }
.step { display: flex; align-items: center; gap: 0.375rem; }
.step .check { width: 1.5rem; height: 1.5rem; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.step .check svg { width: 12px; height: 12px; }
.step span { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.875rem; }
.dot-sep { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

@media (min-width: 768px) {
    .solution-box { padding: 2rem; }
    .solution-badge { font-size: 0.875rem; }
    .solution-box h3 { font-size: 1.5rem; }
    .solution-box > p { font-size: 1rem; }
    .step .check { width: 2rem; height: 2rem; }
    .step .check svg { width: 16px; height: 16px; }
    .step span { font-size: 1.125rem; }
}

@media (min-width: 768px) {
    .not-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Process */
.process-grid { display: grid; gap: 1.5rem; }
.process-card { background: #fff; border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; transition: all 0.3s; }
.process-card:hover { border-color: rgba(249,115,22,0.3); box-shadow: var(--shadow); }
.process-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.process-icon { width: 3.5rem; height: 3.5rem; background: rgba(249,115,22,0.1); color: var(--accent); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.process-card:hover .process-icon { background: var(--accent); color: #fff; transform: scale(1.1); }
.num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.5rem; font-weight: 700; color: rgba(0,0,0,0.1); }
.process-card:hover .num { color: rgba(249,115,22,0.3); }
.process-card h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.process-card p { font-size: 0.875rem; color: var(--text-muted); }

@media (min-width: 768px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .process-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Report Box */
.report-box { display: grid; gap: 0; background: #fff; border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow); }
.report-content { padding: 2rem; }
.report-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(249,115,22,0.1); color: var(--accent); font-size: 0.875rem; font-weight: 600; padding: 0.375rem 0.75rem; border-radius: 999px; margin-bottom: 1rem; }
.report-content h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.report-content > p { color: var(--text-muted); margin-bottom: 1.5rem; }
.report-list { margin-bottom: 2rem; }
.report-list li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; font-weight: 500; }
.report-list .icon { width: 2.5rem; height: 2.5rem; background: rgba(26,43,74,0.05); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; color: var(--primary); }
.report-visual { background: var(--primary); padding: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; position: relative; }
.report-icon-lg { width: 6rem; height: 6rem; background: rgba(249,115,22,0.2); border-radius: 1rem; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 1.5rem; }
.visual-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.visual-desc { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.income-box { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 0.75rem; padding: 1rem; }
.income-box .amount { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.125rem, 4vw, 1.5rem); font-weight: 700; color: var(--accent); }
.income-box .label { font-size: 0.75rem; color: rgba(255,255,255,0.7); }

@media (min-width: 768px) {
    .report-box { grid-template-columns: 1fr 1fr; }
    .report-content { padding: 2.5rem; }
}

/* Form */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.req { color: #ef4444; }
.opt { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }
.form-group input, .form-group select { width: 100%; height: 3rem; padding: 0 1rem; font: inherit; font-size: 0.875rem; border: 1px solid var(--border); border-radius: 0.5rem; transition: all 0.2s; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(249,115,22,0.1); }
.input-prefix { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 0.5rem; overflow: hidden; }
.input-prefix:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(249,115,22,0.1); }
.input-prefix span { padding: 0 1rem; color: var(--text-muted); background: var(--bg-light); height: 3rem; display: flex; align-items: center; border-right: 1px solid var(--border); }
.input-prefix input { border: none; height: 2.875rem; }
.input-prefix input:focus { box-shadow: none; }
.form-group select { appearance: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 1rem center; cursor: pointer; }
.radio-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.radio-btn { cursor: pointer; }
.radio-btn input { position: absolute; opacity: 0; }
.radio-btn span { display: flex; align-items: center; justify-content: center; padding: 0.75rem; font-size: 0.875rem; font-weight: 500; border: 2px solid var(--border); border-radius: 0.5rem; transition: all 0.2s; }
.radio-btn input:checked + span { border-color: var(--accent); background: rgba(249,115,22,0.1); color: var(--accent); }
.radio-btn:hover span { border-color: rgba(249,115,22,0.3); background: rgba(249,115,22,0.05); }
.form-note { display: flex; align-items: center; justify-content: center; gap: 0.375rem; font-size: 0.75rem; color: var(--text-muted); margin-top: 1rem; }

@media (min-width: 768px) {
    .form-card { padding: 2rem; }
}

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 4rem; }
.stat-card { text-align: center; padding: 1.5rem; background: var(--bg-light); border: 1px solid var(--border); border-radius: 1rem; }
.stat-card .stat-icon { width: 3rem; height: 3rem; background: rgba(249,115,22,0.1); color: var(--accent); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.stat-card strong { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem; }
.stat-card span { font-size: 0.875rem; color: var(--text-muted); }

@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Trust */
.trust-section { max-width: 800px; margin: 0 auto; }
.trust-grid { display: grid; gap: 1.5rem; margin-bottom: 3rem; }
.trust-card { padding: 1.5rem; background: #fff; border: 1px solid var(--border); border-radius: 1rem; transition: all 0.3s; }
.trust-card:hover { border-color: rgba(249,115,22,0.3); box-shadow: var(--shadow); }
.trust-icon { width: 3rem; height: 3rem; background: rgba(26,43,74,0.1); color: var(--primary); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.trust-card h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.trust-card p { font-size: 0.875rem; color: var(--text-muted); }
.platforms { text-align: center; }
.platforms > p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1rem; }
.platform-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.platform-badges span { padding: 0.5rem 1rem; background: var(--bg-light); border: 1px solid var(--border); border-radius: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--text-muted); }

@media (min-width: 768px) {
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

/* CTA Section */
.cta-section { background: var(--primary); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 25%; width: 24rem; height: 24rem; background: rgba(249,115,22,0.2); border-radius: 50%; filter: blur(100px); pointer-events: none; }
.cta-section::after { content: ''; position: absolute; bottom: 0; right: 25%; width: 24rem; height: 24rem; background: rgba(249,115,22,0.1); border-radius: 50%; filter: blur(100px); pointer-events: none; }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 1rem; word-wrap: break-word; }
.cta-section > .container > p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 2rem; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; padding: 0 0.5rem; }
.cta-buttons .btn { width: 100%; white-space: normal; line-height: 1.4; }
.cta-phone { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2); }
.cta-phone span { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
.cta-phone a { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.25rem, 4vw, 1.5rem); font-weight: 700; color: var(--accent); word-break: break-all; }
.cta-phone a:hover { text-decoration: underline; }

@media (min-width: 640px) {
    .cta-buttons { flex-direction: row; justify-content: center; flex-wrap: wrap; }
    .cta-buttons .btn { width: auto; white-space: nowrap; }
}

/* Footer */
.footer { background: #0f1a2e; color: #fff; padding: 3rem 0 0; }
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
.footer-logo { height: 2.5rem; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 1rem; }
.footer-tagline { color: var(--accent); font-weight: 600; font-size: 0.875rem; }
.footer h4 { font-size: 1rem; margin-bottom: 1rem; }
.footer-links ul li, .footer-contact ul li { margin-bottom: 0.75rem; }
.footer-links a, .footer-contact a { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.7); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-contact ul li:last-child { display: flex; align-items: flex-start; gap: 0.5rem; color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.footer-bottom { padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 1rem; text-align: center; }
.footer-bottom p { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; justify-content: center; gap: 1.5rem; }
.footer-legal a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-legal a:hover { color: var(--accent); }

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* Mobile Bottom Bar */
.mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-top: 1px solid var(--border); padding: 0.75rem; display: flex; gap: 0.75rem; }
.mobile-bar .btn { flex: 1; }

@media (min-width: 768px) {
    .mobile-bar { display: none; }
}

/* Utility for mobile bottom spacing */
body { padding-bottom: 4.5rem; }
@media (min-width: 768px) {
    body { padding-bottom: 0; }
}

/* Card Tags */
.card-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; padding-top: 0.5rem; }
.tag { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.375rem 0.625rem; border-radius: 999px; font-size: 0.7rem; font-weight: 500; white-space: nowrap; }
.tag.blue { background: rgba(26,43,74,0.1); color: var(--primary); }
.tag.orange { background: rgba(249,115,22,0.1); color: var(--accent); }
.tag svg { flex-shrink: 0; width: 12px; height: 12px; }

/* Partners Section */
.partners-section { background: var(--bg); }
.partners-block { margin-bottom: 3rem; }
.partners-block:last-child { margin-bottom: 0; }
.partners-header { text-align: center; margin-bottom: 1.5rem; }
.partners-label { display: inline-block; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.partners-label.orange { color: var(--accent); }
.partners-label.blue { color: var(--primary); }
.partners-header h3 { font-size: 1.25rem; }
.partners-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.partner-badge { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem; background: var(--bg-light); border: 1px solid var(--border); border-radius: 0.75rem; font-weight: 500; font-size: 0.8rem; transition: all 0.3s; }
.partner-badge:hover { border-color: rgba(249,115,22,0.3); background: rgba(249,115,22,0.05); }
.partner-badge svg { color: var(--accent); flex-shrink: 0; width: 18px; height: 18px; }
.partner-badge.blue:hover { border-color: rgba(26,43,74,0.3); background: rgba(26,43,74,0.05); }
.partner-badge.blue svg { color: var(--primary); }

@media (min-width: 768px) {
    .partners-grid { gap: 0.75rem; }
    .partner-badge { padding: 0.75rem 1rem; font-size: 0.875rem; }
    .partner-badge svg { width: 20px; height: 20px; }
}