/* ============================================================
   Publisher Tool Hub — Homepage Styles
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --pth-indigo: #4f46e5;
    --pth-indigo-dark: #3730a3;
    --pth-indigo-light: #eef2ff;
    --pth-indigo-border: #c7d2fe;
    --pth-violet: #7c3aed;
    --pth-slate-900: #0f172a;
    --pth-slate-800: #1e293b;
    --pth-slate-700: #334155;
    --pth-slate-600: #475569;
    --pth-slate-500: #64748b;
    --pth-slate-400: #94a3b8;
    --pth-slate-200: #e2e8f0;
    --pth-slate-100: #f1f5f9;
    --pth-slate-50: #f8fafc;
    --pth-white: #ffffff;
    --pth-emerald: #10b981;
    --pth-amber: #f59e0b;
    --pth-rose: #f43f5e;
    --pth-cyan: #06b6d4;
    --pth-font: 'Inter', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --pth-radius: 16px;
    --pth-radius-sm: 10px;
    --pth-shadow: 0 4px 24px rgba(0,0,0,0.08);
    --pth-shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --pth-shadow-glow: 0 0 40px rgba(79, 70, 229, 0.15);
}

/* ---------- Homepage Root ---------- */
#view-homepage {
    font-family: var(--pth-font);
    color: var(--pth-slate-700);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    min-height: 100vh;
    height: auto;
}

/* ---------- Sticky Navigation ---------- */
.pth-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s ease;
    padding: 0 24px;
}

.pth-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.pth-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.pth-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

.pth-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--pth-indigo), var(--pth-violet));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 2px 10px rgba(79, 70, 229, 0.3);
}

.pth-logo-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--pth-slate-900);
    letter-spacing: -0.3px;
}

.pth-logo-text span {
    color: var(--pth-indigo);
}

.pth-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pth-nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--pth-slate-600);
    transition: color 0.2s;
    position: relative;
}

.pth-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pth-indigo);
    border-radius: 2px;
    transition: width 0.25s ease;
}

.pth-nav-links a:hover {
    color: var(--pth-indigo);
}

.pth-nav-links a:hover::after {
    width: 100%;
}

.pth-nav-cta {
    background: linear-gradient(135deg, var(--pth-indigo), var(--pth-violet));
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 3px 14px rgba(79, 70, 229, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pth-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.pth-hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--pth-slate-700);
    cursor: pointer;
    padding: 4px;
}

/* ---------- Hero Section ---------- */
.pth-hero {
    position: relative;
    padding: 140px 24px 80px;
    background: linear-gradient(160deg, #0f0c29 0%, #1a1145 30%, #302b63 60%, #24243e 100%);
    text-align: center;
    overflow: hidden;
}

.pth-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.pth-hero-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pth-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 7px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.pth-hero-badge i {
    color: var(--pth-emerald);
}

.pth-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 22px;
    letter-spacing: -0.5px;
}

.pth-hero h1 .highlight {
    background: linear-gradient(135deg, #818cf8, #a78bfa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pth-hero-subtitle {
    font-size: clamp(16px, 2.2vw, 19px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    max-width: 680px;
    margin: 0 auto 36px;
    font-weight: 400;
}

.pth-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.pth-btn-primary {
    background: linear-gradient(135deg, var(--pth-indigo), var(--pth-violet));
    color: #fff;
    padding: 15px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pth-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.5);
}

.pth-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.pth-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
}

.pth-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.pth-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
}

.pth-trust-item i {
    color: var(--pth-emerald);
    font-size: 14px;
}

/* ---------- Section Shared ---------- */
.pth-section {
    padding: 80px 24px;
}

.pth-section-light {
    background: var(--pth-white);
}

.pth-section-alt {
    background: var(--pth-slate-50);
}

.pth-section-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.pth-section-header {
    text-align: center;
    margin-bottom: 52px;
}

.pth-section-header h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--pth-slate-900);
    margin: 0 0 14px;
    letter-spacing: -0.3px;
}

.pth-section-header p {
    font-size: 17px;
    color: var(--pth-slate-500);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---------- Tools Showcase ---------- */
.pth-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.pth-tool-card {
    background: var(--pth-white);
    border: 1px solid var(--pth-slate-200);
    border-radius: var(--pth-radius);
    padding: 32px 28px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pth-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pth-indigo), var(--pth-violet));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pth-tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pth-shadow-lg);
    border-color: var(--pth-indigo-border);
}

.pth-tool-card:hover::before {
    opacity: 1;
}

.pth-tool-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.pth-tool-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--pth-slate-900);
    margin: 0 0 10px;
}

.pth-tool-card .pth-tool-desc {
    font-size: 14px;
    color: var(--pth-slate-600);
    line-height: 1.6;
    margin: 0 0 16px;
}

.pth-tool-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.pth-tool-features li {
    font-size: 13px;
    color: var(--pth-slate-600);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pth-tool-features li i {
    color: var(--pth-emerald);
    font-size: 12px;
    flex-shrink: 0;
}

.pth-tool-launch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.pth-tool-launch:hover {
    transform: translateX(3px);
}

/* Tool card icon & button color variants */
.pth-tool-card[data-tool="wordsearch"] .pth-tool-icon { background: #eef2ff; color: #4f46e5; }
.pth-tool-card[data-tool="wordsearch"] .pth-tool-launch { background: #eef2ff; color: #4f46e5; }
.pth-tool-card[data-tool="numbersearch"] .pth-tool-icon { background: #ecfdf5; color: #059669; }
.pth-tool-card[data-tool="numbersearch"] .pth-tool-launch { background: #ecfdf5; color: #059669; }
.pth-tool-card[data-tool="wordscramble"] .pth-tool-icon { background: #fef3c7; color: #d97706; }
.pth-tool-card[data-tool="wordscramble"] .pth-tool-launch { background: #fef3c7; color: #d97706; }
.pth-tool-card[data-tool="cryptogram"] .pth-tool-icon { background: #fce7f3; color: #db2777; }
.pth-tool-card[data-tool="cryptogram"] .pth-tool-launch { background: #fce7f3; color: #db2777; }
.pth-tool-card[data-tool="bingo"] .pth-tool-icon { background: #ecfeff; color: #0891b2; }
.pth-tool-card[data-tool="bingo"] .pth-tool-launch { background: #ecfeff; color: #0891b2; }
.pth-tool-card[data-tool="sudoku"] .pth-tool-icon { background: #eff6ff; color: #2563eb; }
.pth-tool-card[data-tool="sudoku"] .pth-tool-launch { background: #eff6ff; color: #2563eb; }
.pth-tool-card[data-tool="maze"] .pth-tool-icon { background: #ecfdf5; color: #059669; }
.pth-tool-card[data-tool="maze"] .pth-tool-launch { background: #ecfdf5; color: #059669; }
.pth-tool-card[data-tool="crossword"] .pth-tool-icon { background: #f5f3ff; color: #7c3aed; }
.pth-tool-card[data-tool="crossword"] .pth-tool-launch { background: #f5f3ff; color: #7c3aed; }

.pth-tool-card[data-tool="wordsearch"]:hover .pth-tool-launch { background: #4f46e5; color: #ffffff; }
.pth-tool-card[data-tool="numbersearch"]:hover .pth-tool-launch { background: #059669; color: #ffffff; }
.pth-tool-card[data-tool="wordscramble"]:hover .pth-tool-launch { background: #d97706; color: #ffffff; }
.pth-tool-card[data-tool="cryptogram"]:hover .pth-tool-launch { background: #db2777; color: #ffffff; }
.pth-tool-card[data-tool="bingo"]:hover .pth-tool-launch { background: #0891b2; color: #ffffff; }
.pth-tool-card[data-tool="sudoku"]:hover .pth-tool-launch { background: #2563eb; color: #ffffff; }
.pth-tool-card[data-tool="maze"]:hover .pth-tool-launch { background: #059669; color: #ffffff; }
.pth-tool-card[data-tool="crossword"]:hover .pth-tool-launch { background: #7c3aed; color: #ffffff; }

/* ---------- Features Grid ---------- */
.pth-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.pth-feature-card {
    background: var(--pth-white);
    border: 1px solid var(--pth-slate-200);
    border-radius: var(--pth-radius);
    padding: 28px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pth-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--pth-shadow);
}

.pth-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--pth-indigo-light);
    color: var(--pth-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.pth-feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--pth-slate-900);
    margin: 0 0 8px;
}

.pth-feature-card p {
    font-size: 14px;
    color: var(--pth-slate-500);
    margin: 0;
    line-height: 1.55;
}

/* ---------- How It Works ---------- */
.pth-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.pth-steps::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--pth-indigo-border), var(--pth-indigo), var(--pth-indigo-border));
    z-index: 0;
}

.pth-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.pth-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pth-indigo), var(--pth-violet));
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
}

.pth-step-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: var(--pth-indigo-light);
    color: var(--pth-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
}

.pth-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--pth-slate-900);
    margin: 0 0 8px;
}

.pth-step p {
    font-size: 14px;
    color: var(--pth-slate-500);
    margin: 0;
    line-height: 1.55;
}

/* ---------- Audience / Use Cases ---------- */
.pth-audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.pth-audience-card {
    background: var(--pth-white);
    border: 1px solid var(--pth-slate-200);
    border-radius: var(--pth-radius);
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pth-audience-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--pth-shadow);
}

.pth-audience-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--pth-indigo-light);
    color: var(--pth-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.pth-audience-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--pth-slate-900);
    margin: 0 0 8px;
}

.pth-audience-card p {
    font-size: 14px;
    color: var(--pth-slate-500);
    margin: 0;
    line-height: 1.5;
}

/* ---------- FAQ ---------- */
.pth-faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pth-faq-item {
    background: var(--pth-white);
    border: 1px solid var(--pth-slate-200);
    border-radius: var(--pth-radius-sm);
    overflow: hidden;
    transition: border-color 0.2s;
}

.pth-faq-item[open] {
    border-color: var(--pth-indigo-border);
    box-shadow: 0 2px 12px rgba(79, 70, 229, 0.06);
}

.pth-faq-item summary {
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 700;
    color: var(--pth-slate-900);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.2s;
    user-select: none;
}

.pth-faq-item summary::-webkit-details-marker {
    display: none;
}

.pth-faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--pth-slate-400);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.pth-faq-item[open] summary::after {
    transform: rotate(180deg);
    color: var(--pth-indigo);
}

.pth-faq-item summary:hover {
    color: var(--pth-indigo);
}

.pth-faq-answer {
    padding: 0 22px 20px;
    font-size: 14px;
    color: var(--pth-slate-600);
    line-height: 1.7;
}

/* ---------- Footer ---------- */
.pth-footer {
    background: var(--pth-slate-900);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 24px 30px;
}

.pth-footer-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.pth-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.pth-footer-brand .pth-logo-text {
    color: #fff;
    font-size: 20px;
    margin-bottom: 12px;
}

.pth-footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    max-width: 320px;
}

.pth-footer h4 {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 16px;
}

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

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

.pth-footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.pth-footer-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.pth-footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 0 20px;
}

.pth-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ---------- Scroll Reveal Animations ---------- */
.pth-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Staggered children */
.pth-reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.pth-reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.pth-reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.pth-reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.10s; }
.pth-reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.pth-reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.20s; }
.pth-reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.pth-reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.30s; }
.pth-reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.35s; }
.pth-reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.40s; }
.pth-reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.45s; }
.pth-reveal-stagger.visible > *:nth-child(10) { transition-delay: 0.50s; }
.pth-reveal-stagger.visible > *:nth-child(11) { transition-delay: 0.55s; }
.pth-reveal-stagger.visible > *:nth-child(12) { transition-delay: 0.60s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .pth-steps {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .pth-steps::before {
        display: none;
    }
    .pth-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .pth-nav-links,
    .pth-nav-cta {
        display: none;
    }
    .pth-hamburger {
        display: block;
    }
    /* Mobile menu */
    .pth-nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--pth-white);
        border-bottom: 1px solid var(--pth-slate-200);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        padding: 16px 24px;
        gap: 16px;
    }
    .pth-nav-cta.mobile-open {
        display: inline-flex;
        position: absolute;
        top: calc(64px + 180px);
        left: 24px;
        right: 24px;
        justify-content: center;
    }
    .pth-hero {
        padding: 120px 20px 60px;
    }
    .pth-hero-actions {
        flex-direction: column;
    }
    .pth-trust-row {
        gap: 14px;
    }
    .pth-tools-grid {
        grid-template-columns: 1fr;
    }
    .pth-features-grid {
        grid-template-columns: 1fr;
    }
    .pth-section {
        padding: 56px 16px;
    }
    .pth-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pth-hero h1 {
        font-size: 28px;
    }
    .pth-hero-subtitle {
        font-size: 15px;
    }
    .pth-section-header h2 {
        font-size: 24px;
    }
    .pth-trust-item {
        font-size: 12px;
    }
}
