/* ====================================
   PRYLANTO - CORPORATE DESIGN SYSTEM
   ==================================== */

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

:root {
    --pryl-charcoal: #1a1a1a;
    --pryl-slate: #2d3436;
    --pryl-ash: #636e72;
    --pryl-silver: #b2bec3;
    --pryl-pearl: #dfe6e9;
    --pryl-ivory: #f4f6f7;
    --pryl-white: #ffffff;
    --pryl-accent: #d63031;
    --pryl-accent-dark: #a82829;
    --pryl-success: #2ecc71;
    
    --pryl-font-display: 'Crimson Pro', serif;
    --pryl-font-body: 'Work Sans', sans-serif;
    
    --pryl-ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --pryl-ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--pryl-font-body);
    color: var(--pryl-charcoal);
    background: var(--pryl-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.pryl-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.pryl-nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--pryl-pearl);
    animation: prylNavSlide 0.6s var(--pryl-ease-smooth);
}

@keyframes prylNavSlide {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pryl-nav-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.pryl-brand-mark {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--pryl-font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--pryl-charcoal);
    transition: all 0.3s var(--pryl-ease-smooth);
}

.pryl-brand-mark img {
    width: 32px;
    height: 32px;
    display: block;
    transition: transform 0.4s var(--pryl-ease-bounce);
}

.pryl-brand-mark svg {
    color: var(--pryl-accent);
    transition: transform 0.4s var(--pryl-ease-bounce);
}

.pryl-brand-mark:hover img,
.pryl-brand-mark:hover svg {
    transform: rotate(15deg) scale(1.1);
}

.pryl-nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.pryl-nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--pryl-slate);
    position: relative;
    transition: color 0.3s var(--pryl-ease-smooth);
}

.pryl-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pryl-accent);
    transition: width 0.3s var(--pryl-ease-smooth);
}

.pryl-nav-links a:hover,
.pryl-nav-links a.pryl-nav-active {
    color: var(--pryl-accent);
}

.pryl-nav-links a:hover::after,
.pryl-nav-links a.pryl-nav-active::after {
    width: 100%;
}

.pryl-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.pryl-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pryl-charcoal);
    transition: all 0.3s var(--pryl-ease-smooth);
}

/* Hero Section */
.pryl-hero-zone {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pryl-hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: prylHeroZoom 20s ease-in-out infinite alternate;
}

@keyframes prylHeroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.pryl-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 52, 54, 0.7) 100%);
}

.pryl-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--pryl-white);
    max-width: 900px;
    padding: 0 24px;
    animation: prylHeroFadeUp 1s var(--pryl-ease-smooth) 0.3s both;
}

@keyframes prylHeroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pryl-hero-title {
    font-family: var(--pryl-font-display);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.pryl-hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 48px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pryl-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.pryl-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--pryl-white);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    animation: prylScrollBounce 2s ease-in-out infinite;
}

@keyframes prylScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Buttons */
.pryl-btn-primary,
.pryl-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--pryl-font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s var(--pryl-ease-smooth);
    cursor: pointer;
    border: none;
}

.pryl-btn-primary {
    background: var(--pryl-accent);
    color: var(--pryl-white);
}

.pryl-btn-primary:hover {
    background: var(--pryl-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(214, 48, 49, 0.3);
}

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

.pryl-btn-secondary:hover {
    background: var(--pryl-white);
    color: var(--pryl-charcoal);
}

.pryl-btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.pryl-btn-full {
    width: 100%;
    justify-content: center;
}

/* Section Styles */
.pryl-services-zone,
.pryl-values-zone,
.pryl-team-zone,
.pryl-story-zone {
    padding: 120px 0;
    position: relative;
}

.pryl-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    animation: prylFadeIn 0.8s var(--pryl-ease-smooth);
}

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

.pryl-section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pryl-accent);
    margin-bottom: 16px;
}

.pryl-section-label.pryl-label-light {
    color: var(--pryl-white);
}

.pryl-section-title {
    font-family: var(--pryl-font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--pryl-charcoal);
}

.pryl-section-title.pryl-title-light {
    color: var(--pryl-white);
}

.pryl-section-desc {
    font-size: 18px;
    color: var(--pryl-ash);
    line-height: 1.7;
}

/* Services Grid */
.pryl-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

/* Desktop: force two columns for services grid */
@media (min-width: 1024px) {
    .pryl-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

.pryl-service-card {
    background: var(--pryl-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--pryl-ease-smooth);
    animation: prylCardFloat 0.6s var(--pryl-ease-smooth) backwards;
}

.pryl-service-card:nth-child(1) { animation-delay: 0.1s; }
.pryl-service-card:nth-child(2) { animation-delay: 0.2s; }
.pryl-service-card:nth-child(3) { animation-delay: 0.3s; }
.pryl-service-card:nth-child(4) { animation-delay: 0.4s; }
.pryl-service-card:nth-child(5) { animation-delay: 0.5s; }
.pryl-service-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes prylCardFloat {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pryl-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pryl-service-visual {
    height: 340px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.pryl-service-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.3) 100%);
}

.pryl-service-content {
    padding: 32px;
}

.pryl-service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pryl-ivory);
    border-radius: 8px;
    color: var(--pryl-accent);
    margin-bottom: 24px;
    transition: all 0.3s var(--pryl-ease-smooth);
}

.pryl-service-card:hover .pryl-service-icon {
    background: var(--pryl-accent);
    color: var(--pryl-white);
    transform: scale(1.1);
}

.pryl-service-title {
    font-family: var(--pryl-font-display);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--pryl-charcoal);
}

.pryl-service-text {
    font-size: 16px;
    color: var(--pryl-ash);
    line-height: 1.7;
    margin-bottom: 20px;
}

.pryl-service-features {
    list-style: none;
    margin-bottom: 28px;
}

.pryl-service-features li {
    font-size: 15px;
    color: var(--pryl-slate);
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.pryl-service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: var(--pryl-ivory);
    border-radius: 50%;
    border: 2px solid var(--pryl-accent);
}

.pryl-service-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--pryl-charcoal);
    color: var(--pryl-white);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s var(--pryl-ease-smooth);
}

.pryl-service-cta:hover {
    background: var(--pryl-accent);
    transform: translateX(4px);
}

/* Why Us Section */
.pryl-why-zone {
    position: relative;
    padding: 120px 0;
    background: var(--pryl-charcoal);
    overflow: hidden;
}

.pryl-why-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.pryl-why-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.pryl-why-text {
    font-size: 18px;
    color: var(--pryl-pearl);
    line-height: 1.8;
    margin-bottom: 48px;
}

.pryl-why-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}

.pryl-stat-item {
    text-align: center;
    animation: prylStatFade 0.8s var(--pryl-ease-smooth) backwards;
}

.pryl-stat-item:nth-child(1) { animation-delay: 0.2s; }
.pryl-stat-item:nth-child(2) { animation-delay: 0.4s; }
.pryl-stat-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes prylStatFade {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pryl-stat-number {
    font-family: var(--pryl-font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--pryl-accent);
    margin-bottom: 8px;
}

.pryl-stat-label {
    font-size: 14px;
    color: var(--pryl-silver);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.pryl-cta-zone {
    position: relative;
    background: linear-gradient(135deg, var(--pryl-charcoal) 0%, var(--pryl-slate) 100%);
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.pryl-cta-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 52, 54, 0.85) 100%);
    z-index: 1;
}

.pryl-cta-zone.pryl-cta-with-image {
    background-image: url('images/top-view-workspace.jpg');
}

.pryl-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pryl-cta-title {
    font-family: var(--pryl-font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--pryl-white);
    margin-bottom: 20px;
}

.pryl-cta-text {
    font-size: 18px;
    color: var(--pryl-silver);
    margin-bottom: 40px;
}

/* Modal */
.pryl-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--pryl-ease-smooth);
    backdrop-filter: blur(5px);
}

.pryl-modal-overlay.pryl-modal-active {
    opacity: 1;
    visibility: visible;
}

.pryl-modal-container {
    background: var(--pryl-white);
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s var(--pryl-ease-smooth);
}

.pryl-modal-active .pryl-modal-container {
    transform: scale(1) translateY(0);
}

.pryl-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--pryl-ivory);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pryl-charcoal);
    transition: all 0.3s var(--pryl-ease-smooth);
}

.pryl-modal-close:hover {
    background: var(--pryl-accent);
    color: var(--pryl-white);
    transform: rotate(90deg);
}

.pryl-modal-title {
    font-family: var(--pryl-font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pryl-modal-subtitle {
    color: var(--pryl-ash);
    margin-bottom: 32px;
}

.pryl-modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pryl-form-group {
    display: flex;
    flex-direction: column;
}

.pryl-form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--pryl-slate);
}

.pryl-form-group input,
.pryl-form-group textarea,
.pryl-form-group select {
    padding: 14px;
    border: 2px solid var(--pryl-pearl);
    border-radius: 4px;
    font-family: var(--pryl-font-body);
    font-size: 15px;
    transition: all 0.3s var(--pryl-ease-smooth);
}

.pryl-form-group input:focus,
.pryl-form-group textarea:focus,
.pryl-form-group select:focus {
    outline: none;
    border-color: var(--pryl-accent);
}

.pryl-modal-success {
    text-align: center;
    padding: 40px 0;
}

.pryl-modal-success svg {
    margin: 0 auto 24px;
}

.pryl-modal-success h4 {
    font-family: var(--pryl-font-display);
    font-size: 28px;
    margin-bottom: 12px;
}

.pryl-modal-success p {
    color: var(--pryl-ash);
}

/* Footer */
.pryl-footer-zone {
    background: var(--pryl-charcoal);
    color: var(--pryl-silver);
    padding: 80px 0 40px;
}

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

.pryl-footer-brand {
    max-width: 300px;
}

.pryl-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.pryl-footer-logo img {
    width: 40px;
    height: 40px;
    display: block;
}

.pryl-footer-logo svg {
    color: var(--pryl-accent);
}

.pryl-footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pryl-footer-logo span {
    font-family: var(--pryl-font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--pryl-white);
}

.pryl-footer-logo-tagline {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pryl-accent);
    margin: 0;
}

.pryl-footer-tagline {
    font-size: 14px;
    line-height: 1.6;
}

.pryl-footer-links h4 {
    color: var(--pryl-white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.pryl-footer-links ul {
    list-style: none;
}

.pryl-footer-links li {
    margin-bottom: 12px;
}

.pryl-footer-links a {
    font-size: 14px;
    color: var(--pryl-silver);
    transition: color 0.3s var(--pryl-ease-smooth);
}

.pryl-footer-links a:hover {
    color: var(--pryl-accent);
}

.pryl-footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--pryl-slate);
}

.pryl-footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* Page Header */
.pryl-page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.pryl-page-header-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.pryl-page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 52, 54, 0.75) 100%);
}

.pryl-page-header .pryl-container {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--pryl-white);
}

.pryl-page-title {
    font-family: var(--pryl-font-display);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    animation: prylFadeIn 0.8s var(--pryl-ease-smooth);
}

.pryl-page-subtitle {
    font-size: 20px;
    opacity: 0.9;
    animation: prylFadeIn 0.8s var(--pryl-ease-smooth) 0.2s both;
}

/* Story Section */
.pryl-story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pryl-story-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pryl-story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--pryl-ash);
}

.pryl-story-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Values Grid */
.pryl-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.pryl-value-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--pryl-ivory);
    border-radius: 8px;
    transition: all 0.4s var(--pryl-ease-smooth);
}

.pryl-value-card:hover {
    background: var(--pryl-white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.pryl-value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pryl-white);
    border-radius: 50%;
    color: var(--pryl-accent);
}

.pryl-value-card h3 {
    font-family: var(--pryl-font-display);
    font-size: 24px;
    margin-bottom: 12px;
}

.pryl-value-card p {
    font-size: 15px;
    color: var(--pryl-ash);
    line-height: 1.7;
}

/* Team Grid */
.pryl-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.pryl-team-member {
    text-align: center;
}

.pryl-team-photo {
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 24px;
    transition: all 0.4s var(--pryl-ease-smooth);
}

.pryl-team-member:hover .pryl-team-photo {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.pryl-team-member h4 {
    font-family: var(--pryl-font-display);
    font-size: 22px;
    margin-bottom: 8px;
}

.pryl-team-role {
    font-size: 14px;
    color: var(--pryl-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.pryl-team-bio {
    font-size: 14px;
    color: var(--pryl-ash);
    line-height: 1.6;
}

/* Contact Section */
.pryl-contact-zone {
    padding: 80px 0;
}

.pryl-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.pryl-contact-info h2 {
    font-family: var(--pryl-font-display);
    font-size: 36px;
    margin-bottom: 20px;
}

.pryl-contact-info > p {
    font-size: 16px;
    color: var(--pryl-ash);
    line-height: 1.7;
    margin-bottom: 40px;
}

.pryl-contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.pryl-contact-item {
    display: flex;
    gap: 20px;
}

.pryl-contact-icon {
    width: 48px;
    height: 48px;
    background: var(--pryl-ivory);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pryl-accent);
    flex-shrink: 0;
}

.pryl-contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pryl-contact-item a {
    color: var(--pryl-accent);
    transition: color 0.3s var(--pryl-ease-smooth);
}

.pryl-contact-item a:hover {
    color: var(--pryl-accent-dark);
}

.pryl-contact-item p {
    font-size: 15px;
    color: var(--pryl-ash);
    line-height: 1.6;
}

.pryl-contact-hours h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.pryl-contact-hours p {
    font-size: 15px;
    color: var(--pryl-ash);
    line-height: 1.8;
}

.pryl-contact-form-wrapper {
    background: var(--pryl-ivory);
    padding: 48px;
    border-radius: 8px;
    position: relative;
}

.pryl-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pryl-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pryl-checkbox-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    cursor: pointer;
}

.pryl-checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.pryl-checkbox-label a {
    color: var(--pryl-accent);
    text-decoration: underline;
}

.pryl-contact-success {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
}

.pryl-contact-success svg {
    margin: 0 auto 24px;
}

.pryl-contact-success h4 {
    font-family: var(--pryl-font-display);
    font-size: 28px;
    margin-bottom: 12px;
}

.pryl-contact-success p {
    color: var(--pryl-ash);
}

/* Map Section */
.pryl-map-zone {
    height: 500px;
    position: relative;
}

.pryl-map-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.pryl-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pryl-map-marker {
    animation: prylMarkerBounce 2s ease-in-out infinite;
}

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

/* Legal Content */
.pryl-legal-zone {
    padding: 80px 0;
    margin-top: 80px;
}

.pryl-legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.pryl-legal-content h1 {
    font-family: var(--pryl-font-display);
    font-size: 48px;
    margin-bottom: 16px;
}

.pryl-legal-date {
    color: var(--pryl-ash);
    margin-bottom: 48px;
}

.pryl-legal-content h2 {
    font-family: var(--pryl-font-display);
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
}

.pryl-legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--pryl-ash);
    margin-bottom: 20px;
}

.pryl-legal-content ul {
    margin: 20px 0;
    padding-left: 24px;
}

.pryl-legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--pryl-ash);
    margin-bottom: 12px;
}

.pryl-legal-content strong {
    color: var(--pryl-charcoal);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pryl-hero-title {
        font-size: 56px;
    }
    
    .pryl-services-grid {
        grid-template-columns: 1fr;
    }
    
    .pryl-story-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .pryl-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .pryl-contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .pryl-nav-links {
        display: none;
    }
    
    .pryl-mobile-toggle {
        display: flex;
    }
    
    .pryl-hero-title {
        font-size: 42px;
    }
    
    .pryl-hero-subtitle {
        font-size: 18px;
    }
    
    .pryl-hero-actions {
        flex-direction: column;
    }
    
    .pryl-section-title {
        font-size: 36px;
    }
    
    .pryl-page-title {
        font-size: 40px;
    }
    
    .pryl-services-grid {
        grid-template-columns: 1fr;
    }
    
    .pryl-modal-container {
        padding: 32px 24px;
    }
    
    .pryl-form-row {
        grid-template-columns: 1fr;
    }
    
    .pryl-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pryl-contact-form-wrapper {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .pryl-hero-title {
        font-size: 32px;
    }
    
    .pryl-hero-subtitle {
        font-size: 16px;
    }
    
    .pryl-section-title {
        font-size: 28px;
    }
    
    .pryl-page-title {
        font-size: 32px;
    }
}
/* Additional Service Card Styles */
.pryl-service-process {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--pryl-ivory);
    border-radius: 6px;
}

.pryl-service-subtitle {
    font-family: var(--pryl-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--pryl-charcoal);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pryl-service-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pryl-service-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pryl-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--pryl-white);
    border: 2px solid var(--pryl-accent);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    color: var(--pryl-accent);
    flex-shrink: 0;
}

.pryl-step-text {
    font-size: 14px;
    color: var(--pryl-slate);
    line-height: 1.4;
}

.pryl-service-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--pryl-ivory);
    border-radius: 6px;
    flex-wrap: wrap;
}

.pryl-service-duration,
.pryl-service-price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--pryl-slate);
}

.pryl-service-duration svg,
.pryl-service-price svg {
    color: var(--pryl-accent);
    flex-shrink: 0;
}

.pryl-service-duration span,
.pryl-service-price span {
    font-weight: 600;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .pryl-service-process {
        padding: 16px;
    }

    .pryl-service-meta {
        flex-direction: column;
        gap: 12px;
    }

    .pryl-step-number {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .pryl-step-text {
        font-size: 13px;
    }
}
/* Case Studies Section - Full Information Display */
.pryl-cases-zone {
    position: relative;
    padding: 140px 0 120px;
    background: linear-gradient(180deg, var(--pryl-white) 0%, var(--pryl-ivory) 100%);
    overflow: hidden;
}

.pryl-cases-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}


.pryl-cases-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 10;
}

.pryl-cases-lead {
    font-size: 18px;
    color: var(--pryl-ash);
    line-height: 1.7;
    margin-top: 20px;
}

/* Unusual Grid Layout */
.pryl-cases-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    position: relative;
    z-index: 10;
}

.pryl-case-large {
    grid-column: span 6;
    grid-row: span 2;
}

.pryl-case-medium {
    grid-column: span 6;
}

.pryl-case-wide {
    grid-column: span 8;
}

.pryl-case-small {
    grid-column: span 4;
}

/* Case Card Styles */
.pryl-case-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--pryl-white);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.5s var(--pryl-ease-smooth);
    min-height: 450px;
    animation: prylCaseReveal 0.8s var(--pryl-ease-smooth) backwards;
    display: flex;
    flex-direction: column;
}

.pryl-case-card:nth-child(1) { animation-delay: 0.1s; }
.pryl-case-card:nth-child(2) { animation-delay: 0.2s; }
.pryl-case-card:nth-child(3) { animation-delay: 0.3s; }
.pryl-case-card:nth-child(4) { animation-delay: 0.4s; }
.pryl-case-card:nth-child(5) { animation-delay: 0.5s; }
.pryl-case-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes prylCaseReveal {
    from {
        opacity: 0;
        transform: translateY(60px) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.pryl-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.pryl-case-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--pryl-ease-smooth);
}
.pryl-case-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(0 0 0 / 20%), rgb(26 26 26));
    pointer-events: none;
}
.pryl-case-card:hover .pryl-case-image {
    transform: scale(1.05);
}

.pryl-case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(26, 26, 26, 0.4) 0%, 
        rgba(26, 26, 26, 0.92) 100%
    );
}

.pryl-case-content {
    position: relative;
    z-index: 10;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--pryl-white);
}

.pryl-case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.pryl-case-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pryl-case-year {
    font-size: 13px;
    font-weight: 600;
    color: var(--pryl-accent);
    background: rgba(214, 48, 49, 0.15);
    padding: 4px 12px;
    border-radius: 12px;
}

.pryl-case-title {
    font-family: var(--pryl-font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pryl-case-industry {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.pryl-case-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.pryl-case-challenge,
.pryl-case-solution {
    margin-bottom: 16px;
    padding: 16px;
    background: rgb(60 39 39 / 80%);;
    border-left: 3px solid var(--pryl-accent);
    border-radius: 4px;
}

.pryl-case-challenge h4,
.pryl-case-solution h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--pryl-accent);
}

.pryl-case-challenge p,
.pryl-case-solution p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.pryl-case-stats {
    display: flex;
    gap: 24px;
    margin: auto 0 20px 0;
    flex-wrap: wrap;
}

.pryl-case-stat {
    display: flex;
    flex-direction: column;
}

.pryl-stat-value {
    font-family: var(--pryl-font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--pryl-accent);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1;
    margin-bottom: 4px;
}

.pryl-stat-desc {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.pryl-case-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.pryl-case-service-item {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Large Card Specific */
.pryl-case-large .pryl-case-title {
    font-size: 40px;
}

.pryl-case-large .pryl-case-desc {
    font-size: 16px;
}

.pryl-case-large .pryl-stat-value {
    font-size: 36px;
}

/* Wide Card Specific */
.pryl-case-wide .pryl-case-title {
    font-size: 36px;
}

.pryl-case-wide .pryl-case-content {
    padding: 36px;
}

/* Small Card Specific */
.pryl-case-small {
    min-height: 380px;
}

.pryl-case-small .pryl-case-content {
    padding: 24px;
}

.pryl-case-small .pryl-case-title {
    font-size: 24px;
}

.pryl-case-small .pryl-case-desc {
    font-size: 14px;
}

.pryl-case-small .pryl-case-challenge,
.pryl-case-small .pryl-case-solution {
    display: none;
}

.pryl-case-small .pryl-stat-value {
    font-size: 28px;
}

/* Cases Footer */
.pryl-cases-footer {
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 10;
}

.pryl-cases-cta-text {
    font-size: 20px;
    color: var(--pryl-slate);
    margin-bottom: 32px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pryl-case-large,
    .pryl-case-medium,
    .pryl-case-wide {
        grid-column: span 12;
        grid-row: span 1;
        min-height: 450px;
    }
    
    .pryl-case-small {
        grid-column: span 6;
        min-height: 400px;
    }
    
    .pryl-case-large .pryl-case-title {
        font-size: 32px;
    }
    
    .pryl-case-wide .pryl-case-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .pryl-cases-zone {
        padding: 80px 0 60px;
    }
    
    .pryl-cases-grid {
        gap: 20px;
    }
    
    .pryl-case-large,
    .pryl-case-medium,
    .pryl-case-wide,
    .pryl-case-small {
        grid-column: span 12;
        min-height: 500px;
    }
    
    .pryl-case-content {
        padding: 28px !important;
    }
    
    .pryl-case-title {
        font-size: 28px !important;
    }
    
    .pryl-case-large .pryl-case-title,
    .pryl-case-wide .pryl-case-title {
        font-size: 32px !important;
    }
    
    .pryl-case-desc {
        font-size: 14px;
    }
    
    .pryl-case-challenge,
    .pryl-case-solution {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .pryl-case-stats {
        gap: 16px;
    }
    
    .pryl-stat-value {
        font-size: 28px !important;
    }
    
    .pryl-cases-orb {
        filter: blur(60px);
    }
}

@media (max-width: 480px) {
    .pryl-case-content {
        padding: 24px !important;
    }
    
    .pryl-case-title {
        font-size: 24px !important;
    }
    
    .pryl-case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .pryl-case-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .pryl-stat-value {
        font-size: 24px !important;
    }
    
    .pryl-cases-cta-text {
        font-size: 18px;
    }
    
    .pryl-case-services {
        gap: 6px;
    }
    
    .pryl-case-service-item {
        font-size: 10px;
        padding: 5px 10px;
    }
}
/* Animated Marquee Section */
.pryl-marquee-zone {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--pryl-charcoal) 0%, var(--pryl-slate) 100%);
    overflow: hidden;
}


/* Marquee Wrapper */
.pryl-marquee-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 80px;
}

/* Marquee Track */
.pryl-marquee-track {
    display: flex;
    gap: 24px;
    white-space: nowrap;
}

.pryl-marquee-forward {
    animation: prylMarqueeScroll 40s linear infinite;
}

.pryl-marquee-reverse {
    animation: prylMarqueeScrollReverse 35s linear infinite;
}

@keyframes prylMarqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes prylMarqueeScrollReverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.pryl-marquee-track:hover {
    animation-play-state: paused;
}

/* Marquee Item */
.pryl-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    transition: all 0.4s var(--pryl-ease-smooth);
    flex-shrink: 0;
}

.pryl-marquee-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pryl-marquee-item.pryl-marquee-accent {
    background: rgba(214, 48, 49, 0.15);
    border-color: rgba(214, 48, 49, 0.3);
}

.pryl-marquee-item.pryl-marquee-accent:hover {
    background: rgba(214, 48, 49, 0.25);
    border-color: rgba(214, 48, 49, 0.5);
}

.pryl-marquee-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pryl-white);
    flex-shrink: 0;
}

.pryl-marquee-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--pryl-white);
    letter-spacing: 0.5px;
}

/* Counter Section */
.pryl-counter-section {
    position: relative;
    z-index: 10;
}

.pryl-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.pryl-counter-item {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--pryl-ease-smooth);
}

.pryl-counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: prylCounterShine 3s ease-in-out infinite;
}

@keyframes prylCounterShine {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.pryl-counter-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.pryl-counter-number {
    font-family: var(--pryl-font-display);
    font-size: 64px;
    font-weight: 700;
    color: var(--pryl-accent);
    line-height: 1;
    margin-bottom: 8px;
    display: inline-block;
    text-shadow: 0 4px 20px rgba(214, 48, 49, 0.5);
}

.pryl-counter-suffix {
    font-family: var(--pryl-font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--pryl-accent);
    display: inline-block;
    margin-left: 4px;
}

.pryl-counter-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pryl-white);
    opacity: 0.8;
    margin-bottom: 16px;
}

.pryl-counter-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.pryl-counter-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--pryl-accent), #ff6b6b);
    border-radius: 2px;
    width: 0;
    transition: width 2s var(--pryl-ease-smooth);
    box-shadow: 0 0 10px var(--pryl-accent);
}

.pryl-counter-item.pryl-counter-active .pryl-counter-progress {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pryl-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .pryl-counter-number {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .pryl-marquee-zone {
        padding: 60px 0;
    }

    .pryl-marquee-wrapper {
        gap: 16px;
        margin-bottom: 60px;
    }

    .pryl-marquee-track {
        gap: 16px;
    }

    .pryl-marquee-item {
        padding: 16px 24px;
    }

    .pryl-marquee-text {
        font-size: 14px;
    }

    .pryl-marquee-icon {
        width: 24px;
        height: 24px;
    }

    .pryl-marquee-icon svg {
        width: 24px;
        height: 24px;
    }

    .pryl-counter-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pryl-counter-item {
        padding: 32px 20px;
    }

    .pryl-counter-number {
        font-size: 48px;
    }

    .pryl-counter-suffix {
        font-size: 36px;
    }

    .pryl-floater {
        opacity: 0.05;
    }
}

@media (max-width: 480px) {
    .pryl-marquee-item {
        padding: 12px 20px;
        gap: 12px;
    }

    .pryl-marquee-text {
        font-size: 13px;
    }

    .pryl-counter-number {
        font-size: 40px;
    }

    .pryl-counter-label {
        font-size: 12px;
    }
}
/* Timeline & Milestones Section */
.pryl-timeline-zone {
    padding: 120px 0;
    background: var(--pryl-ivory);
    position: relative;
    overflow: hidden;
}

.pryl-timeline-wrapper {
    position: relative;
    margin-bottom: 80px;
}

/* Timeline Decoration */
.pryl-timeline-decoration {
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 4px;
    z-index: 1;
}

.pryl-timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--pryl-accent) 0%, var(--pryl-silver) 100%);
    border-radius: 2px;
}

.pryl-timeline-pulse {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--pryl-accent);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 0 rgba(214, 48, 49, 0.7);
    animation: prylPulseAnimation 2s ease-in-out infinite;
}

.pryl-pulse-1 {
    top: 15%;
    animation-delay: 0s;
}

.pryl-pulse-2 {
    top: 50%;
    animation-delay: 0.7s;
}

.pryl-pulse-3 {
    top: 85%;
    animation-delay: 1.4s;
}

@keyframes prylPulseAnimation {
    0% {
        box-shadow: 0 0 0 0 rgba(214, 48, 49, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(214, 48, 49, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(214, 48, 49, 0);
    }
}

/* Timeline Table */
.pryl-timeline-table {
    position: relative;
    z-index: 10;
    background: var(--pryl-white);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.pryl-timeline-header {
    display: grid;
    grid-template-columns: 160px 1fr 280px 140px;
    gap: 24px;
    padding: 24px 32px;
    background: var(--pryl-charcoal);
    color: var(--pryl-white);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pryl-timeline-row {
    display: grid;
    grid-template-columns: 160px 1fr 280px 140px;
    gap: 24px;
    padding: 32px;
    border-bottom: 1px solid var(--pryl-pearl);
    transition: all 0.4s var(--pryl-ease-smooth);
    position: relative;
    animation: prylTimelineSlideIn 0.6s var(--pryl-ease-smooth) backwards;
}

.pryl-timeline-row:nth-child(2) { animation-delay: 0.1s; }
.pryl-timeline-row:nth-child(3) { animation-delay: 0.2s; }
.pryl-timeline-row:nth-child(4) { animation-delay: 0.3s; }
.pryl-timeline-row:nth-child(5) { animation-delay: 0.4s; }
.pryl-timeline-row:nth-child(6) { animation-delay: 0.5s; }
.pryl-timeline-row:nth-child(7) { animation-delay: 0.6s; }
.pryl-timeline-row:nth-child(8) { animation-delay: 0.7s; }

@keyframes prylTimelineSlideIn {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pryl-timeline-row:last-child {
    border-bottom: none;
}

.pryl-timeline-row:hover {
    background: var(--pryl-ivory);
    transform: translateX(8px);
    box-shadow: inset 4px 0 0 var(--pryl-accent);
}

.pryl-timeline-row.pryl-row-first {
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.05) 0%, rgba(214, 48, 49, 0.02) 100%);
}

/* Year Badge */
.pryl-year-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--pryl-white);
    border: 3px solid var(--pryl-accent);
    border-radius: 50%;
    font-family: var(--pryl-font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--pryl-accent);
    box-shadow: 0 4px 16px rgba(214, 48, 49, 0.2);
    transition: all 0.3s var(--pryl-ease-smooth);
}

.pryl-timeline-row:hover .pryl-year-badge {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(214, 48, 49, 0.3);
}

.pryl-year-badge.pryl-badge-first {
    background: var(--pryl-accent);
    color: var(--pryl-white);
    border-color: var(--pryl-accent);
}

/* Milestone Content */
.pryl-milestone-title {
    font-family: var(--pryl-font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--pryl-charcoal);
    margin-bottom: 8px;
    line-height: 1.3;
}

.pryl-milestone-desc {
    font-size: 15px;
    color: var(--pryl-ash);
    line-height: 1.6;
    margin-bottom: 12px;
}

.pryl-milestone-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pryl-milestone-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--pryl-ivory);
    border: 1px solid var(--pryl-pearl);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--pryl-slate);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Achievement List */
.pryl-achievement-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pryl-achievement-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--pryl-slate);
    line-height: 1.5;
}

.pryl-achievement-list svg {
    color: var(--pryl-accent);
    flex-shrink: 0;
}

/* Team Count */
.pryl-col-team {
    text-align: center;
}

.pryl-team-count {
    font-family: var(--pryl-font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--pryl-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.pryl-team-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--pryl-ash);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Metrics Grid */
.pryl-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pryl-metric-card {
    background: var(--pryl-white);
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--pryl-ease-smooth);
    display: flex;
    align-items: center;
    gap: 20px;
}

.pryl-metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pryl-metric-icon {
    width: 64px;
    height: 64px;
    background: var(--pryl-ivory);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pryl-accent);
    flex-shrink: 0;
    transition: all 0.3s var(--pryl-ease-smooth);
}

.pryl-metric-card:hover .pryl-metric-icon {
    background: var(--pryl-accent);
    color: var(--pryl-white);
    transform: scale(1.1);
}

.pryl-metric-value {
    font-family: var(--pryl-font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--pryl-charcoal);
    line-height: 1;
    margin-bottom: 8px;
}

.pryl-metric-label {
    font-size: 13px;
    color: var(--pryl-ash);
    line-height: 1.4;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pryl-timeline-header,
    .pryl-timeline-row {
        grid-template-columns: 120px 1fr 200px 100px;
        gap: 16px;
        padding: 24px;
    }

    .pryl-year-badge {
        width: 70px;
        height: 70px;
        font-size: 18px;
    }

    .pryl-milestone-title {
        font-size: 20px;
    }

    .pryl-team-count {
        font-size: 40px;
    }

    .pryl-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pryl-timeline-decoration {
        left: 60px;
    }
}

@media (max-width: 768px) {
    .pryl-timeline-zone {
        padding: 80px 0;
    }

    .pryl-timeline-decoration {
        display: none;
    }

    .pryl-timeline-header {
        display: none;
    }

    .pryl-timeline-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }

    .pryl-timeline-row:hover {
        transform: none;
        box-shadow: inset 0 4px 0 var(--pryl-accent);
    }

    .pryl-col-year {
        text-align: center;
    }

    .pryl-year-badge {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .pryl-col-team {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 16px;
        background: var(--pryl-ivory);
        border-radius: 8px;
    }

    .pryl-team-count {
        font-size: 36px;
        margin: 0;
    }

    .pryl-metrics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pryl-metric-card {
        padding: 24px 20px;
    }

    .pryl-metric-icon {
        width: 56px;
        height: 56px;
    }

    .pryl-metric-value {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .pryl-timeline-row {
        padding: 20px 16px;
    }

    .pryl-year-badge {
        width: 70px;
        height: 70px;
        font-size: 16px;
    }

    .pryl-milestone-title {
        font-size: 18px;
    }

    .pryl-milestone-desc {
        font-size: 14px;
    }

    .pryl-achievement-list li {
        font-size: 13px;
    }

    .pryl-metric-card {
        flex-direction: column;
        text-align: center;
    }

    .pryl-metric-icon {
        width: 64px;
        height: 64px;
    }
}
/* FAQ & Quick Contact Section */
.pryl-faq-zone {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--pryl-ivory) 0%, var(--pryl-white) 100%);
    overflow: hidden;
}

.pryl-faq-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}



.pryl-faq-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 10;
}

/* FAQ Accordion */
.pryl-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pryl-faq-item {
    background: var(--pryl-white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s var(--pryl-ease-smooth);
}

.pryl-faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pryl-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s var(--pryl-ease-smooth);
}

.pryl-faq-question:hover {
    background: var(--pryl-ivory);
}

.pryl-faq-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pryl-ivory);
    border-radius: 50%;
    color: var(--pryl-accent);
    transition: all 0.4s var(--pryl-ease-smooth);
}

.pryl-faq-item.pryl-faq-active .pryl-faq-icon {
    background: var(--pryl-accent);
    color: var(--pryl-white);
    transform: rotate(45deg);
}

.pryl-faq-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--pryl-charcoal);
    line-height: 1.4;
}

.pryl-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--pryl-ease-smooth), padding 0.4s var(--pryl-ease-smooth);
}

.pryl-faq-item.pryl-faq-active .pryl-faq-answer {
    max-height: 1000px;
    padding: 0 28px 28px 76px;
}

.pryl-faq-answer p {
    font-size: 15px;
    color: var(--pryl-ash);
    line-height: 1.7;
    margin-bottom: 16px;
}

.pryl-faq-answer p:last-child {
    margin-bottom: 0;
}

.pryl-faq-answer ol,
.pryl-faq-answer ul {
    margin: 16px 0;
    padding-left: 24px;
}

.pryl-faq-answer li {
    font-size: 15px;
    color: var(--pryl-ash);
    line-height: 1.7;
    margin-bottom: 12px;
}

.pryl-faq-answer strong {
    color: var(--pryl-charcoal);
    font-weight: 600;
}

.pryl-faq-cta {
    margin-top: 40px;
    padding: 32px;
    background: var(--pryl-white);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pryl-faq-cta p {
    font-size: 16px;
    color: var(--pryl-slate);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Quick Contact Card */
.pryl-quick-contact {
    background: linear-gradient(135deg, var(--pryl-charcoal) 0%, var(--pryl-slate) 100%);
    border-radius: 16px;
    padding: 40px;
    color: var(--pryl-white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 100px;
}

.pryl-quick-contact-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pryl-quick-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pryl-accent);
    animation: prylQuickPulse 2s ease-in-out infinite;
}

@keyframes prylQuickPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(214, 48, 49, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(214, 48, 49, 0);
    }
}

.pryl-quick-contact-header h3 {
    font-family: var(--pryl-font-display);
    font-size: 28px;
    margin-bottom: 8px;
}

.pryl-quick-contact-header p {
    font-size: 14px;
    opacity: 0.8;
}

.pryl-quick-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.pryl-quick-stat {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pryl-quick-stat-icon {
    color: var(--pryl-accent);
}

.pryl-quick-stat-value {
    font-family: var(--pryl-font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.pryl-quick-stat-label {
    font-size: 11px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pryl-quick-info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.pryl-quick-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pryl-quick-info-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--pryl-accent);
}

.pryl-quick-info-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 4px;
}

.pryl-quick-info-item a {
    color: var(--pryl-white);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s var(--pryl-ease-smooth);
}

.pryl-quick-info-item a:hover {
    color: var(--pryl-accent);
}

.pryl-quick-info-item span {
    font-size: 15px;
    opacity: 0.9;
}

.pryl-quick-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 32px 0;
}

.pryl-quick-hours h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.pryl-hours-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pryl-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.pryl-hours-time {
    font-weight: 600;
    color: var(--pryl-accent);
}

.pryl-quick-emergency {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: rgba(214, 48, 49, 0.15);
    border: 1px solid rgba(214, 48, 49, 0.3);
    border-radius: 12px;
    margin: 24px 0;
}

.pryl-quick-emergency svg {
    flex-shrink: 0;
    color: var(--pryl-accent);
}

.pryl-quick-emergency strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.pryl-quick-emergency p {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
}

.pryl-quick-emergency a {
    color: var(--pryl-accent);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pryl-faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pryl-quick-contact {
        position: static;
    }
}

@media (max-width: 768px) {
    .pryl-faq-zone {
        padding: 60px 0;
    }

    .pryl-faq-question {
        padding: 20px;
    }

    .pryl-faq-item.pryl-faq-active .pryl-faq-answer {
        padding: 0 20px 24px 68px;
    }

    .pryl-faq-title {
        font-size: 16px;
    }

    .pryl-quick-contact {
        padding: 32px 24px;
    }

    .pryl-quick-stats {
        grid-template-columns: 1fr;
    }

    .pryl-quick-contact-header h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .pryl-faq-question {
        gap: 12px;
        padding: 16px;
    }

    .pryl-faq-icon {
        width: 28px;
        height: 28px;
    }

    .pryl-faq-title {
        font-size: 15px;
    }

    .pryl-faq-item.pryl-faq-active .pryl-faq-answer {
        padding: 0 16px 20px 56px;
    }

    .pryl-quick-icon {
        width: 64px;
        height: 64px;
    }
}
