/* ============================================
   TRIPINVEST RENT - Owners Page Styles v2
   COMPLETELY REDESIGNED - Fresh modern look
   No gradients, no old animations
   ============================================ */

/* ---------- Variables ---------- */
:root {
    --primary: #0d1f3c;
    --primary-light: #1a365d;
    --primary-lighter: #334e68;
    --accent: #f7ad0c;
    --accent-soft: #fef7e6;
    --accent-dark: #d4940a;
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-card: 0 4px 24px rgba(13, 31, 60, 0.06);
    --shadow-card-hover: 0 12px 40px rgba(13, 31, 60, 0.10);
    --shadow-hero: 0 8px 32px rgba(0, 0, 0, 0.12);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.75rem;
    --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-slow: 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- Keyframes - ALL NEW ---------- */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(60px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

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

@keyframes slideLeft {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-60px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes popIn {
    0%   { opacity: 0; transform: scale(0.7) rotate(-4deg); }
    60%  { transform: scale(1.05) rotate(1deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(247, 173, 12, 0.15); }
    50%      { border-color: rgba(247, 173, 12, 0.45); }
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.4); }
}

@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}

@keyframes pingSoft {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.03); opacity: 0.9; }
}

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

/* ---------- Scroll-reveal system ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--transition-slow),
                transform 0.7s var(--transition-slow);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s var(--transition-slow),
                transform 0.7s var(--transition-slow);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s var(--transition-slow),
                transform 0.7s var(--transition-slow);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-pop {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.6s var(--transition-slow),
                transform 0.6s var(--transition-slow);
}

.reveal-pop.visible {
    opacity: 1;
    transform: scale(1);
}

.r-delay-1  { transition-delay: 0.08s; }
.r-delay-2  { transition-delay: 0.16s; }
.r-delay-3  { transition-delay: 0.24s; }
.r-delay-4  { transition-delay: 0.32s; }
.r-delay-5  { transition-delay: 0.40s; }
.r-delay-6  { transition-delay: 0.48s; }
.r-delay-7  { transition-delay: 0.56s; }
.r-delay-8  { transition-delay: 0.64s; }

/* ---------- Section Header ---------- */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    background: var(--accent-soft);
    border: 1px solid rgba(247, 173, 12, 0.2);
    border-radius: 100px;
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 0.65rem;
}

.section-desc {
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.65;
    margin: 0 auto;
}

/* ---------- 1. HERO - completely new ---------- */
.hero-wrap {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    min-height: 620px;
    display: flex;
    align-items: center;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 20% 50%, #fff 0.5px, transparent 0.5px),
        radial-gradient(circle at 80% 30%, #fff 0.5px, transparent 0.5px),
        radial-gradient(circle at 50% 80%, #fff 0.5px, transparent 0.5px);
    background-size: 40px 40px;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    opacity: 0.08;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -150px;
    right: -100px;
}

.hero-glow-2 {
    width: 350px;
    height: 350px;
    background: #4a90d9;
    bottom: -100px;
    left: -80px;
}

/* Floating badges */
.hero-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 14px;
    box-shadow: var(--shadow-hero);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    z-index: 10;
    pointer-events: none;
    animation: pingSoft 3s ease-in-out infinite;
}

.hero-float-badge i {
    color: var(--accent);
    font-size: 0.9rem;
}

.hb-1 { top: 10%; right: 5%; animation-delay: 0s; }
.hb-2 { bottom: 14%; right: 8%; animation-delay: -1.5s; }

/* Hero badge inline */
.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 500;
    animation: slideUp 0.7s var(--transition-slow) forwards;
}

.hero-badge-new .pulse-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 2s infinite;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-top: 1.25rem;
    margin-bottom: 1rem;
    animation: slideUp 0.7s var(--transition-slow) 0.1s both;
}

.hero-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 500px;
    animation: slideUp 0.7s var(--transition-slow) 0.2s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2rem;
    animation: slideUp 0.7s var(--transition-slow) 0.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(247, 173, 12, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: #f8bb2e;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(247, 173, 12, 0.35);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 28px;
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
    cursor: pointer;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Hero metrics */
.hero-metrics {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: slideUp 0.7s var(--transition-slow) 0.4s both;
}

.hero-metric-val {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
}

.hero-metric-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-top: 2px;
}

/* Hero right panel */
.hero-panel {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2rem;
    animation: slideLeft 0.8s var(--transition-slow) 0.2s both;
}

.hero-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-panel-item {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    transition: background var(--transition);
}

.hero-panel-item:hover {
    background: rgba(255, 255, 255, 0.10);
}

.hero-panel-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.hero-panel-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.hero-panel-foot {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ---------- 2. BENEFITS - all new ---------- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.benefit-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition);
    position: relative;
    cursor: default;
}

.benefit-item::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 2px solid transparent;
    transition: border-color var(--transition-slow);
    pointer-events: none;
}

.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.benefit-item:hover::after {
    border-color: var(--accent);
}

.benefit-icon-wrap {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: var(--radius-md);
    color: var(--accent-dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: all var(--transition);
}

.benefit-item:hover .benefit-icon-wrap {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.08) rotate(-3deg);
}

.benefit-item-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.benefit-item-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ---------- 3. PROCESS - all new ---------- */
.process-wrap {
    background: var(--bg-light);
}

.process-track {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
}

.process-track::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), rgba(247, 173, 12, 0.1));
    border-radius: 2px;
}

.process-node {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2.5rem;
    position: relative;
}

.process-node:last-child {
    padding-bottom: 0;
}

.process-marker {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 2px solid var(--accent);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent-dark);
    box-shadow: 0 0 0 4px var(--bg-light);
    transition: all var(--transition);
    z-index: 2;
}

.process-node:hover .process-marker {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 0 0 6px rgba(247, 173, 12, 0.15);
}

.process-content {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    flex: 1;
    transition: all var(--transition);
}

.process-node:hover .process-content {
    border-color: rgba(247, 173, 12, 0.2);
    box-shadow: var(--shadow-card);
    transform: translateX(4px);
}

.process-content-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.process-content-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- 4. STATS - all new ---------- */
.stats-wrap {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.stat-block {
    text-align: center;
    padding: 1.5rem 0.5rem;
    position: relative;
}

.stat-block:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.stat-block-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.3rem;
    font-feature-settings: "tnum";
}

.stat-block-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.stat-block .count-anim {
    animation: countReveal 0.4s ease-out forwards;
}

/* ---------- 5. SERVICES - all new ---------- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(247, 173, 12, 0.2);
}

.service-icon-box {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: var(--radius-md);
    color: var(--accent-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: all var(--transition);
}

.service-card:hover .service-icon-box {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.05) rotate(-4deg);
}

.service-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.service-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.service-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--text);
    line-height: 1.4;
}

.service-card-list li i {
    color: var(--accent);
    font-size: 0.7rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

/* ---------- 6. TESTIMONIALS - all new ---------- */
.testimonials-wrap {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

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

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(247, 173, 12, 0.15);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: var(--accent);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
}

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

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

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

.testimonial-location {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ---------- 7. FAQ - all new ---------- */
.faq-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item-new {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item-new:hover {
    border-color: rgba(247, 173, 12, 0.25);
}

.faq-item-new.active {
    border-color: rgba(247, 173, 12, 0.35);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    transition: color var(--transition);
}

.faq-q:hover {
    color: var(--accent-dark);
}

.faq-arrow {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: 50%;
    color: var(--accent-dark);
    font-size: 0.7rem;
    transition: all var(--transition);
}

.faq-item-new.active .faq-arrow {
    background: var(--accent);
    color: var(--primary);
    transform: rotate(180deg);
}

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

.faq-a-inner {
    padding: 0 1.25rem 1.15rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item-new.active .faq-a-wrap {
    max-height: 300px;
}

/* ---------- 8. CTA - all new ---------- */
.cta-wrap {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--accent);
    filter: blur(120px);
    opacity: 0.04;
    top: -80px;
    right: -80px;
    pointer-events: none;
}

.cta-title-new {
    font-size: 2.1rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-desc-new {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 480px;
    margin: 1rem auto 0;
}

.cta-btn-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 24px rgba(247, 173, 12, 0.25);
}

.cta-btn-new:hover {
    background: #f8bb2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(247, 173, 12, 0.35);
}

.cta-phone-new {
    display: inline-block;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.cta-phone-new:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* ---------- 9. CONTACT FORM - all new ---------- */
.form-section {
    padding: 4rem 0;
}

.form-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: box-shadow var(--transition);
}

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

.form-input {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    color: var(--text);
    background: var(--bg-light);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(247, 173, 12, 0.1);
    background: var(--bg-white);
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.form-textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    color: var(--text);
    background: var(--bg-light);
    transition: all var(--transition-fast);
    outline: none;
    resize: vertical;
    min-height: 110px;
    font-family: inherit;
}

.form-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(247, 173, 12, 0.1);
    background: var(--bg-white);
}

.form-textarea::placeholder {
    color: var(--text-light);
}

.form-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(247, 173, 12, 0.25);
}

.form-btn:hover {
    background: #f8bb2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(247, 173, 12, 0.35);
}

.form-btn:active {
    transform: translateY(0);
}

.form-footnote {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-light);
    margin-top: 0.75rem;
}

/* ---------- 10. TRUST BAND - all new ---------- */
.trust-band {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
}

.trust-label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
    opacity: 0.4;
}

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

.trust-item {
    filter: grayscale(1);
    transition: all var(--transition);
    cursor: default;
}

.trust-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* ---------- Section padding ---------- */
.section-pad {
    padding: 4.5rem 0;
}

.section-pad-sm {
    padding: 3rem 0;
}

.section-pad:last-of-type {
    padding-bottom: 5rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
    .section-title {
        font-size: 1.6rem;
    }
    .section-desc {
        font-size: 0.95rem;
    }
    .section-pad {
        padding: 3rem 0;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-lead {
        font-size: 1rem;
    }
    .hero-metrics {
        gap: 1.25rem;
    }
    .hero-metric-val {
        font-size: 1.3rem;
    }
    .hero-float-badge {
        display: none;
    }
    .stat-block-num {
        font-size: 2rem;
    }
    .form-card {
        padding: 1.5rem;
    }
    .cta-title-new {
        font-size: 1.5rem;
    }
    .hero-panel {
        display: none;
    }
}

@media (min-width: 641px) and (max-width: 1023px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-panel {
        padding: 1.25rem;
    }
}