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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: #f5f5f5;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 30%, #0f1419 70%, #2d3748 100%);
    min-height: 100vh;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
.prn-header {
    position: sticky;
    top: 0;
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 196, 255, 0.4);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.prn-header.prn-scrolled {
    background: rgba(15, 20, 25, 0.98);
    box-shadow: 0 2px 20px rgba(0, 196, 255, 0.1);
}
header {
    position: sticky;
    top: 0;
    background: rgba(26, 42, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 2px 20px rgba(255, 107, 53, 0.1);
}

.prn-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prn-logo {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #00c4ff 0%, #0891ff 50%, #00e5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
    position: relative;
}

.prn-logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00c4ff, #0891ff, #00e5ff);
    border-radius: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #b0b0b0;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

nav a:hover {
    color: #ffffff;
    background: rgba(0, 196, 255, 0.2);
    transform: translateY(-2px);
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00c4ff, #0891ff);
    transition: all 0.3s ease;
    border-radius: 1px;
    transform: translateX(-50%);
}

nav a:hover::before {
    width: 80%;
}

/* Dropdown Menu */
.prn-nav-dropdown {
    position: relative;
}

.prn-nav-dropdown > a::after {
    content: '▾';
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #b0b0b0;
}

.prn-nav-dropdown:hover > a::after {
    transform: rotate(180deg);
    color: #ffffff;
}

.prn-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    min-width: 220px;
    z-index: 1001;
    border-radius: 12px;
    padding: 16px 0;
    border: 1px solid rgba(0, 196, 255, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(0);
    transition: all 0.3s ease;
}

.prn-nav-dropdown:hover .prn-dropdown-content,
.prn-dropdown-content:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.prn-dropdown-content a {
    display: block;
    padding: 12px 24px;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.prn-dropdown-content a:hover {
    background: rgba(0, 196, 255, 0.2);
    color: #ffffff;
    border-left-color: #00c4ff;
    padding-left: 28px;
}

/* Hero Section */
.prn-hero {
    position: relative;
    height: 85vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(0, 196, 255, 0.1);
}

.prn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(26, 26, 26, 0.6) 100%);
    z-index: 1;
}

.prn-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 40%, rgba(0, 196, 255, 0.15) 100%);
    z-index: 1;
}

.prn-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 30px;
}

.prn-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(0, 196, 255, 0.3);
}

.prn-hero .prn-subtitle {
    font-size: 24px;
    margin-bottom: 32px;
    opacity: 0.9;
    font-weight: 500;
    color: #b0b0b0;
    letter-spacing: 0.5px;
}

.prn-hero p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    color: #cccccc;
    font-weight: 400;
}

/* Content Container */
.prn-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Feature Sections */
.prn-feature-section {
    padding: 120px 0;
    position: relative;
}

.prn-feature-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 80%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 196, 255, 0.5) 20%, rgba(0, 255, 255, 0.5) 80%, transparent 100%);
    opacity: 0.6;
    border-radius: 1px;
}

.prn-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.prn-feature-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.prn-feature-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    font-weight: 400;
}

.prn-feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Split Feature */
.prn-split-feature {
    padding: 80px 0;
}

.prn-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.prn-split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.prn-split-text h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #e0e0e0;
}

.prn-split-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #b0b0b0;
    max-width: 400px;
}

/* Benefits Section */
.prn-benefits-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.prn-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00c4ff, #0891ff);
    border-radius: 2px;
}

.prn-benefits-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
    letter-spacing: -1px;
    margin-top: 40px;
}

.prn-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.prn-benefit-item {
    text-align: left;
    padding: 40px 30px;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 196, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.prn-benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00c4ff, #0891ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.prn-benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 196, 255, 0.4);
}

.prn-benefit-item:hover::before {
    transform: scaleX(1);
}

.prn-benefit-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 196, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prn-benefit-item:hover::after {
    opacity: 1;
}

.prn-benefit-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.prn-benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #b0b0b0;
    font-weight: 400;
}

/* Image Gallery */
.prn-gallery-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.3) 0%, rgba(26, 26, 26, 0.3) 100%);
}

.prn-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.prn-gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.prn-gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 196, 255, 0.2), 0 0 30px rgba(0, 255, 255, 0.1);
}

/* Testimonials */
.prn-testimonials-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.prn-testimonials-section::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #00c4ff, #0891ff);
    border-radius: 2px;
}

.prn-testimonials-section h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #ffffff;
    letter-spacing: -0.8px;
    margin-top: 20px;
}

.prn-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.prn-testimonial-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 196, 255, 0.3);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.prn-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00c4ff, #0891ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prn-testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 196, 255, 0.25);
    border-color: rgba(0, 196, 255, 0.5);
}

.prn-testimonial-card:hover::before {
    opacity: 1;
}

.prn-testimonial-stars {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.prn-testimonial-stars span {
    color: #ffd700;
    font-size: 16px;
}

.prn-testimonial-quote {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 16px;
    font-style: italic;
}

.prn-testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #e0e0e0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
    border-top: 1px solid rgba(0, 196, 255, 0.3);
    padding: 80px 0 40px 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00c4ff, #0891ff);
}

.prn-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.prn-footer-nav {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
}

.prn-footer-nav a {
    text-decoration: none;
    color: #b0b0b0;
    font-size: 14px;
    transition: text-decoration 0.3s ease;
}

.prn-footer-nav a:hover {
    text-decoration: underline;
}

.prn-footer-legal {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.prn-footer-legal a {
    text-decoration: none;
    color: #b0b0b0;
    font-size: 12px;
}

.prn-footer-disclaimer {
    font-size: 12px;
    line-height: 1.5;
    color: #b0b0b0;
    margin-bottom: 24px;
}

.prn-copyright {
    font-size: 12px;
    color: #808080;
    text-align: center;
}

/* Burger Menu */
.prn-burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.prn-burger-line {
    width: 24px;
    height: 2px;
    background: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
}

.prn-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #2a2a2a;
    z-index: 1000;
    padding-top: 80px;
}

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

.prn-mobile-menu ul {
    list-style: none;
    padding: 0 20px;
}

.prn-mobile-menu li {
    margin-bottom: 16px;
}

.prn-mobile-menu a {
    display: block;
    padding: 12px 0;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #404040;
}


.prn-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #b0b0b0;
}

/* Responsive */
@media (max-width: 1024px) {
    .prn-hero h1 {
        font-size: 48px;
    }

    .prn-hero .prn-subtitle {
        font-size: 20px;
    }

    .prn-benefits-section h2 {
        font-size: 40px;
    }

    .prn-testimonials-section h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .prn-header-content {
        padding: 16px 20px;
    }

    .prn-logo {
        font-size: 24px;
    }

    nav {
        display: none;
    }

    .prn-burger-menu {
        display: flex;
    }

    .prn-hero {
        height: 70vh;
    }

    .prn-hero h1 {
        font-size: 36px;
    }

    .prn-hero .prn-subtitle {
        font-size: 18px;
    }

    .prn-hero p {
        font-size: 16px;
    }

    .prn-feature-section {
        padding: 80px 0;
    }

    .prn-feature-grid,
    .prn-split-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .prn-feature-text h3 {
        font-size: 28px;
    }

    .prn-benefits-section {
        padding: 80px 0;
    }

    .prn-benefits-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .prn-benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .prn-benefit-item {
        padding: 30px 20px;
    }

    .prn-gallery-section {
        padding: 80px 0;
    }

    .prn-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .prn-gallery-grid img {
        height: 240px;
    }

    .prn-testimonials-section {
        padding: 80px 0;
    }

    .prn-testimonials-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .prn-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .prn-footer-nav {
        flex-direction: column;
        gap: 20px;
    }

    .prn-footer-legal {
        flex-direction: column;
        gap: 16px;
    }

    .prn-footer-disclaimer {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .prn-header-content {
        padding: 12px 16px;
    }

    .prn-hero h1 {
        font-size: 28px;
    }

    .prn-hero .prn-subtitle {
        font-size: 16px;
    }

    .prn-hero-content {
        padding: 0 16px;
    }

    .prn-feature-section {
        padding: 60px 0;
    }

    .prn-benefits-section {
        padding: 60px 0;
    }

    .prn-testimonials-section {
        padding: 60px 0;
    }

    .prn-gallery-section {
        padding: 60px 0;
    }
}

/* Animations */
.prn-feature-section,
.prn-benefit-item,
.prn-testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.prn-feature-section.prn-animate-in,
.prn-benefit-item.prn-animate-in,
.prn-testimonial-card.prn-animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
body {
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.prn-loaded {
    opacity: 1;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f1419;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00c4ff, #0891ff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0099cc, #0066aa);
}

/* Enhanced modern design elements */
.prn-feature-text h3 {
    background: linear-gradient(135deg, #00c4ff, #0891ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.prn-feature-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00c4ff, #0891ff);
    border-radius: 2px;
}

.prn-hero h1 {
    background: linear-gradient(135deg, #ffffff 0%, #e6f7ff 30%, #b3e5ff 70%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 196, 255, 0.4);
}

/* Add some subtle glow effects */
.prn-benefit-item,
.prn-testimonial-card {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 196, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.prn-benefit-item:hover,
.prn-testimonial-card:hover {
    box-shadow: 0 20px 60px rgba(0, 196, 255, 0.3), 0 0 20px rgba(0, 255, 255, 0.2);
}

/* Modern button styling */
.prn-header-content button,
.prn-hero button,
form button {
    background: linear-gradient(135deg, #00c4ff, #0891ff);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.prn-header-content button::before,
.prn-hero button::before,
form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.prn-header-content button:hover::before,
.prn-hero button:hover::before,
form button:hover::before {
    left: 100%;
}

.prn-header-content button:hover,
.prn-hero button:hover,
form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 196, 255, 0.4);
}