/* Reset & Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8f9fa; /* Light Neutral Background */
    color: #333; /* Dark Text */
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem;
    line-height: 1.2;
    color: #031525; /* Kynora Dark Navy */
}

p {
    margin: 0 0 1.5rem;
    color: #555; /* Medium Gray Text */
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: #FFC800; /* Kynora Yellow */
    background: linear-gradient(90deg, #FFC800 0%, #FFA000 100%);
    color: #031525; /* Dark Navy Text on Yellow */
    box-shadow: 0 4px 15px rgba(255, 200, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 200, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #031525; /* Kynora Dark Navy */
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.site-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.main-navigation ul {
    display: flex;
    gap: 30px;
}

.main-navigation a {
    font-size: 0.95rem;
    color: #ccc;
    font-weight: 500;
}

.main-navigation a:hover {
    color: #FFC800;
}

.header-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, rgba(255, 200, 0, 0.05), transparent 40%), #f8f9fa;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #031525;
}

.hero-content h1 .highlight {
    color: #FFC800; /* Yellow Highlight */
    display: block;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 500px;
    color: #555;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Phone Mockup Placeholder CSS */
.phone-frame {
    width: 280px;
    height: 580px;
    border: 12px solid #333;
    border-radius: 40px;
    background: #000;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    overflow: hidden;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #333;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.screen {
    width: 100%;
    height: 100%;
    background: #fff; /* Light App Screen */
    position: relative;
    overflow: hidden;
}

.app-ui {
    padding: 20px 10px;
}

.app-header {
    height: 40px;
    background: #f0f0f0;
    margin-bottom: 10px;
    border-radius: 5px;
    width: 100%;
}

.app-hero {
    height: 150px;
    background: linear-gradient(45deg, #031525, #007bff);
    border-radius: 10px;
    margin-bottom: 15px;
}

.app-row {
    height: 80px;
    background: #f0f0f0;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Partners */
.partners-section {
    padding: 40px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: #fff;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    opacity: 0.6;
    color: #333;
}

.partner-logo {
    font-weight: bold;
    font-size: 1.2rem;
}

/* Features */
.features-section {
    padding: 100px 0;
    background: #f4f4f4; /* Neutral light gray */
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #031525;
}

.feature-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    color: #555;
}

.feature-list li::before {
    content: '✓';
    color: #FFC800;
    position: absolute;
    left: 0;
    top: 0;
}

/* Content Showcase */
.content-showcase-section {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    margin-bottom: 60px;
}

.subtitle {
    color: #FFC800;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.showcase-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: none;
    transition: transform 0.3s ease;
}

.showcase-card h3 {
    color: #031525;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 200, 0, 0.15);
}

.card-image-placeholder {
    height: 200px;
    background: #f0f0f0;
    border-radius: 10px;
    margin-top: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
}

.feature-box h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #031525;
}

.feature-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #666;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #fafafa;
    text-align: center;
}

.testimonial-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 40px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-track-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    padding: 10px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 0 auto;
    max-width: 800px;
}

.stars {
    color: #FFC800;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
}

.author {
    margin-top: 20px;
    color: #888;
}

.carousel-btn {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #031525;
    cursor: pointer;
    padding: 0 15px;
    transition: color 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    color: #FFC800;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-indicator {
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-indicator.current-slide {
    background: #FFC800;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #f4f4f4;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 20px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.cta-text {
    flex: 1;
    z-index: 2;
}

.cta-text h2 {
    color: #031525;
}

.cta-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

/* Footer */
.site-footer {
    background: #031525; /* Kynora Dark Navy */
    padding: 80px 0 20px;
    font-size: 0.9rem;
    color: #b3b3b3;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-logo h2 {
    color: #fff;
}

.footer-logo p {
    color: #b3b3b3;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.link-column h3 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #fff;
}

.link-column ul li {
    margin-bottom: 10px;
}

.link-column a {
    color: #888;
}

.link-column a:hover {
    color: #FFC800;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    text-align: center;
    color: #666;
}

/* Image Mockup Styles */
.hero-mockup-img,
.feature-mockup-img,
.cta-mockup-img {
    max-width: 300px;
    width: 100%;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.2));
    border-radius: 40px; /* Optional: adds rounded corners if the image doesn't have them */
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section .container,
    .feature-row,
    .showcase-grid,
    .features-grid,
    .cta-content,
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image, .cta-image {
        margin-top: 40px;
        justify-content: center;
    }
    
    .main-navigation {
        display: none; /* Mobile menu to be implemented if needed */
    }

    .showcase-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .testimonial-carousel-container {
        padding: 0 30px; /* Space for buttons on small screens */
    }
    
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .prev-btn { left: -10px; }
    .next-btn { right: -10px; }
}
