@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --pg-primary: #22d3ee;
    --pg-secondary: #06b6d4;
    --pg-accent: #2563eb;
    --pg-surface: rgba(255,255,255,0.05);
    --pg-background: #0a0b10;
    --pg-text-color: #e2e8f0; /* cool gray-200 */
    --pg-text-muted: #94a3b8; /* cool gray-400 */
    --pg-heading-color: #f8fafc; /* cool gray-50 */
    --pg-border-color: rgba(255,255,255,0.08);
    --pg-card-bg: rgba(255,255,255,0.04);
    --pg-card-border: rgba(255,255,255,0.08);
    --pg-border-radius-card: 8px;
    --pg-border-radius-button: 8px;

    --pg-space-xs: 8px;
    --pg-space-sm: 16px;
    --pg-space-md: 24px;
    --pg-space-lg: 32px;
    --pg-space-xl: 48px;
    --pg-space-2xl: 64px;
    --pg-space-3xl: 96px;
    --pg-space-4xl: 128px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--pg-text-color);
    background-color: var(--pg-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--pg-primary);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}
a:hover {
    color: var(--pg-secondary);
    transform: translateY(-2px);
}

strong {
    font-weight: 600;
}

/* Selection styles */
::selection {
    background-color: var(--pg-primary);
    color: var(--pg-background);
}

/* Typography Scale */
h1, .pg-h1 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    color: var(--pg-heading-color);
    letter-spacing: -0.02em;
    line-height: 1.05;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2, .pg-h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    color: var(--pg-heading-color);
    letter-spacing: -0.015em;
    line-height: 1.15;
    font-size: clamp(2rem, 3.5vw, 3rem);
}

h3, .pg-h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    color: var(--pg-heading-color);
    letter-spacing: -0.01em;
    font-size: 1.875rem; /* 30px */
}

p {
    margin-bottom: var(--pg-space-sm);
    font-size: 1.125rem; /* 18px */
    line-height: 1.75;
    color: var(--pg-text-muted);
}

.pg-subheading {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--pg-primary);
    margin-bottom: var(--pg-space-sm);
}

ul {
    list-style: none;
}

/* Utility Classes */
.pg-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--pg-space-md);
    padding-right: var(--pg-space-md);
}

.pg-section {
    padding-top: var(--pg-space-3xl);
    padding-bottom: var(--pg-space-3xl);
    position: relative;
}
.pg-section-alt {
    background-color: var(--pg-card-bg);
    padding-top: var(--pg-space-3xl);
    padding-bottom: var(--pg-space-3xl);
    position: relative;
}

.pg-grid {
    display: grid;
    gap: var(--pg-space-lg);
}
.pg-grid-2 {
    grid-template-columns: repeat(1, 1fr);
}
.pg-grid-3 {
    grid-template-columns: repeat(1, 1fr);
}
.pg-grid-4 {
    grid-template-columns: repeat(1, 1fr);
}

.pg-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--pg-space-md);
}

.pg-text-center {
    text-align: center;
}

/* Navigation */
.pg-header {
    background-color: var(--pg-background);
    padding: var(--pg-space-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--pg-border-color);
}

.pg-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pg-logo {
    font-family: 'Archivo', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--pg-heading-color);
    text-decoration: none;
}

.pg-nav-list {
    display: none;
    gap: var(--pg-space-lg);
}

.pg-nav-item {
    position: relative;
}

.pg-nav-link {
    color: var(--pg-text-muted);
    font-weight: 500;
    font-size: 1.0625rem;
    padding: var(--pg-space-xs) var(--pg-space-sm);
    border-radius: var(--pg-border-radius-button);
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}
.pg-nav-link:hover {
    color: var(--pg-primary);
    background-color: rgba(34, 211, 238, 0.1);
    transform: translateY(-2px);
}

.pg-mobile-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--pg-primary);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

.pg-nav-list.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--pg-background);
    border-top: 1px solid var(--pg-border-color);
    padding: var(--pg-space-md) 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: slideDown 0.3s ease-out;
}
.pg-nav-list.active .pg-nav-item {
    text-align: center;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.pg-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    padding: var(--pg-space-4xl) 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.pg-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    z-index: 1;
}

.pg-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--pg-heading-color);
}

.pg-hero-text {
    margin-bottom: var(--pg-space-lg);
    max-width: 65ch;
}

.pg-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--pg-text-muted);
    margin-top: var(--pg-space-sm);
    margin-bottom: var(--pg-space-xl);
}

/* Buttons */
.pg-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--pg-space-sm) var(--pg-space-lg);
    border-radius: var(--pg-border-radius-button);
    font-weight: 600;
    font-size: 1.0625rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-decoration: none;
}

.pg-button-primary {
    background-color: var(--pg-primary);
    color: var(--pg-background);
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.4);
}
.pg-button-primary:hover {
    background-color: var(--pg-secondary);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.6);
    transform: translateY(-2px);
}

.pg-button-secondary {
    background-color: var(--pg-accent);
    color: var(--pg-heading-color);
}
.pg-button-secondary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);color:#fadad1}

.pg-button-outline {
    background-color: transparent;
    border-color: var(--pg-primary);
    color: var(--pg-primary);
}
.pg-button-outline:hover {
    background-color: rgba(34, 211, 238, 0.1);
    color: var(--pg-secondary);
    transform: translateY(-2px);
}

.pg-link {
    color: var(--pg-primary);
    text-decoration: underline;
    font-weight: 500;
}
.pg-link:hover {
    color: var(--pg-secondary);
    text-decoration: none;
}

/* Cards */
.pg-card, .pg-card-feature, .pg-card-service, .pg-card-process {
    background-color: var(--pg-card-bg);
    border: 1px solid var(--pg-card-border);
    border-radius: var(--pg-border-radius-card);
    padding: var(--pg-space-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.pg-card:hover, .pg-card-feature:hover, .pg-card-service:hover, .pg-card-process:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.08);
}

/* Icons */
.pg-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: all 0.3s ease;
}
.pg-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--pg-space-xl);
    height: var(--pg-space-xl);
    background-color: rgba(34, 211, 238, 0.15);
    border-radius: var(--pg-border-radius-card);
    margin-bottom: var(--pg-space-md);
}
.pg-icon-wrapper .pg-icon {
    width: 32px;
    height: 32px;
    color: var(--pg-primary);
}
.pg-icon-large {
    width: var(--pg-space-xl);
    height: var(--pg-space-xl);
    color: var(--pg-primary);
    margin-bottom: var(--pg-space-md);
}

.pg-check-list {
    list-style: none;
    padding: 0;
}
.pg-check-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--pg-space-xs);
    font-size: 1.0625rem;
    color: var(--pg-text-color);
}
.pg-check-item .pg-icon {
    color: var(--pg-primary);
    width: 20px;
    height: 20px;
    margin-right: var(--pg-space-xs);
    flex-shrink: 0;
}

/* Editorial Elements */
.pg-pullquote {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-style: italic;
    color: var(--pg-heading-color);
    text-align: center;
    margin: var(--pg-space-3xl) auto;
    max-width: 800px;
    position: relative;
    line-height: 1.3;
}
.pg-pullquote::before {
    content: '“';
    font-size: 8rem;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--pg-primary);
    opacity: 0.1;
    line-height: 1;
    z-index: 0;
}

.pg-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--pg-space-lg);
    margin-top: var(--pg-space-xl);
}

.pg-stat-item {
    text-align: center;
    background-color: var(--pg-card-bg);
    border: 1px solid var(--pg-card-border);
    border-radius: var(--pg-border-radius-card);
    padding: var(--pg-space-lg);
}

.pg-stat-number {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--pg-primary);
    line-height: 1;
    margin-bottom: var(--pg-space-xs);
}

.pg-stat-label {
    font-size: 1rem;
    color: var(--pg-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Testimonials */
.pg-testimonial-grid {
    display: grid;
    gap: var(--pg-space-lg);
    grid-template-columns: repeat(1, 1fr);
}

.pg-testimonial-card {
    background-color: var(--pg-card-bg);
    border: 1px solid var(--pg-card-border);
    border-radius: var(--pg-border-radius-card);
    padding: var(--pg-space-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.pg-testimonial-stars {
    color: var(--pg-primary);
    margin-bottom: var(--pg-space-sm);
    display: flex;
    gap: 4px;
}
.pg-testimonial-stars .pg-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: none;
}

.pg-testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--pg-text-color);
    margin-bottom: var(--pg-space-md);
    flex-grow: 1;
}

.pg-testimonial-cite {
    display: flex;
    align-items: center;
    margin-top: var(--pg-space-md);
}
.pg-testimonial-cite img {
    width: var(--pg-space-xl);
    height: var(--pg-space-xl);
    border-radius: 50%;
    margin-right: var(--pg-space-sm);
    object-fit: cover;
    border: 2px solid var(--pg-primary);
}
.pg-testimonial-cite span {
    display: block;
    font-weight: 600;
    color: var(--pg-heading-color);
}
.pg-testimonial-cite small {
    display: block;
    font-size: 0.9rem;
    color: var(--pg-text-muted);
}

/* FAQ */
.pg-faq-item {
    background-color: var(--pg-card-bg);
    border: 1px solid var(--pg-card-border);
    border-radius: var(--pg-border-radius-card);
    margin-bottom: var(--pg-space-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.pg-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--pg-space-md);
    font-weight: 600;
    color: var(--pg-heading-color);
    cursor: pointer;
    font-size: 1.125rem;
    transition: background-color 0.3s ease;
}
.pg-faq-q:hover {
    background-color: rgba(34, 211, 238, 0.05);
}

.pg-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--pg-primary);
    transition: transform 0.3s ease;
}

.pg-faq-item.active .pg-faq-q::after {
    transform: rotate(45deg);
}

.pg-faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 var(--pg-space-md);
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: var(--pg-text-muted);
}

.pg-faq-item.active .pg-faq-a {
    max-height: 500px; /* Sufficiently large value */
    padding: var(--pg-space-xs) var(--pg-space-md) var(--pg-space-md);
}

/* CTA */
.pg-cta {
    background-color: var(--pg-card-bg);
    border: 1px solid var(--pg-card-border);
    border-radius: var(--pg-border-radius-card);
    padding: var(--pg-space-3xl) var(--pg-space-md);
    text-align: center;
    margin-top: var(--pg-space-3xl);
}

.pg-cta-content h2 {
    margin-bottom: var(--pg-space-sm);
}
.pg-cta-content p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--pg-space-lg);
}

/* Forms */
.pg-contact-form {
    max-width: 480px;
    margin: var(--pg-space-xl) auto 0;
    padding: var(--pg-space-lg);
    background-color: var(--pg-card-bg);
    border: 1px solid var(--pg-card-border);
    border-radius: var(--pg-border-radius-card);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
}

.pg-form-group {
    margin-bottom: var(--pg-space-md);
}

.pg-form-label {
    display: block;
    margin-bottom: var(--pg-space-xs);
    color: var(--pg-heading-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.pg-form-input, .pg-form-textarea {
    width: 100%;
    padding: var(--pg-space-sm);
    background-color: rgba(255,255,255,0.02);
    border: 1px solid var(--pg-border-color);
    border-radius: var(--pg-border-radius-button);
    color: var(--pg-text-color);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pg-form-input:focus, .pg-form-textarea:focus {
    outline: none;
    border-color: var(--pg-primary);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}

.pg-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.pg-form-error {
    color: #a40e0e;
    font-size: 0.875rem;
    margin-top: var(--pg-space-xs);
    display: none;
}

.pg-form-success {
    background-color: #22c55e;
    color: #ffffff;
    padding: var(--pg-space-sm);
    border-radius: var(--pg-border-radius-button);
    text-align: center;
    margin-top: var(--pg-space-md);
    display: none;
}

/* Footer */
.pg-footer {
    background-color: var(--pg-background);
    padding-top: var(--pg-space-3xl);
    border-top: 1px solid var(--pg-border-color);
    margin-top: auto;
}

.pg-footer-grid {
    display: grid;
    gap: var(--pg-space-lg);
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: var(--pg-space-2xl);
}

.pg-footer-col h3 {
    color: var(--pg-heading-color);
    font-size: 1.25rem;
    margin-bottom: var(--pg-space-md);
}

.pg-footer-col p {
    font-size: 0.95rem;
    color: var(--pg-text-muted);
    margin-bottom: var(--pg-space-sm);
}

.pg-footer-list {
    list-style: none;
}

.pg-footer-list li {
    margin-bottom: var(--pg-space-xs);
}

.pg-footer-link {
    color: var(--pg-text-muted);
    font-size: 0.95rem;
}
.pg-footer-link:hover {
    color: var(--pg-primary);
    transform: translateX(4px);
}

.pg-footer-bottom {
    text-align: center;
    border-top: 1px solid var(--pg-border-color);
    padding: var(--pg-space-md) 0;
    font-size: 0.875rem;
    color: var(--pg-text-muted);
}

.pg-social-links {
    display: flex;
    gap: var(--pg-space-sm);
    justify-content: center;
    margin-top: var(--pg-space-md);
}
.pg-social-links a {
    color: var(--pg-text-muted);
    width: 24px;
    height: 24px;
}
.pg-social-links a:hover {
    color: var(--pg-primary);
}

/* Animations */
.pg-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.pg-animate.pg-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (min-width: 768px) {
    .pg-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .pg-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .pg-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    .pg-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pg-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pg-mobile-toggle {
        display: none;
    }
    .pg-nav-list {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        background: none;
        border-top: none;
        padding: 0;
        box-shadow: none;
        animation: none;
    }
    .pg-hero-content {
        text-align: left;
        padding-left: var(--pg-space-md);
    }
    .pg-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pg-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .pg-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .pg-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    .pg-testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .pg-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pg-footer-grid {
        grid-template-columns: 2fr 1.5fr 1fr 1fr;
    }
    .pg-section {
        padding-top: var(--pg-space-4xl);
        padding-bottom: var(--pg-space-4xl);
    }
    .pg-section-alt {
        padding-top: var(--pg-space-4xl);
        padding-bottom: var(--pg-space-4xl);
    }
}

@media (max-width: 480px) {
    h1, .pg-h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    h2, .pg-h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    h3, .pg-h3 {
        font-size: 1.5rem;
    }
    p {
        font-size: 1rem;
    }
    .pg-hero {
        padding-bottom: var(--pg-space-xl);
        align-items: center;
        text-align: center;
    }
    .pg-hero-content {
        padding-left: var(--pg-space-sm);
        padding-right: var(--pg-space-sm);
    }
    .pg-hero-subtitle {
        font-size: 1rem;
    }
    .pg-button {
        font-size: 0.9rem;
        padding: var(--pg-space-xs) var(--pg-space-md);
    }
    .pg-section {
        padding-top: var(--pg-space-2xl);
        padding-bottom: var(--pg-space-2xl);
    }
    .pg-section-alt {
        padding-top: var(--pg-space-2xl);
        padding-bottom: var(--pg-space-2xl);
    }
    .pg-faq-q {
        font-size: 1rem;
    }
    .pg-faq-a {
        font-size: 0.9rem;
    }
}

/* specific premium dark saas styling */
.pg-hero {
    background-image: url('https://dummyimage.com/1200x800/dbeafe/1e293b&text=premium-lifestyle%20icon-cluster%202');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.pg-hero::before {
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
}

.pg-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 55%;
}

.pg-hero-image {
    position: relative;
    z-index: 2;
    width: 40%;
    padding: var(--pg-space-md);
    background-color: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.05);
    transform: rotate3d(1, -1, 0, 15deg);
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60vh;
    max-height: 500px;
}
.pg-hero-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .pg-hero {
        flex-direction: column;
        text-align: center;
        min-height: 80vh;
        align-items: center;
    }
    .pg-hero::before {
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    }
    .pg-hero-content {
        max-width: 100%;
        padding-left: var(--pg-space-md);
        padding-right: var(--pg-space-md);
        margin-bottom: var(--pg-space-xl);
    }
    .pg-hero-image {
        width: 80%;
        transform: none;
        height: auto;
        max-height: 300px;
    }
}

.pg-button-primary {
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.6);
}
.pg-button-primary:hover {
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.8);
}

.pg-card, .pg-card-feature, .pg-card-service, .pg-card-process, .pg-testimonial-card, .pg-faq-item, .pg-stat-item, .pg-contact-form {
    background-color: var(--pg-card-bg);
    border: 1px solid var(--pg-card-border);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
}
.pg-card:hover, .pg-card-feature:hover, .pg-card-service:hover, .pg-card-process:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.07);
    transform: translateY(-5px);
}

.pg-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--pg-space-xl);
    padding: var(--pg-space-lg) 0;
    background-color: var(--pg-background);
}

.pg-logo-grid img {
    height: 50px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%) brightness(0) invert(1);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.pg-logo-grid img:hover {
    opacity: 1;
    filter: grayscale(0) brightness(1) invert(0);
}

.pg-pullquote::before {
     font-size: 10rem;
     top: -60px;
     color: var(--pg-primary);
     opacity: 0.08;
}

@keyframes glow {
    0% { filter: drop-shadow(0 0 5px var(--pg-primary)); }
    50% { filter: drop-shadow(0 0 15px var(--pg-secondary)); }
    100% { filter: drop-shadow(0 0 5px var(--pg-primary)); }
}

.pg-animate-glow {
    animation: glow 2s infinite alternate;
}

.pg-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.pg-process-number {
    font-family: 'Archivo', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--pg-primary);
    line-height: 1;
    margin-bottom: var(--pg-space-sm);
}

.pg-process-connector {
    position: absolute;
    top: 60px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--pg-border-color);
    z-index: -1;
    transform: translateX(-50%);
}

.pg-process-step:not(:last-child) .pg-process-connector {
    width: calc(100% + var(--pg-space-lg)); /* Extend to connect */
}

@media (min-width: 768px) {
    .pg-process-grid {
        display: flex;
        justify-content: space-between;
        position: relative;
    }
    .pg-process-step {
        flex: 1;
    }
    .pg-process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        left: calc(50% + 50px);
        top: 60px;
        width: calc(100% - 100px);
        height: 2px;
        background-color: var(--pg-border-color);
        z-index: -1;
    }
    .pg-process-step .pg-process-connector {
        display: none; /* Hide vertical connectors on desktop */
    }
}

.pg-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--pg-space-xl);
}

.pg-comparison-table th, .pg-comparison-table td {
    padding: var(--pg-space-sm);
    border: 1px solid var(--pg-border-color);
    text-align: left;
    color: var(--pg-text-color);
}

.pg-comparison-table th {
    background-color: rgba(255,255,255,0.08);
    font-weight: 600;
    color: var(--pg-heading-color);
}

.pg-comparison-table tbody tr:nth-child(even) {
    background-color: rgba(255,255,255,0.02);
}

.pg-comparison-table td:first-child {
    font-weight: 500;
}

.pg-comparison-table th:nth-child(2), .pg-comparison-table td:nth-child(2) {
    background-color: var(--pg-primary);
    color: var(--pg-background);
    font-weight: 600;
}

.pg-comparison-table td .pg-icon {
    width: 20px;
    height: 20px;
    display: block;
    margin: 0 auto;
}

.pg-comparison-table td.feature-check .pg-icon {
    color: var(--pg-background);
    fill: var(--pg-background);
}

.pg-comparison-table td.feature-cross .pg-icon {
    color: #a40e0e; /* Red for cross */
    fill: none;
    stroke: currentColor;
}

.pg-comparison-table th:not(:first-child), .pg-comparison-table td:not(:first-child) {
    text-align: center;
}

/* Blob Backdrop */
[data-decor-slot="blob_backdrop"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

[data-decor-slot="blob_backdrop"] svg {
    position: absolute;
    width: 600px;
    height: 600px;
    opacity: 0.1;
    filter: blur(100px);
    top: -100px;
    left: -100px;
    color: var(--pg-primary);
}

[data-decor-slot="blob_backdrop"] svg:nth-child(2) {
    top: auto;
    bottom: -150px;
    right: -150px;
    left: auto;
    color: var(--pg-secondary);
}

/* Headline Scribble */
.headline-highlight {
    position: relative;
    display: inline-block;
}
.headline-highlight [data-decor-slot="headline_scribble"] {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 15px;
    color: var(--pg-primary);
}
.headline-highlight [data-decor-slot="headline_scribble"] svg {
    width: 100%;
    height: 100%;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Trust Logo Grid specific styling */
.pg-trust-logos h2 {
    font-size: 1rem;
    color: var(--pg-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--pg-space-lg);
}

.pg-trust-logos {
    padding: var(--pg-space-lg) 0;
    text-align: center;
    background-color: var(--pg-card-bg);
    border-bottom: 2px solid var(--pg-border-color);
    border-top: 2px solid var(--pg-border-color);
}

@media (max-width: 768px) {
    .pg-nav-list.active .pg-nav-link {
        padding: var(--pg-space-sm) var(--pg-space-md);
    }
}


/* === Quality polish === */
.pg-card, [class*="pg-card"] { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s ease; }
.pg-card:hover, [class*="pg-card"]:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.16); }

button, [class*="btn"], [class*="cta"] { transition: all 0.3s ease; cursor: pointer; }
button:hover, [class*="btn"]:hover, [class*="cta"]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); filter: brightness(1.05); }

@keyframes pgScaleIn { from { opacity:0;transform:scale(.96) } to { opacity: 1; transform: none; } }
.pg-animate { opacity: 0; }
.pg-animate.pg-visible { animation: pgScaleIn .5s ease forwards; }

/* FAQ collapsed-by-default — hard fallback (any language, any topic) */
.pg-faq-a, [class*="faq-a"], [class*="faq-answer"] { display: none !important; max-height: 0; overflow: hidden; padding: 0 22px; transition: none; }
.pg-faq-item.active .pg-faq-a, [class*="faq-item"].active [class*="faq-a"], [class*="faq-item"].active [class*="faq-answer"] { display: block !important; max-height: none !important; padding: 0 22px 18px; }
.pg-faq-q, [class*="faq-q"], [class*="faq-question"] { cursor: pointer; user-select: none; }
.pg-faq-q *, [class*="faq-q"] * { pointer-events: none; }

/* === PREMIUM SCAFFOLD (class-contract baseline) === */
/* Layout */
.pg-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.pg-section { padding: 96px 0; background: #fff7ed; }
.pg-section-alt { padding: 96px 0; background: color-mix(in srgb, #ea580c 4%, #fff7ed); }
.pg-grid { display: grid; gap: 32px; }
.pg-grid-2 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.pg-grid-3 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.pg-grid-4 { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.pg-text-center { text-align: center; }
/* Header / Nav */
.pg-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.94); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid color-mix(in srgb, #431407 8%, transparent); }
.pg-header > .pg-container, .pg-header .pg-container { display: flex; align-items: center; gap: 32px; padding-top: 12px; padding-bottom: 12px; min-height: 64px; }
.pg-brand, .pg-logo { display: inline-flex; align-items: center; gap: 10px; font-family: Archivo; font-weight: 700; font-size: 1.05rem; line-height: 1; color: #ea580c; letter-spacing: -0.015em; text-decoration: none; flex-shrink: 0; max-width: 220px; margin-right: 24px; }
.pg-brand-mark { display: inline-flex; color: #ea580c; flex-shrink: 0; }
.pg-brand-mark svg { display: block; width: 24px; height: 24px; }
.pg-brand-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-left: 2px; }
.pg-nav-list, .pg-nav-links { display: flex; gap: 28px; list-style: none; margin: 0 0 0 auto; padding: 0; align-items: center; }
.pg-nav-link { color: #431407; font-weight: 500; font-size: 0.95rem; padding: 6px 0; position: relative; text-decoration: none; }
.pg-nav-link + .pg-nav-link { margin-left: 0; }
.pg-nav-link:hover { color: #ea580c; }
.pg-mobile-toggle { display: none; background: none; border: 0; padding: 6px; cursor: pointer; margin-left: auto; font-size: 1.4rem; line-height: 1; }
/* Hero */
.pg-hero { padding: 112px 0 96px; background: radial-gradient(circle at 82% 18%, color-mix(in srgb, #ea580c 12%, transparent), transparent 34%), linear-gradient(180deg, color-mix(in srgb, #ea580c 7%, #fff7ed) 0%, #fff7ed 100%); position: relative; overflow: hidden; }
/* Hero hardening — kill AI-generated giant ghost/background text & accidental absolute-positioned mockups */
.pg-hero [class*="ghost"], .pg-hero [class*="bg-text"], .pg-hero [class*="watermark"], .pg-hero [class*="hero-bg"], .pg-hero [aria-hidden="true"][class*="text"], .pg-hero [data-decorative="true"] { display: none !important; }
.pg-hero .pg-hero-image, .pg-hero .pg-dashboard-mockup { position: relative !important; }
.pg-hero .pg-hero-image { max-width: 100%; }
.pg-hero .pg-hero-image > * { max-width: 100%; }
.pg-hero .pg-stats { position: static !important; }
.pg-hero > .pg-container { max-width: 1200px; }
.pg-hero h1, .pg-hero .pg-h1 { font-family: Archivo; font-size: clamp(2.75rem, 5.2vw, 4.75rem); line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; color: #431407; margin: 0; max-width: 720px; width: 100%; text-wrap: balance; word-break: normal; overflow-wrap: break-word; hyphens: none; }
.pg-hero p, .pg-hero .pg-hero-sub, .pg-hero .pg-hero-subtitle { font-size: clamp(1.125rem, 1.5vw, 1.3rem); line-height: 1.7; color: #fb923c; max-width: 48ch; margin: 0; }
.pg-hero-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr); gap: 72px; align-items: center; }
.pg-hero-text { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.pg-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.pg-hero-image { position: relative; }
.pg-hero-image::before { content: ''; position: absolute; inset: 22px -18px -18px 22px; border-radius: 24px; background: color-mix(in srgb, #ea580c 12%, transparent); z-index: 0; }
.pg-hero-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; box-shadow: 0 36px 90px -34px rgba(0,0,0,0.42), 0 2px 10px rgba(0,0,0,0.08); }
.pg-hero-subtitle { font-size: 1.25rem; line-height: 1.6; color: #fb923c; max-width: 60ch; }
.pg-h1 { font-family: Archivo; font-size: clamp(2.5rem, 5vw, 4.25rem); line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; color: #431407; margin: 0; }
.pg-h2 { font-family: Archivo; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; letter-spacing: -0.015em; font-weight: 700; color: #431407; margin: 0 0 24px; }
.pg-h3 { font-family: Archivo; font-size: 1.5rem; line-height: 1.3; font-weight: 700; color: #431407; margin: 0 0 12px; }
.pg-subheading { font-size: 1.125rem; line-height: 1.7; color: #fb923c; max-width: 720px; margin: 0 auto 64px; }
/* Buttons */
.pg-button { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: all 0.25s cubic-bezier(0.4,0,0.2,1); white-space: nowrap; line-height: 1; }
.pg-button-primary { background: #ea580c; color: #fff; border-color: #ea580c; }
.pg-button-primary:hover { background: #c2410c; border-color: #c2410c; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px -8px color-mix(in srgb, #ea580c 50%, transparent); }
.pg-button-secondary { background: #c2410c; color: #fff; border-color: #c2410c; }
.pg-button-secondary:hover { transform: translateY(-2px); filter: brightness(1.05); color: #fff; }
.pg-button-outline { background: transparent; color: #ea580c; border-color: #ea580c; }
.pg-button-outline:hover { background: #ea580c; color: #fff; }
.pg-link { color: #ea580c; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.pg-link:hover { gap: 10px; }
/* Cards */
.pg-card { background: #fff; border: 1px solid color-mix(in srgb, #431407 6%, transparent); border-radius: 14px; padding: 32px; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 16px; }
.pg-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06); }
.pg-card-feature, .pg-card-service, .pg-card-process { text-align: left; }
/* Icons */
.pg-icon-wrapper { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 12px; background: color-mix(in srgb, #ea580c 10%, transparent); color: #ea580c; }
.pg-icon-wrapper svg, .pg-icon-wrapper .pg-icon { width: 28px; height: 28px; stroke: #ea580c; }
.pg-icon { width: 20px; height: 20px; stroke: currentColor; flex-shrink: 0; }
.pg-icon-large { width: 48px; height: 48px; stroke: #ea580c; }
/* Check list */
.pg-check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.pg-check-item { display: flex; align-items: flex-start; gap: 12px; line-height: 1.6; }
.pg-check-item .pg-icon { color: #ea580c; margin-top: 4px; }
/* Editorial */
.pg-pullquote { font-family: Archivo; font-style: italic; font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.4; color: #431407; max-width: 900px; margin: 64px auto; padding: 0 32px; position: relative; text-align: center; }
.pg-pullquote::before { content: '"'; font-size: 6rem; line-height: 0.8; color: #ea580c; opacity: 0.3; position: absolute; left: 0; top: -16px; }
.pg-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 48px; padding: 64px 0; }
.pg-stat-item { text-align: center; }
.pg-stat-number { display: block; font-family: Archivo; font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; color: #ea580c; line-height: 1; letter-spacing: -0.03em; }
.pg-stat-label { display: block; margin-top: 12px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #fb923c; }
/* Testimonials */
.pg-testimonial-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.pg-testimonial-card { background: #fff; padding: 32px; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); border: 1px solid color-mix(in srgb, #431407 6%, transparent); }
.pg-testimonial-quote { font-style: italic; line-height: 1.7; color: #431407; margin-bottom: 16px; }
.pg-testimonial-cite { font-weight: 600; color: #ea580c; font-size: 0.95rem; }
.pg-testimonial-stars { color: #2563eb; margin-bottom: 12px; }
/* FAQ */
.pg-faq { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.pg-faq-item { background: #fff; border: 1px solid color-mix(in srgb, #431407 8%, transparent); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s ease; }
.pg-faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.pg-faq-q { padding: 20px 24px; cursor: pointer; user-select: none; font-weight: 600; color: #431407; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.pg-faq-q::after { content: '+'; font-size: 1.5rem; color: #ea580c; transition: transform 0.3s ease; flex-shrink: 0; }
.pg-faq-item.active .pg-faq-q::after { transform: rotate(45deg); }
/* CTA */
.pg-cta { padding: 96px 0; background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%); color: #fff; text-align: center; }
.pg-cta .pg-h2, .pg-cta h2 { color: #fff; }
.pg-cta-content { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; align-items: center; }
.pg-cta .pg-button-primary { background: #fff; color: #ea580c; border-color: #fff; }
.pg-cta .pg-button-primary:hover { background: #fff7ed; color: #ea580c; }
/* Form */
.pg-form, .pg-contact-form { display: flex; flex-direction: column; gap: 20px; width: min(100%, 680px); margin: 32px auto 0; background: #fff; padding: 44px; border-radius: 24px; border: 1px solid color-mix(in srgb, #431407 7%, transparent); box-shadow: 0 30px 80px -34px rgba(0,0,0,0.32), 0 10px 28px -18px color-mix(in srgb, #ea580c 40%, transparent); text-align: left; color: #431407; }
.pg-form-row { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .pg-form-row { grid-template-columns: 1fr; } }
.pg-form-group { display: flex; flex-direction: column; gap: 8px; }
.pg-form-label, .pg-form label { font-weight: 600; font-size: 0.9rem; color: #431407; letter-spacing: 0.01em; }
.pg-form-input, .pg-form-textarea, .pg-form input:not([type="submit"]), .pg-form textarea, .pg-form select { padding: 15px 16px; border: 1.5px solid color-mix(in srgb, #431407 12%, transparent); border-radius: 12px; font-size: 1rem; font-family: inherit; background: color-mix(in srgb, #ea580c 2%, #fff); color: #431407; transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; width: 100%; box-sizing: border-box; }
.pg-form-input:hover, .pg-form-textarea:hover { border-color: color-mix(in srgb, #ea580c 35%, transparent); }
.pg-form-input:focus, .pg-form-textarea:focus, .pg-form input:focus, .pg-form textarea:focus { outline: none; border-color: #ea580c; box-shadow: 0 0 0 4px color-mix(in srgb, #ea580c 18%, transparent); }
.pg-form-textarea, .pg-form textarea { min-height: 140px; resize: vertical; }
/* Form messages — HIDDEN BY DEFAULT, only shown when JS adds .is-visible or removes [hidden] */
.pg-form-error, [class*="form-error"], [class*="form-message-error"] { display: none; color: #dc2626; font-size: 0.875rem; padding: 10px 12px; background: color-mix(in srgb, #dc2626 8%, transparent); border-radius: 8px; }
.pg-form-success, [class*="form-success"], [class*="form-message-success"] { display: none; color: #047857; font-weight: 600; padding: 12px 14px; background: color-mix(in srgb, #059669 10%, transparent); border-radius: 8px; }
.pg-form-error[hidden], .pg-form-success[hidden], [class*="form-error"][hidden], [class*="form-success"][hidden] { display: none !important; }
.pg-form-error.is-visible, .pg-form-success.is-visible { display: block; }
.pg-cta .pg-form, .pg-cta .pg-contact-form { color: #431407; }
.pg-cta .pg-form button[type="submit"], .pg-cta .pg-contact-form button[type="submit"] { background: #ea580c; color: #fff; border-color: #ea580c; }
/* Footer */
.pg-footer { background: #431407; color: color-mix(in srgb, #fff 80%, transparent); padding: 96px 0 32px; }
.pg-footer .pg-h3, .pg-footer h3, .pg-footer h4 { color: #fff; font-family: Archivo; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.pg-footer .pg-logo { color: #fff; }
.pg-footer-grid { display: grid; gap: 48px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 64px; }
.pg-footer-col { display: flex; flex-direction: column; gap: 12px; }
.pg-footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pg-footer-link { color: color-mix(in srgb, #fff 70%, transparent); font-size: 0.95rem; }
.pg-footer-link:hover { color: #fff; }
.pg-footer-bottom { padding-top: 32px; border-top: 1px solid color-mix(in srgb, #fff 12%, transparent); font-size: 0.875rem; color: color-mix(in srgb, #fff 60%, transparent); text-align: center; }
.pg-social-links { display: flex; gap: 16px; }
.pg-social-links a { color: color-mix(in srgb, #fff 70%, transparent); }
.pg-social-links a:hover { color: #fff; }
/* Responsive */
@media (max-width: 900px) {
  .pg-hero { padding: 80px 0 64px; }
  .pg-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .pg-section, .pg-section-alt { padding: 64px 0; }
  .pg-cta { padding: 64px 0; }
  .pg-footer { padding: 64px 0 24px; }
}
@media (max-width: 720px) {
  .pg-nav-list { display: none; }
  .pg-mobile-toggle { display: inline-flex; }
  .pg-nav.active .pg-nav-list, .pg-header.active .pg-nav-list, .pg-nav-list.active, .pg-nav-links.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 24px; gap: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .pg-card { padding: 24px; }
  .pg-form, .pg-contact-form { padding: 28px; border-radius: 18px; }
}

/* === STYLE FAMILY: premium_dark_saas === */
.pg-section { background: #0a0b10; color: #e6e7eb; }
.pg-section-alt { background: linear-gradient(180deg, #0a0b10 0%, #11131c 100%); color: #e6e7eb; }
.pg-hero { background: radial-gradient(ellipse at top left, color-mix(in srgb, #ea580c 30%, transparent), transparent 60%), radial-gradient(ellipse at bottom right, color-mix(in srgb, #2563eb 22%, transparent), transparent 60%), #0a0b10; color: #fff; padding: 128px 0 96px; }
.pg-h1 { color: #fff; }
.pg-card, .pg-card-feature, .pg-card-service { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: #e6e7eb; backdrop-filter: blur(12px); }
.pg-card:hover { box-shadow: 0 0 0 1px #ea580c, 0 18px 48px -12px color-mix(in srgb, #ea580c 50%, transparent); }
.pg-button-primary { background: #ea580c; color: #fff; box-shadow: 0 0 24px -8px #ea580c; border-radius: 10px; }
.pg-button-secondary, .pg-button-outline { background: transparent; color: #e6e7eb; border: 1px solid rgba(255,255,255,0.18); border-radius: 10px; }
.pg-footer { background: #06070b; color: #9ca3af; }