/* ── Home page design tokens (brand colors inherited from the global :root in components/layout.blade.php) ── */
.hp {
    --radius:     12px;
    --shadow:     0 4px 24px rgba(var(--black-rgb), .07);
    --shadow-hover: 0 12px 40px rgba(var(--pink-rgb), .18);
}

/* ── Resets & typography ── */
.hp * { box-sizing: border-box; }
.hp { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text); }
.hp h1,.hp h2,.hp h3,.hp h4 { line-height: 1.2; font-weight: 700; }
.hp p { line-height: 1.7; color: var(--muted); }

/* ── Shared utilities ── */
.hp .section     { padding: 96px 0; }
.hp .section-sm  { padding: 64px 0; }
.hp .container   { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hp .tag         { display: inline-block; background: var(--pink-light); color: var(--pink); font-size: 13px; font-weight: 600; padding: 5px 14px; border-radius: 40px; letter-spacing: .4px; margin-bottom: 16px; }
.hp .section-title { font-size: clamp(28px, 4vw, 40px); color: var(--dark); margin: 0 0 12px; }
.hp .section-sub  { font-size: 17px; color: var(--muted); max-width: 540px; margin: 0 auto 52px; }
.hp .text-center  { text-align: center; }

/* ── Buttons ── */
.hp .btn-pink {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--pink); color: #fff; font-weight: 600; font-size: 15px;
    padding: 14px 30px; border-radius: 8px; text-decoration: none; border: none; cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
}
.hp .btn-pink:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(var(--pink-rgb), .35); color:#fff; }
.hp .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--pink); font-weight: 600; font-size: 15px;
    padding: 13px 30px; border-radius: 8px; text-decoration: none;
    border: 2px solid var(--pink); cursor: pointer;
    transition: background .2s, color .2s, transform .15s;
}
.hp .btn-outline:hover { background: var(--pink); color: #fff; transform: translateY(-2px); }
.hp .btn-outline-light { color: #fff; border-color: rgba(var(--white-rgb), .4); }
.hp .btn-outline-light:hover { background: rgba(var(--white-rgb), .1); border-color: #fff; }

/* ── Hero ── */
.hp .hero {
    min-height: 92vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, #2a1040 100%);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
}
.hp .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(var(--pink-rgb), .18) 0%, transparent 70%);
    pointer-events: none;
}
.hp .hero-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; padding: 60px 24px;
}
.hp .hero-text .badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(var(--pink-rgb), .15); color: var(--pink); border: 1px solid rgba(var(--pink-rgb), .3);
    font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 40px; margin-bottom: 28px;
}
.hp .hero-text .badge span { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); display: inline-block; animation: pulse 1.5s infinite; }
.hp .hero-h1 {
    font-size: clamp(36px, 5vw, 62px); font-weight: 800; color: #fff;
    margin: 0 0 20px; line-height: 1.1;
}
.hp .hero-h1 em { font-style: normal; color: var(--pink); }
.hp .hero-sub { font-size: 18px; color: rgba(var(--white-rgb), .65); margin: 0 0 36px; max-width: 480px; line-height: 1.7; }
.hp .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hp .hero-trust { display: flex; align-items: center; gap: 16px; }
.hp .hero-trust-avatars { display: flex; }
.hp .hero-trust-avatars img {
    width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--dark2);
    object-fit: cover; margin-left: -8px;
}
.hp .hero-trust-avatars img:first-child { margin-left: 0; }
.hp .hero-trust-text { font-size: 13px; color: rgba(var(--white-rgb), .6); line-height: 1.4; }
.hp .hero-trust-text strong { color: #fff; display: block; }

/* Hero visual card */
.hp .hero-visual {
    display: flex; justify-content: flex-end; align-items: center; position: relative;
}
.hp .hero-card {
    background: rgba(var(--white-rgb), .06); backdrop-filter: blur(16px);
    border: 1px solid rgba(var(--white-rgb), .12); border-radius: 20px;
    padding: 32px; width: 100%; max-width: 400px;
}
.hp .hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hp .hero-card-avatar {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, var(--pink), #ff8f6b);
    display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.hp .hero-card-info .hero-card-title { color: #fff; font-size: 15px; margin: 0 0 2px; font-weight: 700; }
.hp .hero-card-info p { color: rgba(var(--white-rgb), .5); font-size: 12px; margin: 0; }
.hp .hero-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.hp .hero-stat {
    background: rgba(var(--white-rgb), .06); border-radius: 12px; padding: 16px;
    text-align: center;
}
.hp .hero-stat .num { font-size: 26px; font-weight: 800; color: #fff; margin: 0 0 2px; }
.hp .hero-stat .num span { color: var(--pink); }
.hp .hero-stat .lbl { font-size: 12px; color: rgba(var(--white-rgb), .5); }
.hp .hero-bar-section { margin-top: 4px; }
.hp .hero-bar-label { display: flex; justify-content: space-between; font-size: 12px; color: rgba(var(--white-rgb), .6); margin-bottom: 6px; }
.hp .hero-bar { height: 6px; background: rgba(var(--white-rgb), .1); border-radius: 3px; overflow: hidden; margin-bottom: 10px; }
.hp .hero-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--pink), #ff8f6b); }
.hp .hero-visual-card-wrap { position: relative; }
.hp .w-96 { width: 96%; }
.hp .w-99 { width: 99%; }

/* Floating badges */
.hp .float-badge {
    position: absolute; background: #fff; border-radius: 12px; padding: 10px 16px;
    box-shadow: 0 8px 32px rgba(var(--black-rgb), .2); display: flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap;
    animation: floatY 3s ease-in-out infinite;
}
.hp .float-badge.top-left  { top: -20px; left: -40px; animation-delay: 0s; }
.hp .float-badge.bot-right { bottom: -20px; right: -20px; animation-delay: 1.5s; }
.hp .float-badge .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.hp .float-badge .dot.green { background: #22c55e; }
.hp .float-badge .dot.pink  { background: var(--pink); }

/* ── Services ── */
.hp .services { background: var(--white); }
.hp .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.hp .service-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 32px 28px; transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative; overflow: hidden;
}
.hp .service-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--pink), #ff8f6b);
    transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.hp .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(var(--pink-rgb), .2); }
.hp .service-card:hover::after { transform: scaleX(1); }
.hp .service-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--pink-light); display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 20px; transition: background .25s;
}
.hp .service-card:hover .service-icon { background: var(--pink); }
.hp .service-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin: 0 0 10px; }
.hp .service-card p  { font-size: 14px; margin: 0 0 20px; }
.hp .service-link { color: var(--pink); font-size: 14px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.hp .service-link:hover { gap: 8px; }

/* ── Stats ── */
.hp .stats { background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%); }
.hp .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.hp .stat-item { padding: 48px 32px; text-align: center; border-right: 1px solid rgba(var(--white-rgb), .08); }
.hp .stat-item:last-child { border-right: none; }
.hp .stat-num { font-size: clamp(36px, 5vw, 56px); font-weight: 800; color: #fff; margin: 0 0 6px; line-height: 1; }
.hp .stat-num span { color: var(--pink); }
.hp .stat-label { font-size: 14px; color: rgba(var(--white-rgb), .5); letter-spacing: .3px; margin: 0; }

/* ── Process ── */
.hp .process { background: var(--bg); }
.hp .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.hp .process-steps::before {
    content: ''; position: absolute; top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px);
    height: 2px; background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 8px, transparent 8px, transparent 16px);
}
.hp .process-step { text-align: center; position: relative; }
.hp .process-num {
    width: 56px; height: 56px; border-radius: 50%; background: var(--white);
    border: 2px solid var(--border); display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 18px; font-weight: 800; color: var(--pink);
    position: relative; z-index: 1; transition: background .25s, border-color .25s;
}
.hp .process-step:hover .process-num { background: var(--pink); color: #fff; border-color: var(--pink); }
.hp .process-step h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin: 0 0 8px; }
.hp .process-step p  { font-size: 14px; margin: 0; }

/* ── Testimonials ── */
.hp .testimonials { background: var(--white); }
.hp .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hp .testi-card {
    background: var(--bg); border-radius: var(--radius); padding: 32px 28px;
    border: 1px solid var(--border); transition: transform .25s, box-shadow .25s;
}
.hp .testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.hp .testi-stars { color: #f59e0b; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.hp .testi-text { font-size: 15px; color: var(--text); line-height: 1.7; margin: 0 0 24px; font-style: italic; }
.hp .testi-author { display: flex; align-items: center; gap: 12px; }
.hp .testi-avatar {
    width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--pink), #ff8f6b);
    display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: #fff; flex-shrink: 0;
}
.hp .testi-author-info .name { font-size: 14px; font-weight: 700; color: var(--dark); margin: 0 0 2px; }
.hp .testi-author-info .role { font-size: 12px; color: var(--muted); margin: 0; }

/* ── CTA Banner ── */
.hp .cta-banner {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    padding: 80px 24px; text-align: center;
}
.hp .cta-banner h2 { font-size: clamp(28px, 4vw, 44px); color: #fff; margin: 0 0 14px; }
.hp .cta-banner p  { font-size: 18px; color: rgba(var(--white-rgb), .8); margin: 0 0 36px; }
.hp .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hp .cta-banner .btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--pink); font-weight: 700; font-size: 16px;
    padding: 15px 36px; border-radius: 8px; text-decoration: none;
    transition: transform .15s, box-shadow .2s;
}
.hp .cta-banner .btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(var(--black-rgb), .2); }
.hp .cta-banner .btn-outline-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff; font-weight: 600; font-size: 16px;
    padding: 14px 36px; border-radius: 8px; text-decoration: none;
    border: 2px solid rgba(var(--white-rgb), .6);
    transition: border-color .2s, background .2s;
}
.hp .cta-banner .btn-outline-white:hover { border-color: #fff; background: rgba(var(--white-rgb), .1); }

/* ── Contact ── */
.hp .contact { background: var(--bg); }
.hp .contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.hp .contact-info h2 { font-size: clamp(26px, 3vw, 36px); color: var(--dark); margin: 0 0 14px; }
.hp .contact-info p  { font-size: 16px; margin: 0 0 36px; }
.hp .contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.hp .contact-icon {
    width: 44px; height: 44px; border-radius: 10px; background: var(--pink-light);
    display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.hp .contact-item-text .label { font-size: 12px; font-weight: 600; color: var(--pink); text-transform: uppercase; letter-spacing: .5px; margin: 0 0 2px; }
.hp .contact-item-text a, .hp .contact-item-text p { font-size: 15px; color: var(--text); margin: 0; font-style: normal; text-decoration: none; }
.hp .contact-item-text a:hover { color: var(--pink); }

/* Contact form */
.hp .contact-form { background: var(--white); border-radius: 16px; padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.hp .form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.hp .form-group  { margin-bottom: 0; }
.hp .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.hp .form-control {
    width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px;
    font-size: 14px; color: var(--text); background: var(--bg);
    transition: border-color .2s, box-shadow .2s; outline: none;
}
.hp .form-control:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(var(--pink-rgb), .1); background: #fff; }
.hp .form-full { grid-column: 1 / -1; }
.hp textarea.form-control { resize: vertical; min-height: 120px; }
.hp .form-submit { margin-top: 24px; text-align: center; }
.hp .form-submit .btn-pink { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }
.hp .required-mark { color: var(--pink); }

/* ── Animations ── */
@keyframes pulse   { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.8)} }
@keyframes floatY  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hp .services-grid       { grid-template-columns: repeat(2,1fr); }
    .hp .stats-grid          { grid-template-columns: repeat(2,1fr); }
    .hp .stat-item           { border-right: none; border-bottom: 1px solid rgba(var(--white-rgb), .08); }
    .hp .stat-item:nth-child(2n) { border-bottom: none; }
    .hp .process-steps       { grid-template-columns: repeat(2,1fr); }
    .hp .process-steps::before { display: none; }
    .hp .testimonials-grid   { grid-template-columns: repeat(2,1fr); }
    .hp .contact-inner       { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .hp .hero-inner          { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hp .hero-ctas           { justify-content: center; }
    .hp .hero-trust          { justify-content: center; }
    .hp .hero-visual         { justify-content: center; }
    .hp .float-badge.top-left  { top: -10px; left: 0; }
    .hp .float-badge.bot-right { bottom: -10px; right: 0; }
    .hp .services-grid       { grid-template-columns: 1fr; }
    .hp .stats-grid          { grid-template-columns: 1fr 1fr; }
    .hp .stat-item:nth-child(2n) { border-right: none; }
    .hp .stat-item:nth-child(2n+1) { border-right: 1px solid rgba(var(--white-rgb), .08); }
    .hp .process-steps       { grid-template-columns: 1fr; }
    .hp .testimonials-grid   { grid-template-columns: 1fr; }
    .hp .cta-banner .cta-btns { flex-direction: column; align-items: center; }
    .hp .form-row            { grid-template-columns: 1fr; }
    .hp .contact-form        { padding: 28px 20px; }
    .hp .section             { padding: 64px 0; }
}
