/* ══════════════════════════════════════════════════════════
   PUBLIC PAGES — ComplianceDesk
   ══════════════════════════════════════════════════════════ */

/* ── NAVBAR ─────────────────────────────────────────────── */
.pub-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.35s ease;
    background: transparent;
}

.pub-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}

.pub-navbar.scrolled .pub-logo,
.pub-navbar.scrolled .pub-logo:hover { color: #0C1526; }
.pub-navbar.scrolled .pub-logo-text { color: #0C1526; }
.pub-navbar.scrolled .pub-nav-link { color: #3A4A6A; }
.pub-navbar.scrolled .pub-nav-link:hover,
.pub-navbar.scrolled .pub-nav-link.active { color: #00C9A7; background: rgba(0, 201, 167, 0.06); }
.pub-navbar.scrolled .pub-lang-btn { color: #3A4A6A; border-color: #E0E7F0; }
.pub-navbar.scrolled .pub-lang-btn:hover { color: #00C9A7; border-color: #00C9A7; }
.pub-navbar.scrolled .pub-btn-outline { color: #0C1526; border-color: #E0E7F0; }
.pub-navbar.scrolled .pub-btn-outline:hover { color: #00C9A7; border-color: #00C9A7; }
.pub-navbar.scrolled .pub-mobile-toggle { color: #0C1526; border-color: #E0E7F0; }

.pub-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pub-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}

.pub-logo:hover { opacity: 1; color: #fff; }

.pub-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00C9A7, #00A389);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.pub-logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    transition: color 0.35s ease;
}

.pub-logo-text span {
    color: #00C9A7;
}

.pub-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pub-nav-link {
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.pub-nav-link:hover,
.pub-nav-link.active {
    color: #00C9A7;
    background: rgba(0, 201, 167, 0.1);
}

.pub-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ── LANGUAGE SWITCHER ───────────────────────────────────── */
.pub-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pub-lang-btn:hover {
    border-color: #00C9A7;
    color: #00C9A7;
}

.pub-lang-btn i:first-child { font-size: 15px; }

.pub-lang-dropdown {
    background: #fff;
    border: 1px solid #E8EDF5;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    padding: 6px;
    min-width: 160px;
}

.pub-lang-dropdown .dropdown-item {
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 14px;
    color: #3A4A6A;
    font-weight: 500;
}

.pub-lang-dropdown .dropdown-item:hover {
    background: rgba(0, 201, 167, 0.06);
    color: #00C9A7;
}

.pub-lang-dropdown .dropdown-item.active {
    background: rgba(0, 201, 167, 0.1);
    color: #00C9A7;
    font-weight: 600;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.pub-btn {
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pub-btn-primary {
    background: linear-gradient(135deg, #00C9A7, #00A389);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 201, 167, 0.3);
}

.pub-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 201, 167, 0.4);
    color: #fff;
    opacity: 1;
}

.pub-btn-outline {
    background: transparent;
    color: #0C1526;
    border: 1.5px solid #E0E7F0;
}

.pub-navbar .pub-btn-outline {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.3);
}

.pub-btn-outline:hover {
    border-color: #00C9A7;
    color: #00C9A7;
    background: rgba(0, 201, 167, 0.04);
    opacity: 1;
}

.pub-btn-lg {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 14px;
}

.pub-btn-white {
    background: #fff;
    color: #00C9A7;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pub-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    color: #00A389;
    opacity: 1;
}

.pub-btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.pub-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    opacity: 1;
}

/* ── MOBILE MENU ────────────────────────────────────────── */
.pub-mobile-toggle {
    background: none;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pub-mobile-menu {
    display: none;
    padding: 16px 0;
    background: #fff;
    border-top: 1px solid #E0E7F0;
}

.pub-mobile-menu.open { display: block; }

.pub-mobile-link {
    display: block;
    padding: 12px 0;
    color: #3A4A6A;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #f0f3f9;
}

.pub-mobile-link:hover { color: #00C9A7; }

/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════ */
.pub-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('/images/hero-compliance.jpg') center center / cover no-repeat;
    padding-top: 80px;
}

.pub-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(10, 22, 40, 0.92) 0%, rgba(13, 33, 55, 0.88) 40%, rgba(15, 43, 74, 0.85) 70%, rgba(10, 61, 92, 0.88) 100%);
    pointer-events: none;
}

.pub-hero-grid {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 201, 167, 0.10) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(59, 107, 245, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.pub-hero-content {
    position: relative;
    z-index: 2;
}

.pub-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 201, 167, 0.1);
    border: 1px solid rgba(0, 201, 167, 0.25);
    border-radius: 50px;
    color: #00C9A7;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

.pub-hero-badge i { font-size: 16px; }

.pub-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 24px;
    max-width: 650px;
}

.pub-hero-title .highlight {
    background: linear-gradient(135deg, #00C9A7, #00E6BE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pub-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 40px;
}

.pub-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.pub-hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.pub-hero-stat {
    text-align: left;
}

.pub-hero-stat-num {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #00C9A7;
    line-height: 1;
}

.pub-hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 6px;
}

.pub-hero-image {
    position: relative;
    z-index: 2;
}

.pub-hero-image img {
    width: 100%;
    max-width: 580px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.pub-hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: floatCard 6s ease-in-out infinite;
}

.pub-hero-float-card.card-1 {
    bottom: 15%;
    left: -30px;
}

.pub-hero-float-card.card-2 {
    top: 20%;
    right: -20px;
    animation-delay: -3s;
}

.pub-float-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.pub-float-icon.green { background: rgba(0, 201, 167, 0.1); color: #00C9A7; }
.pub-float-icon.blue  { background: rgba(59, 107, 245, 0.1); color: #3B6BF5; }

.pub-float-title {
    font-size: 14px;
    font-weight: 700;
    color: #0C1526;
}

.pub-float-sub {
    font-size: 12px;
    color: #5A6A8A;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ══════════════════════════════════════════════════════════
   SECTION COMMON
   ══════════════════════════════════════════════════════════ */
.pub-section {
    padding: 100px 0;
}

.pub-section-dark {
    background: #0a1628;
    color: #fff;
}

.pub-section-gray {
    background: #f6f8fc;
}

.pub-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #00C9A7;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.pub-section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #0C1526;
    line-height: 1.2;
    margin-bottom: 16px;
}

.pub-section-dark .pub-section-title { color: #fff; }

.pub-section-sub {
    font-size: 17px;
    color: #5A6A8A;
    max-width: 600px;
    line-height: 1.7;
}

.pub-section-dark .pub-section-sub { color: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════════════════════════
   SERVICES / WHAT WE DO
   ══════════════════════════════════════════════════════════ */
.pub-service-card {
    background: #fff;
    border: 1px solid #E8EDF5;
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pub-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00C9A7, #3B6BF5);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.pub-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 201, 167, 0.1);
    border-color: rgba(0, 201, 167, 0.2);
}

.pub-service-card:hover::before { opacity: 1; }

.pub-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.pub-service-icon.green  { background: rgba(0, 201, 167, 0.08); color: #00C9A7; }
.pub-service-icon.blue   { background: rgba(59, 107, 245, 0.08); color: #3B6BF5; }
.pub-service-icon.purple { background: rgba(168, 85, 247, 0.08); color: #A855F7; }
.pub-service-icon.amber  { background: rgba(255, 176, 32, 0.08); color: #FFB020; }

.pub-service-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0C1526;
    margin-bottom: 12px;
}

.pub-service-desc {
    font-size: 15px;
    color: #5A6A8A;
    line-height: 1.7;
    margin-bottom: 20px;
}

.pub-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pub-service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: #3A4A6A;
}

.pub-service-features li i {
    color: #00C9A7;
    font-size: 16px;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════ */
.pub-step {
    text-align: center;
    position: relative;
}

.pub-step-num {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #00C9A7, #00A389);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(0, 201, 167, 0.25);
}

.pub-step-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0C1526;
    margin-bottom: 8px;
}

.pub-step-desc {
    font-size: 14.5px;
    color: #5A6A8A;
    line-height: 1.7;
}

.pub-step-connector {
    position: absolute;
    top: 28px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 2px;
    background: repeating-linear-gradient(90deg, #00C9A7 0, #00C9A7 8px, transparent 8px, transparent 16px);
    opacity: 0.3;
}

/* ══════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════ */
.pub-pricing-card {
    background: #fff;
    border: 1.5px solid #E8EDF5;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
}

.pub-pricing-card.featured {
    border-color: #00C9A7;
    box-shadow: 0 20px 50px rgba(0, 201, 167, 0.12);
    transform: scale(1.03);
}

.pub-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.pub-pricing-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.pub-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00C9A7, #00A389);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pub-pricing-name {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0C1526;
    margin-bottom: 8px;
}

.pub-pricing-desc {
    font-size: 14px;
    color: #5A6A8A;
    margin-bottom: 24px;
}

.pub-pricing-amount {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #0C1526;
    line-height: 1;
    margin-bottom: 4px;
}

.pub-pricing-amount .currency {
    font-size: 24px;
    vertical-align: super;
    color: #5A6A8A;
}

.pub-pricing-period {
    font-size: 14px;
    color: #5A6A8A;
    margin-bottom: 28px;
}

.pub-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.pub-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14.5px;
    color: #3A4A6A;
    border-bottom: 1px solid #f0f3f9;
}

.pub-pricing-features li:last-child { border-bottom: none; }

.pub-pricing-features li i {
    color: #00C9A7;
    font-size: 16px;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIAL / CTA BANNER
   ══════════════════════════════════════════════════════════ */
.pub-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1628, #0d2137);
    overflow: hidden;
    text-align: center;
}

.pub-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0, 201, 167, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pub-cta-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}

.pub-cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;
    margin: 0 auto 36px;
    line-height: 1.7;
    position: relative;
}

.pub-cta-actions {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   TRUST STRIP
   ══════════════════════════════════════════════════════════ */
.pub-trust-strip {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #E8EDF5;
}

.pub-trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.pub-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #5A6A8A;
    font-size: 15px;
    font-weight: 500;
}

.pub-trust-item i {
    font-size: 22px;
    color: #00C9A7;
}

/* ══════════════════════════════════════════════════════════
   MARKETPLACE LOGOS
   ══════════════════════════════════════════════════════════ */
.pub-marketplace-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.pub-marketplace-item {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 800;
    opacity: 0.2;
    color: #fff;
    transition: opacity 0.3s ease;
}

.pub-marketplace-item:hover { opacity: 0.5; }

/* ══════════════════════════════════════════════════════════
   FAQ PAGE
   ══════════════════════════════════════════════════════════ */
.pub-page-hero {
    padding: 160px 0 80px;
    background: url('/images/hero-compliance.jpg') center center / cover no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pub-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(10, 22, 40, 0.93) 0%, rgba(13, 33, 55, 0.90) 50%, rgba(15, 43, 74, 0.88) 100%);
    pointer-events: none;
}

.pub-page-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
}

.pub-page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
}

.pub-faq-item {
    background: #fff;
    border: 1px solid #E8EDF5;
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pub-faq-item:hover {
    border-color: rgba(0, 201, 167, 0.3);
}

.pub-faq-question {
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 16px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #0C1526;
    font-family: 'DM Sans', sans-serif;
}

.pub-faq-question i {
    font-size: 18px;
    color: #00C9A7;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.pub-faq-item.open .pub-faq-question i {
    transform: rotate(45deg);
}

.pub-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.pub-faq-answer-inner {
    padding: 0 28px 22px;
    font-size: 15px;
    color: #5A6A8A;
    line-height: 1.8;
}

.pub-faq-item.open .pub-faq-answer {
    max-height: 500px;
}

/* ══════════════════════════════════════════════════════════
   BLOG PAGE
   ══════════════════════════════════════════════════════════ */
.pub-blog-card {
    background: #fff;
    border: 1px solid #E8EDF5;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
}

.pub-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.pub-blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #0a1628, #0d2137);
}

.pub-blog-body {
    padding: 28px;
}

.pub-blog-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(0, 201, 167, 0.08);
    color: #00C9A7;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.pub-blog-title {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #0C1526;
    margin-bottom: 10px;
    line-height: 1.4;
}

.pub-blog-excerpt {
    font-size: 14.5px;
    color: #5A6A8A;
    line-height: 1.7;
    margin-bottom: 20px;
}

.pub-blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: #8A95AA;
}

.pub-blog-meta i { color: #00C9A7; }

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════ */
.pub-contact-card {
    background: #fff;
    border: 1px solid #E8EDF5;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.35s ease;
    height: 100%;
}

.pub-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.pub-contact-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.pub-contact-icon.whatsapp { background: rgba(37, 211, 102, 0.1); color: #25D366; }
.pub-contact-icon.email    { background: rgba(59, 107, 245, 0.1); color: #3B6BF5; }
.pub-contact-icon.location { background: rgba(255, 176, 32, 0.1); color: #FFB020; }

.pub-contact-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0C1526;
    margin-bottom: 8px;
}

.pub-contact-desc {
    font-size: 15px;
    color: #5A6A8A;
    line-height: 1.7;
    margin-bottom: 20px;
}

.pub-qr-wrapper {
    background: #fff;
    border: 1px solid #E8EDF5;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.pub-qr-wrapper img {
    max-width: 200px;
    border-radius: 12px;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.pub-footer {
    background: #0a1628;
    padding: 64px 0 0;
    color: rgba(255, 255, 255, 0.55);
}

.pub-footer .pub-logo-text { color: #fff; }

.pub-footer-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    max-width: 320px;
}

.pub-footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pub-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pub-footer-links li {
    margin-bottom: 10px;
}

.pub-footer-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14.5px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.pub-footer-links a:hover {
    color: #00C9A7;
    opacity: 1;
}

.pub-footer-contact .pub-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.pub-footer-contact .pub-contact-item i {
    color: #00C9A7;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.pub-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.pub-social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.pub-social-link:hover {
    background: #00C9A7;
    color: #fff;
    opacity: 1;
}

.pub-footer-bottom {
    margin-top: 48px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.3);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .pub-hero { padding-top: 100px; min-height: auto; padding-bottom: 60px; }
    .pub-hero-image { margin-top: 50px; text-align: center; }
    .pub-hero-float-card { display: none; }
    .pub-hero-stats { gap: 32px; }
    .pub-section { padding: 70px 0; }
    .pub-pricing-card.featured { transform: none; }
    .pub-pricing-card.featured:hover { transform: translateY(-6px); }
}

@media (max-width: 575px) {
    .pub-hero-title { font-size: 30px; }
    .pub-hero-desc { font-size: 16px; }
    .pub-hero-stats { gap: 24px; }
    .pub-hero-stat-num { font-size: 28px; }
    .pub-section { padding: 50px 0; }
    .pub-trust-items { gap: 24px; }
    .pub-step-connector { display: none; }
}
