*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #050505;
    --bg-card: #111115;
    --bg-hover: #1a1a1f;
    --gold: #FFD700;
    --gold-dark: #FFC107;
    --gold-light: #FFD966;
    --silver: #b8b8b8;
    --white: #ffffff;
    --glow: 0 0 20px rgba(255, 215, 0, 0.3);
    --border-gold: rgba(255, 200, 0, 0.2);
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--bg-dark);
    color: #e5e5e5;
    line-height: 1.5;
}

/* Custom Scrollbar for Dark Theme */
::-webkit-scrollbar {
    width: 10px;
    background: #050505;
}
::-webkit-scrollbar-track {
    background: #050505;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FFC107;
}
html, body {
    scrollbar-color: #333 #050505;
    scrollbar-width: thin;
}

/* ──────────────────────────────────────────────────────────── */
/* TYPOGRAPHY */
/* ──────────────────────────────────────────────────────────── */
h1, h2, h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFD966, #FFB800, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold-light);
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 70px;
    height: 4px;
    background: var(--gold-dark);
    border-radius: 4px;
}

/* ──────────────────────────────────────────────────────────── */
/* CONTAINER & SECTIONS */
/* ──────────────────────────────────────────────────────────── */
/* ── Outer wrapper spans full width; inner limits to 1280px ── */
.pt-section {
    width: 100%;
    padding: 80px 0;
    border-bottom: 1px solid var(--border-gold);
}

.pt-section > *:not(.pt-features-grid):not(.pt-services-grid):not(.pt-quote):not(.pt-form-wrap):not(.pt-contact-grid):not(.pt-login-panel) {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 48px;
    padding-right: 48px;
}

.pt-section > .pt-features-grid,
.pt-section > .pt-services-grid,
.pt-section > .pt-quote,
.pt-section > .pt-form-wrap,
.pt-section > .pt-contact-grid,
.pt-section > .pt-login-panel {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 48px;
    padding-right: 48px;
    box-sizing: border-box;
}

.pt-section-label {
    font-family: monospace;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--gold-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 48px;
    padding-right: 48px;
}

.pt-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    max-width: 100px;
}

.pt-section h2 {
    padding-left: 48px;
    padding-right: 48px;
}

.pt-section-sub {
    color: var(--silver);
    font-size: 1rem;
    margin-bottom: 36px;
    max-width: 800px;
    padding-left: 48px;
    padding-right: 48px;
}

.pt-dark {
    background: #080808;
    border-bottom: 1px solid var(--border-gold);
}

/* ──────────────────────────────────────────────────────────── */
/* NAVIGATION */
/* ──────────────────────────────────────────────────────────── */
.pt-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px;
    background: rgba(10, 10, 10, 0.96);
    z-index: 9999;
    border-bottom: 1px solid var(--border-gold);
    backdrop-filter: blur(8px);
}

.pt-logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold-light);
}

.pt-logo-text span {
    color: var(--gold-dark);
}

.pt-nav-links {
    display: flex;
    gap: 28px;
}

.pt-nav-link {
    text-decoration: none;
    font-weight: 600;
    color: #e0e0e0;
    transition: color 0.2s;
}

.pt-nav-link:hover {
    color: var(--gold-dark);
}

.pt-nav-back {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-dark);
    color: var(--bg-dark);
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.pt-nav-back:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ──────────────────────────────────────────────────────────── */
/* HERO SECTION */
/* ──────────────────────────────────────────────────────────── */
.pt-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 48px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #050505;
    border-bottom: 1px solid var(--border-gold);
}

/* Radial golden glow behind hero content */
.pt-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(255, 193, 7, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

.pt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-family: monospace;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--gold-light);
    border: 1px solid rgba(255, 215, 0, 0.35);
    padding: 5px 16px;
    border-radius: 60px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: blink 1.4s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.1; }
}

.hero-title {
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-size: clamp(30px, 6vw, 62px);
}

.title-line.accent {
    background: linear-gradient(135deg, #FFD966, #FFB800, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--silver);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.65;
}

.hero-stats {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    margin: 0 auto 36px;
    border: 1px solid var(--border-gold);
    padding: 14px 32px;
    background: rgba(255, 215, 0, 0.03);
    border-radius: 60px;
    width: fit-content;
    max-width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 28px;
    white-space: nowrap;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--silver);
}

.stat-div {
    width: 1px;
    height: 36px;
    background: var(--border-gold);
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 32px;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--gold-dark);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold-dark);
    color: var(--gold-dark);
}

.btn-secondary:hover {
    background: rgba(255, 193, 7, 0.1);
    transform: translateY(-2px);
}

/* ──────────────────────────────────────────────────────────── */
/* CARDS (Feature & Service) */
/* ──────────────────────────────────────────────────────────── */
.pt-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pt-card {
    background: var(--bg-card);
    border-radius: 28px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-gold);
}

.pt-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 7, 0.5);
    box-shadow: 0 20px 30px -12px rgba(255, 193, 7, 0.2);
}

.pt-card-icon {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: var(--gold-dark);
}

.pt-card h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
    color: var(--gold-light);
}

.pt-card p {
    color: var(--silver);
    line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────── */
/* SERVICES GRID - SOFTWARE CARDS (Black/Yellow Theme) */
/* ──────────────────────────────────────────────────────────── */
.pt-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 32px;
}

.software-card {
    background: #111115 !important;
    border-radius: 2rem !important;
    overflow: hidden !important;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,200,0,0.2) !important;
    display: flex !important;
    flex-direction: column !important;
    border-bottom: 3px solid #FFC107 !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    position: relative !important;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
}

.software-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 45px -12px rgba(0, 0, 0, 0.8), 0 0 0 1px #FFD966;
    border-bottom-color: #FFE484;
}

.software-card.selected {
    border-bottom-color: var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4), 0 0 0 1px var(--gold-light);
}

.pt-svc-check {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 26px;
    height: 26px;
    border: 2px solid var(--gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--gold-dark);
    opacity: 0;
    transition: all 0.3s;
    z-index: 2;
    background: rgba(10, 10, 10, 0.9);
}

html[dir="rtl"] .pt-svc-check {
    right: auto;
    left: 16px;
}

.software-card.selected .pt-svc-check {
    opacity: 1;
    background: var(--gold-dark);
    color: var(--bg-dark);
}

.card-header {
    padding: 1.8rem 1.8rem 1rem 1.8rem !important;
    position: relative;
    z-index: 2;
    background: transparent !important;
}

.icon-badge {
    width: 70px !important;
    height: 70px !important;
    background: #1c1c20 !important;
    border-radius: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2.3rem !important;
    margin-bottom: 1.3rem !important;
    box-shadow: 0 8px 16px -6px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,215,0,0.2);
    transition: 0.2s;
    color: #FFD966 !important;
    border: 1px solid #FFB80040 !important;
}

.software-card:hover .icon-badge {
    color: #FFE484 !important;
    border-color: #FFC107 !important;
    transform: scale(1.02);
    background: #000 !important;
}

.card-title {
    font-size: 1.75rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.3px;
    margin-bottom: 0.4rem !important;
    color: #FFDF80 !important;
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    text-transform: none !important;
    line-height: 1.3;
}

.card-sub {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #FFB82E !important;
    background: rgba(255,200,0,0.15) !important;
    display: inline-block !important;
    padding: 0.25rem 0.9rem !important;
    border-radius: 40px !important;
    border: 0.5px solid #ffc10760 !important;
    margin-bottom: 1rem !important;
    text-transform: none !important;
}

.card-content {
    padding: 0 1.5rem 1.5rem 1.8rem !important;
    flex: 1;
    background: transparent !important;
}

.description {
    color: #cfcfdf !important;
    line-height: 1.55;
    font-weight: 500;
    margin-bottom: 1.4rem !important;
    font-size: 0.95rem !important;
    margin-top: 1rem !important;
}

.features-list {
    list-style: none !important;
    margin-bottom: 1.6rem !important;
    padding: 0 !important;
}

.features-list li {
    display: flex !important;
    align-items: center !important;
    gap: 0.7rem;
    font-size: 0.9rem !important;
    margin-bottom: 0.7rem !important;
    color: #e4e4f0 !important;
    font-weight: 500;
    list-style: none !important;
    padding: 0 !important;
}

.features-list li::before { display: none !important; }

.features-list li i {
    color: #FFC107 !important;
    width: 1.4rem !important;
    font-size: 0.95rem;
    text-shadow: 0 0 2px #ffb300;
    flex-shrink: 0;
}

.card-btn {
    background: #1f1f24 !important;
    border: 1px solid #FFC10760 !important;
    width: 100% !important;
    margin: 0.3rem 0 0.2rem 0 !important;
    padding: 0.8rem 0 !important;
    font-family: 'Cairo', 'Tajawal', inherit !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    border-radius: 2rem !important;
    color: #FFD966 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.7rem;
    cursor: pointer !important;
    transition: 0.25s;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

.card-btn i {
    transition: transform 0.2s;
    color: #FFD966 !important;
}

.card-btn:hover {
    background: #FFC107 !important;
    color: #0a0a0a !important;
    border-color: #FFD966 !important;
    box-shadow: 0 6px 14px rgba(255,193,7,0.4);
    text-decoration: none !important;
}

.card-btn:hover i {
    transform: translateX(-5px);
    color: #0a0a0a !important;
}

/* ──────────────────────────────────────────────────────────── */
/* QUOTE SECTION */
/* ──────────────────────────────────────────────────────────── */
.pt-quote {
    background: #0f0f12;
    border-radius: 48px;
    padding: 48px 40px;
    text-align: center;
    margin-top: 50px;
    border: 1px solid var(--border-gold);
}

.pt-quote i {
    font-size: 2.5rem;
    color: var(--gold-dark);
    opacity: 0.8;
}

.pt-quote p {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 20px 0;
    line-height: 1.6;
}

.pt-quote-author {
    color: var(--gold-light);
    font-weight: 600;
}

/* ──────────────────────────────────────────────────────────── */
/* FORM SECTION */
/* ──────────────────────────────────────────────────────────── */
.pt-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 36px;
    border-radius: 28px;
    margin-top: 16px;
}

.pt-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.pt-form-grid .pt-full {
    grid-column: 1 / -1;
}

.pt-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pt-field label {
    font-family: monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold-light);
}

.pt-field input, .pt-field select, .pt-field textarea {
    background: #1a1a1f;
    border: 1px solid var(--border-gold);
    color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.25s;
    border-radius: 12px;
}

.pt-field input:focus, .pt-field select:focus, .pt-field textarea:focus {
    border-color: var(--gold-dark);
    box-shadow: var(--glow);
}

.pt-field input.error, .pt-field select.error, .pt-field textarea.error {
    border-color: #ff4d4d;
}

.pt-field-err {
    font-size: 11px;
    color: #ff6b6b;
    display: none;
}

.pt-field-err.show {
    display: block;
}

.pt-selected-services-display {
    background: #1a1a1f;
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 12px 16px;
    min-height: 50px;
}

.pt-selected-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid var(--gold-dark);
    color: var(--gold-light);
    font-size: 11px;
    padding: 4px 10px;
    margin: 2px;
    border-radius: 20px;
}

.placeholder-text {
    color: rgba(184, 184, 184, 0.5);
    font-size: 13px;
}

.pt-budget-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pt-budget-slider {
    flex: 1;
    -webkit-appearance: none;
    height: 3px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 3px;
    cursor: pointer;
}

.pt-budget-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold-dark);
    cursor: pointer;
}

.pt-budget-val {
    font-family: monospace;
    font-size: 12px;
    color: var(--gold-light);
    min-width: 80px;
}

.pt-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid var(--gold-dark);
    color: var(--gold-dark);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.pt-submit:hover {
    background: var(--gold-dark);
    color: var(--bg-dark);
    box-shadow: var(--glow);
}

.pt-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Success Message */
.pt-success {
    display: none;
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--gold-dark);
    border-radius: 28px;
    margin-top: 20px;
}

.pt-success.show {
    display: block;
}

.pt-success-icon {
    font-size: 44px;
    margin-bottom: 16px;
}

.pt-success h3 {
    color: var(--gold-light);
    margin-bottom: 12px;
}

.pt-success p {
    color: var(--silver);
}

/* ──────────────────────────────────────────────────────────── */
/* CONTACT GRID */
/* ──────────────────────────────────────────────────────────── */
.pt-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.pt-contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 28px 22px;
    text-align: center;
    border-radius: 24px;
    transition: all 0.3s;
}

.pt-contact-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-4px);
}

.pt-contact-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.pt-contact-card h3 {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.pt-contact-card a, .pt-contact-card span {
    color: var(--silver);
    font-size: 0.9rem;
    text-decoration: none;
}

.pt-contact-card a:hover {
    color: var(--gold-dark);
}

/* ──────────────────────────────────────────────────────────── */
/* LOGIN SECTION */
/* ──────────────────────────────────────────────────────────── */
.pt-login-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 36px;
}

.pt-login-badge {
    display: inline-block;
    font-family: monospace;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gold-light);
    border: 1px solid var(--border-gold);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pt-login-left h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.pt-login-left h3 span {
    color: var(--gold-light);
}

.pt-login-left p {
    color: var(--silver);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pt-login-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 32px;
    border-radius: 28px;
}

.pt-login-card-title {
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 24px;
}

.pt-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: var(--gold-dark);
    color: var(--bg-dark);
    font-weight: 700;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.3s;
    margin-bottom: 14px;
}

.pt-login-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.pt-login-card-sep {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 10px;
    color: var(--silver);
}

.pt-login-card-sep::before, .pt-login-card-sep::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-gold);
}

.pt-login-reset {
    display: block;
    text-align: center;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--silver);
    text-decoration: none;
    padding: 8px;
    border: 1px solid var(--border-gold);
    border-radius: 60px;
    transition: all 0.25s;
    margin-bottom: 16px;
}

.pt-login-reset:hover {
    border-color: var(--gold-dark);
    color: var(--gold-dark);
}

.pt-login-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 9px;
    letter-spacing: 1px;
    color: var(--silver);
    opacity: 0.7;
}

/* ──────────────────────────────────────────────────────────── */
/* FOOTER */
/* ──────────────────────────────────────────────────────────── */
.pt-footer {
    border-top: 1px solid var(--border-gold);
    padding: 30px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--silver);
    background: #0a0a0a;
}

/* ──────────────────────────────────────────────────────────── */
/* ANIMATIONS */
/* ──────────────────────────────────────────────────────────── */
.pt-animate {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s, transform 0.6s;
}

.pt-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ──────────────────────────────────────────────────────────── */
/* RESPONSIVE */
/* ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .pt-login-panel {
        grid-template-columns: 1fr;
    }
    .pt-nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .pt-nav {
        padding: 12px 20px;
    }

    .pt-section {
        padding: 50px 0;
    }

    .pt-section-label,
    .pt-section h2,
    .pt-section-sub {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pt-section > .pt-features-grid,
    .pt-section > .pt-services-grid,
    .pt-section > .pt-quote,
    .pt-section > .pt-form-wrap,
    .pt-section > .pt-contact-grid,
    .pt-section > .pt-login-panel {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pt-hero {
        padding: 100px 20px 60px;
    }

    .pt-form-grid {
        grid-template-columns: 1fr;
    }

    .pt-footer {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 20px;
    }

    .hero-stats {
        padding: 12px 16px;
    }

    .stat-item {
        padding: 0 12px;
    }

    .stat-div {
        display: none;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .pt-features-grid {
        grid-template-columns: 1fr;
    }

    .pt-services-grid {
        grid-template-columns: 1fr;
    }
}