.hero { background: linear-gradient(135deg, var(--navy) 0%, #162a80 55%, #0e2468 100%); color: var(--white); padding: 64px 32px 72px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; max-width: 1200px; margin: 0 auto; }
.hero-section { background: linear-gradient(135deg, var(--navy) 0%, #162a80 55%, #0e2468 100%); }
.hero-tag { display: inline-block; background: var(--yellow); color: var(--navy); font-weight: 900; font-size: 13px; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; letter-spacing: .5px; }
.hero h1 { font-size: clamp(28px, 4vw, 52px); font-weight: 900; line-height: 1.25; margin-bottom: 16px; text-wrap: pretty; }
.hero h1 span { color: var(--yellow); }
.hero-sub { font-size: 17px; opacity: .85; margin-bottom: 36px; line-height: 1.7; }
.hero-phone-block { background: rgba(255,255,255,.08); border: 2px solid var(--yellow); border-radius: 16px; padding: 24px 32px; text-align: center; margin-bottom: 28px; }
.hero-phone-label { font-size: 14px; opacity: .7; margin-bottom: 6px; letter-spacing: 1px; }
.hero-phone-number { font-size: clamp(36px, 6vw, 72px); font-weight: 900; color: var(--yellow); letter-spacing: 2px; display: block; text-decoration: none; transition: color .2s; }
.hero-phone-number:hover { color: #fff; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badge { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff; padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 700; }
.hero-badge .icon { margin-right: 6px; font-size: 16px; }
.hero-logo-area { display: flex; align-items: center; justify-content: center; }
.hero-logo-area img { width: clamp(180px, 22vw, 320px); filter: drop-shadow(0 8px 32px rgba(0,0,0,.4)); }

.strip { background: var(--yellow); color: var(--navy); font-weight: 900; font-size: 15px; padding: 12px 0; overflow: hidden; white-space: nowrap; }
.strip-inner { display: inline-block; animation: marquee 22s linear infinite; }
.strip-item { display: inline; margin: 0 32px; }

@keyframes marquee { 
    from { transform: translateX(0); } 
    to { transform: translateX(-50%); } 
}

.section-title { text-align: center; margin-bottom: 48px; }
.section-title .pre { color: var(--sky-dark); font-size: 13px; font-weight: 700; letter-spacing: 2px; margin-bottom: 8px; text-transform: uppercase; }
.section-title h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 900; color: var(--navy); }
.section-title h2 span { color: var(--sky-dark); }

.services { padding: 80px 32px; background: var(--gray-bg); }
.services-inner { max-width: 1100px; margin: 0 auto; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card { background: var(--white); border-radius: 16px; padding: 32px 28px; box-shadow: 0 2px 16px rgba(13,31,92,.08); border-top: 4px solid var(--yellow); transition: transform .2s, box-shadow .2s; cursor: default; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(13,31,92,.15); }
.service-icon { width: 52px; height: 52px; background: var(--navy); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; }
.service-card h3 { font-size: 20px; font-weight: 900; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray-text); line-height: 1.7; }

.trust { padding: 80px 32px; background: var(--navy); }
.trust-inner { max-width: 1000px; margin: 0 auto; }
.trust .section-title h2 { color: #fff; }
.trust .section-title .pre { color: var(--sky); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.trust-card { text-align: center; padding: 32px 20px; border-radius: 16px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); }
.trust-num { font-size: 52px; font-weight: 700; color: var(--yellow); line-height: 1; }
.trust-num sup { font-size: 24px; }
.trust-txt { font-size: 32px; font-weight: 700; color: var(--yellow); line-height: 52px; }
.trust-label { color: rgba(255,255,255,.8); font-size: 15px; margin-top: 8px; }

.process { padding: 80px 32px; background: var(--white); }
.process-inner { max-width: 900px; margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0; position: relative; }
.process-step { text-align: center; padding: 24px 16px; position: relative; }
.process-step:not(:last-child)::after { content: '▶'; position: absolute; right: -10px; top: 36px; color: var(--yellow); font-size: 18px; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--yellow); color: var(--navy); font-weight: 900; font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.process-step h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--gray-text); }

.cta-banner { background: linear-gradient(90deg, var(--sky-dark) 0%, var(--sky) 100%); padding: 56px 32px; text-align: center; }
.cta-banner h2 { font-size: clamp(22px, 3vw, 40px); font-weight: 900; color: var(--navy); margin-bottom: 10px; }
.cta-banner p { color: var(--navy); opacity: .8; font-size: 16px; margin-bottom: 32px; }
.cta-btn { display: inline-block; background: var(--navy); color: var(--yellow); font-weight: 900; font-size: 18px; padding: 16px 48px; border-radius: 50px; text-decoration: none; box-shadow: 0 6px 24px rgba(13,31,92,.3); transition: transform .2s, box-shadow .2s; }
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(13,31,92,.4); }

@media (max-width: 768px) { 
    .hero { grid-template-columns: 1fr; text-align: center; } 
    .hero-logo-area { order: -1; } 
    .hero-logo-area img { width: 180px; } 
    .hero-badge { width: 100%; } 
    .hero-badge.half { width: calc(50% - 6px); } 
}