/* ============================================
   HOMEPAGE — Secure Exchanges
   Même langage visuel que signature-numerique.css
   ============================================ */

/* ============================================
   HERO — Dark navy, centered authority
   ============================================ */
.hp-hero {
    padding: 56px 0 40px;
    background: linear-gradient(165deg, var(--se-navy) 0%, var(--se-navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Split layout: text left, visual right */
.hp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 0;
}

.hp-hero-text {
    text-align: left;
}

.hp-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

/* (Legacy) Armored truck — kept for reference, no longer used
.hp-hero-truck {
    position: absolute;
    z-index: 2;
    max-width: 70%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.6));
} */

/* ============================================
   HERO ANIMATION — 3 products, fixed + glow
   ============================================ */
.hero-anim {
    position: absolute;
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central pulse anchor (truck sits on top via .hp-hero-truck) */
.hero-anim-core {
    position: absolute;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Pulse rings from center */
.hero-anim-pulse {
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(238, 101, 37, 0.3);
    border-radius: 50%;
    animation: heroPulseExpand 3s ease-out infinite;
}

.hero-anim-pulse--2 {
    animation-delay: 1.5s;
}

@keyframes heroPulseExpand {
    0% { transform: scale(0.5); opacity: 0.6; }
    100% { transform: scale(3); opacity: 0; }
}

/* SVG orbit lines — static, no spin */
.hero-anim-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    fill: none; /* Override any global svg fill from other components */
}

/* Orbit rings (decorative, static) */
.hero-anim-ring {
    position: absolute;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(238, 101, 37, 0.1);
    border-radius: 50%;
}

.hero-anim-ring--2 {
    width: 340px;
    height: 340px;
    border-color: rgba(255, 255, 255, 0.06);
}

/* Product nodes — fixed positions */
.hero-anim-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Fixed placements — equidistant triangle around truck */
.hero-anim-node--mail     { top: 6%;  right: 10%; }
.hero-anim-node--sign     { top: 38%; left: -8%; }
.hero-anim-node--transfer { bottom: 4%; right: 10%; }

.hero-anim-node-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-anim-node-icon .shield-stack {
    font-size: 1.6rem;
    color: var(--se-orange);
    opacity: 0.4;
    filter: drop-shadow(0 0 0px rgba(238, 101, 37, 0));
    transition: opacity 0.6s ease, filter 0.6s ease;
}

.hero-anim-node-icon .fa-stack-1x {
    font-size: 0.75em;
    transform: translateY(-2%);
}

/* Sequential glow animation — 6s cycle, each node lights up for 2s */
.hero-anim-node--mail .hero-anim-node-icon .shield-stack {
    animation: heroGlow 6s ease-in-out infinite;
    animation-delay: 0s;
}
.hero-anim-node--sign .hero-anim-node-icon .shield-stack {
    animation: heroGlow 6s ease-in-out infinite;
    animation-delay: 2s;
}
.hero-anim-node--transfer .hero-anim-node-icon .shield-stack {
    animation: heroGlow 6s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.4; filter: drop-shadow(0 0 0px rgba(238, 101, 37, 0)); }
    10%      { opacity: 1;   filter: drop-shadow(0 0 18px rgba(238, 101, 37, 0.5)); }
    25%      { opacity: 1;   filter: drop-shadow(0 0 18px rgba(238, 101, 37, 0.5)); }
    40%      { opacity: 0.4; filter: drop-shadow(0 0 0px rgba(238, 101, 37, 0)); }
}

/* Labels also glow with their icon */
.hero-anim-node-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: color 0.6s ease;
}

.hero-anim-node--mail .hero-anim-node-label {
    animation: heroGlowLabel 6s ease-in-out infinite;
    animation-delay: 0s;
}
.hero-anim-node--sign .hero-anim-node-label {
    animation: heroGlowLabel 6s ease-in-out infinite;
    animation-delay: 2s;
}
.hero-anim-node--transfer .hero-anim-node-label {
    animation: heroGlowLabel 6s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes heroGlowLabel {
    0%, 100% { color: rgba(255, 255, 255, 0.35); }
    10%      { color: rgba(255, 255, 255, 0.9); }
    25%      { color: rgba(255, 255, 255, 0.9); }
    40%      { color: rgba(255, 255, 255, 0.35); }
}

/* Encrypted data particles */
.hero-anim-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    color: rgba(238, 101, 37, 0.25);
    animation: heroParticleFloat 8s ease-in-out infinite;
    animation-delay: calc(var(--i) * -1s);
}

.hero-particle:nth-child(1) { top: 10%; left: 15%; }
.hero-particle:nth-child(2) { top: 25%; right: 10%; }
.hero-particle:nth-child(3) { bottom: 30%; left: 8%; }
.hero-particle:nth-child(4) { top: 50%; right: 5%; }
.hero-particle:nth-child(5) { bottom: 15%; right: 20%; }
.hero-particle:nth-child(6) { top: 8%; left: 55%; }
.hero-particle:nth-child(7) { bottom: 10%; left: 30%; }
.hero-particle:nth-child(8) { top: 40%; left: 5%; }

@keyframes heroParticleFloat {
    0%, 100% { opacity: 0; transform: translateY(0); }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-20px); }
}

/* Subtle pattern overlay */
.hp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(238, 101, 37, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(238, 101, 37, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hp-hero .container {
    position: relative;
    z-index: 1;
}

/* Eyebrow */
.hp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--se-orange);
    margin-bottom: 32px;
    padding: 8px 20px;
    border: 1px solid rgba(238, 101, 37, 0.25);
    background: rgba(238, 101, 37, 0.06);
}

.hp-hero-eyebrow i {
    font-size: 0.9rem;
}

/* Main headline */
.hp-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: normal;
    line-height: 1.05;
    color: var(--se-white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 28px;
}

.hp-hero h1 span {
    color: var(--se-orange);
}

/* Subheadline */
.hp-hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 0 40px;
}

.hp-hero-sub strong {
    color: #fff;
    font-weight: 700;
}

/* CTA buttons */
.hp-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Social proof line */
.hp-hero-proof {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 32px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hp-hero-proof i {
    color: var(--se-orange);
    font-size: 1rem;
    margin-right: 8px;
    vertical-align: middle;
}

.hp-hero-proof strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* Ghost button override for dark bg */
.hp-btn-ghost {
    color: white !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.hp-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: white !important;
}

/* Trust stats bar */
.hp-hero-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
}

.hp-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hp-hero-stat:last-child {
    border-right: none;
}

.hp-stat-number {
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 1.6rem;
    color: var(--se-white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hp-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hp-stat-badge {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

/* ============================================
   SHARED — Section titles
   ============================================ */
.hp-section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.hp-section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: normal;
    color: var(--se-navy);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hp-section-title p {
    font-size: 1.1rem;
    color: var(--se-gray);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.hp-section-title-light h2 {
    color: white;
}

.hp-section-title-light p {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   FEATURE SECTIONS — 3 alternating product blocks
   ============================================ */
/* ============================================
   SOLUTIONS — 3 cards grid
   ============================================ */
.hp-solutions {
    padding: var(--space-3xl) 0;
    background: var(--se-offwhite);
}

.hp-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.hp-solution-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
}

.hp-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--se-orange);
}

/* Accent variant (middle card) */
.hp-solution-card--accent {
    background: var(--se-navy);
    color: white;
    border-color: transparent;
}

.hp-solution-card--accent:hover {
    border-color: var(--se-orange);
}

/* Shield-stack icon */
.hp-solution-shield {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.hp-solution-shield .shield-stack {
    font-size: 1.6rem;
}

.hp-solution-card:hover .hp-solution-shield {
    transform: scale(1.1);
}

/* Tag */
.hp-solution-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--se-orange);
    margin-bottom: 12px;
}

/* Heading */
body:not(.stretched) .hp-solution-card h3 {
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.15;
    margin: 0 0 var(--space-lg) 0;
    color: var(--se-navy);
}

.hp-solution-card--accent h3 {
    color: white;
}

.hp-solution-card h3 span {
    color: var(--se-orange);
}

/* Description */
.hp-solution-card > p {
    color: var(--se-gray);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.hp-solution-card--accent > p {
    color: rgba(255, 255, 255, 0.6);
}

/* List */
.hp-solution-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.hp-solution-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--se-gray);
    line-height: 1.4;
}

.hp-solution-card--accent ul li {
    color: rgba(255, 255, 255, 0.7);
}

.hp-solution-card ul li i {
    color: var(--se-orange);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* CTA */
.hp-solution-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--se-orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.hp-solution-card:hover .hp-solution-cta {
    gap: 10px;
}

/* ============================================
   CAPABILITIES — Compact grid, navy bg
   ============================================ */
.hp-capabilities {
    padding: var(--space-3xl) 0;
    background: var(--se-navy);
    color: white;
}

.hp-capabilities .hp-section-title h2 {
    color: white;
}

.hp-capabilities .hp-section-title p {
    color: rgba(255, 255, 255, 0.85);
}

.hp-cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hp-cap {
    display: block;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid transparent;
    transition: all var(--transition-base);
    text-decoration: none;
    color: inherit;
}

.hp-cap:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: var(--se-orange);
    transform: translateY(-2px);
}

.hp-cap i {
    font-size: 1.6rem;
    color: var(--se-orange);
    margin-bottom: 14px;
    display: block;
}

.hp-cap h3 {
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    margin: 0 0 8px 0;
}

.hp-cap p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
    margin: 0;
}

/* ============================================
   HOW IT WORKS — Photo + 3 steps
   ============================================ */
.hp-howto {
    padding: var(--space-3xl) 0;
    background: var(--se-offwhite);
}

.hp-howto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hp-howto-visual {
    position: relative;
}

.hp-howto-visual > img {
    width: 100%;
    box-shadow: var(--shadow-xl);
    clip-path: polygon(0 0, 100% 0, 100% 92%, 77% 100%, 0 100%);
}

.hp-howto-badge {
    position: absolute;
    bottom: -12px;
    left: -12px;
    background: white;
    padding: 10px;
    box-shadow: var(--shadow-lg);
}

.hp-howto-badge img {
    height: 50px;
    width: auto;
}

body:not(.stretched) .hp-howto-content h2,
.hp-howto-content h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--se-navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 var(--space-xl) 0;
    line-height: 1.1;
}

.hp-howto-content h2 span {
    color: var(--se-orange);
}

.hp-howto-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hp-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.hp-step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--se-orange);
    color: white;
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 1.5rem;
    letter-spacing: 0;
}

.hp-step-text h3 {
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 1.3rem;
    color: var(--se-navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 6px 0;
}

.hp-step-text p {
    font-size: 0.9rem;
    color: var(--se-gray);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   TRUST — Client logos
   ============================================ */
.hp-trust {
    padding: var(--space-2xl) 0;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.hp-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hp-logo-item {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.hp-logo-item img {
    height: 36px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: all var(--transition-base);
}

.hp-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 0.85;
}

/* ============================================
   TESTIMONIALS — Light background, accent cards
   ============================================ */
.hp-testimonials {
    padding: var(--space-3xl) 0;
    background: var(--se-offwhite);
}

.hp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hp-testimonial {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 3px solid var(--se-orange);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
}

.hp-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hp-testimonial-quote {
    margin-bottom: 16px;
}

.hp-testimonial-quote i {
    font-size: 1.8rem;
    color: var(--se-orange);
    opacity: 0.3;
}

.hp-testimonial blockquote {
    font-size: 0.95rem;
    color: var(--se-gray);
    line-height: 1.8;
    font-style: italic;
    margin: 0 0 24px 0;
    flex: 1;
}

.hp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hp-testimonial-avatar {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--se-navy);
    color: white;
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

.hp-testimonial-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
}

.hp-testimonial-logo img {
    height: 28px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.45;
    transition: all 0.3s ease;
}

.hp-testimonial:hover .hp-testimonial-logo img {
    filter: grayscale(0%);
    opacity: 0.85;
}

.hp-testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--se-navy);
    margin-bottom: 2px;
}

.hp-testimonial-author span {
    font-size: 0.78rem;
    color: var(--se-gray);
    opacity: 0.7;
}

/* ============================================
   PRICING — 4 tier cards
   ============================================ */
.hp-pricing {
    padding: var(--space-3xl) 0;
    background: white;
}

.hp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hp-pricing-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
}

.hp-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.hp-pricing-popular {
    border: 2px solid var(--se-orange);
}

.hp-pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--se-orange);
    color: white;
    padding: 4px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hp-pricing-card h3 {
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 1.6rem;
    color: var(--se-navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 12px 0;
}

.hp-pricing-popular h3 {
    margin-top: 16px;
}

.hp-pricing-price {
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 2.4rem;
    color: var(--se-orange);
    margin-bottom: 16px;
}

.hp-pricing-price span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--se-gray);
    font-weight: 400;
}

.hp-pricing-card p {
    font-size: 0.88rem;
    color: var(--se-gray);
    line-height: 1.6;
    margin: 0 0 24px 0;
    min-height: 70px;
}

/* ============================================
   CERTIFICATIONS — Elegant showcase
   ============================================ */
.hp-certs {
    padding: var(--space-3xl) 0;
    background: #fafafa;
    color: var(--se-navy);
}

.hp-certs .hp-section-title h2 {
    color: var(--se-navy);
}

.hp-certs .hp-section-title p {
    color: rgba(26, 42, 58, 0.7);
}

.hp-certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: var(--space-xl);
}

.hp-cert {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: white;
    border: 1px solid rgba(26, 42, 58, 0.1);
    border-radius: 10px;
    padding: 24px 20px;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(26, 42, 58, 0.06);
}

.hp-cert:hover {
    background: white;
    border-color: rgba(26, 42, 58, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 42, 58, 0.1);
}

.hp-cert-icon {
    flex-shrink: 0;
}

.hp-cert-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 8px;
}

.hp-cert-content {
    min-width: 0;
}

.hp-cert-name {
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 1.15rem;
    color: var(--se-navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.hp-cert-type {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--se-orange);
    margin-bottom: 8px;
}

.hp-cert p {
    font-size: 0.8rem;
    color: rgba(26, 42, 58, 0.6);
    line-height: 1.5;
    margin: 0;
}

.hp-certs-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(26, 42, 58, 0.08);
}

.hp-certs-shield {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

.hp-certs-footer span {
    font-size: 0.85rem;
    color: rgba(26, 42, 58, 0.7);
    font-style: italic;
}

.hp-certs-link {
    font-size: 0.85rem;
    color: rgba(26, 42, 58, 0.55);
    text-decoration: none;
    font-style: italic;
    transition: color 0.3s;
}

.hp-certs-link:hover {
    color: var(--se-orange);
}

/* ============================================
   CTA — Navy, horizontal, sobre
   ============================================ */
.hp-cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--se-navy) 0%, var(--se-navy-dark) 100%);
    text-align: center;
    color: var(--se-white);
    position: relative;
    overflow: hidden;
}

.hp-cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.hp-cta-text h2 {
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 6px 0;
    color: white;
}

.hp-cta-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.hp-cta-buttons {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE — 1024px
   ============================================ */
@media (max-width: 1024px) {
    .hp-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hp-hero-text {
        text-align: center;
    }

    .hp-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hp-hero-buttons {
        justify-content: center;
    }

    .hero-anim {
        width: 480px;
        height: 480px;
    }

    .hp-hero-truck {
        max-height: 300px;
    }

    .hero-anim-ring {
        width: 360px;
        height: 360px;
    }

    .hero-anim-ring--2 {
        width: 260px;
        height: 260px;
    }

    .hero-anim-node--mail     { top: 2%;  right: 6%; }
    .hero-anim-node--sign     { top: 60%; left: -12%; }
    .hero-anim-node--transfer { bottom: 2%; right: 6%; }

    .hero-anim-node-icon .shield-stack {
        font-size: 1.4rem;
    }

    .hp-hero h1 {
        font-size: 3.8rem;
    }

    .hp-hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .hp-hero-stat {
        border-right: none;
        padding: 0 24px;
    }

    .hp-solutions-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hp-solutions-grid .hp-solution-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .hp-cap-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-howto-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .hp-howto-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .hp-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-certs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-cta-grid {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
    .hp-hero {
        padding: 70px 0 60px;
    }

    .hero-anim {
        width: 400px;
        height: 400px;
    }

    .hp-hero-truck {
        max-height: 230px;
    }

    .hero-anim-node--mail     { top: 1%;  right: 4%; }
    .hero-anim-node--sign     { top: 62%; left: -10%; }
    .hero-anim-node--transfer { bottom: 1%; right: 4%; }

    .hero-anim-node-icon .shield-stack {
        font-size: 1.2rem;
    }

    .hero-anim-node-label {
        font-size: 0.55rem;
    }

    .hero-anim-ring {
        width: 290px;
        height: 290px;
    }

    .hero-anim-ring--2 {
        width: 210px;
        height: 210px;
    }

    .hp-hero h1 {
        font-size: 2.8rem;
    }

    .hp-hero-sub {
        font-size: 1rem;
    }

    .hp-hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .hp-hero-stat {
        border-right: none;
        padding: 0 16px;
    }

    .hp-solutions-grid {
        grid-template-columns: 1fr;
    }

    .hp-solutions-grid .hp-solution-card:last-child {
        max-width: 100%;
    }

    .hp-howto-content h2 {
        font-size: 2rem;
    }

    .hp-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .hp-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .hp-logos-grid {
        gap: 20px;
    }

    .hp-section-title h2 {
        font-size: 2rem;
    }

    .hp-cta-text h2 {
        font-size: 1.6rem;
    }

    .hp-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
    .hp-hero {
        padding: 56px 0 48px;
    }

    .hero-anim {
        width: 320px;
        height: 320px;
    }

    .hp-hero-truck {
        max-height: 175px;
    }

    .hero-anim-node--mail     { top: 0; right: 3%; }
    .hero-anim-node--sign     { top: 58%; left: -15%; }
    .hero-anim-node--transfer { bottom: 0; right: 3%; }

    .hero-anim-node-icon .shield-stack {
        font-size: 1rem;
    }

    .hero-anim-node-label {
        font-size: 0.45rem;
    }

    .hero-anim-ring {
        width: 240px;
        height: 240px;
    }

    .hero-anim-ring--2 {
        width: 160px;
        height: 160px;
    }

    .hp-hero h1 {
        font-size: 1.75rem;
    }

    .hp-hero-sub {
        font-size: 0.9rem;
    }

    .hero-anim,
    .hero-anim canvas {
        width: 260px;
        height: 260px;
    }

    .hp-section-title h2 {
        font-size: 1.5rem;
    }

    .hp-solutions-grid {
        gap: 20px;
    }

    .hp-logo-item img {
        max-width: 100px;
    }
}

/* ============================================
   RESPONSIVE — 767.98px (TABLET)
   ============================================ */
@media (max-width: 767.98px) {
    .hp-hero-grid {
        grid-template-columns: 1fr;
    }

    .hp-hero-text {
        text-align: center;
    }

    .hp-hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hp-hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .hp-hero-visual {
        max-width: 300px;
        margin: 0 auto;
    }

    .hp-solutions-grid {
        grid-template-columns: 1fr;
    }

    .hp-cap-grid {
        grid-template-columns: 1fr;
    }

    .hp-howto-grid {
        grid-template-columns: 1fr;
    }

    .hp-howto-visual {
        max-width: 100%;
    }

    .hp-logos-grid {
        gap: 15px;
    }

    .hp-logo-item img {
        max-width: 120px;
    }

    .hp-certs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hp-cert {
        padding: 18px 16px;
        gap: 14px;
    }

    .hp-cert-logo {
        width: 48px;
        height: 48px;
    }

    .hp-cert-name {
        font-size: 1rem;
    }

    .hp-cert p {
        font-size: 0.85rem;
    }

    .hp-certs-footer {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}