/* Global Styles and Variables */
:root {
    --primary: #00BCD4;
    --secondary: #4CAF50;
    --dark: #263238;
    --light: #ECEFF1;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.site-container {
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: hidden;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--gradient);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-name {
    font-size: 1.5rem;
    margin: 0;
    color: var(--dark);
}

.brand-name span {
    color: var(--primary);
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu li a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: var(--gradient);
    transition: var(--transition);
    border-radius: 3px;
}

.nav-menu li a:hover {
    color: var(--primary);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 100;
}

.menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: var(--transition);
}

.menu-icon span:nth-child(1) {
    top: 0px;
}

.menu-icon span:nth-child(2) {
    top: 10px;
}

.menu-icon span:nth-child(3) {
    top: 20px;
}

#menu-toggle:checked + .menu-icon span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

#menu-toggle:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#menu-toggle:checked + .menu-icon span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80vh;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content h2 span {
    color: var(--primary);
    display: block;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
    transition: var(--transition);
    align-self: flex-start;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.5);
    color: white;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-svg {
    max-width: 100%;
    height: auto;
}

/* Info Panel */
.info-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    background-color: #F5F5F5;
    text-align: center;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    margin-bottom: 1rem;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.info-item p {
    color: var(--dark);
    opacity: 0.7;
}

/* Features Section */
.features-section {
    padding: 5rem 2rem;
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature {
    padding: 2rem;
    background: #F9F9F9;
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrap {
    margin-bottom: 1.5rem;
}

.feature h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature p {
    opacity: 0.7;
}

/* Experience Section */
.experience-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 2rem;
    background-color: #F5F5F5;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-content .section-title {
    text-align: left;
}

.experience-content .section-title::after {
    left: 0;
    transform: none;
}

.experience-list {
    margin: 2rem 0;
}

.experience-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}

.check-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

.experience-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.experience-svg {
    max-width: 100%;
    height: auto;
}

/* Access Section */
.access-section {
    padding: 5rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), var(--gradient);
    background-blend-mode: overlay;
    color: white;
    text-align: center;
}

.access-content {
    max-width: 700px;
    margin: 0 auto;
}

.access-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.access-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.access-content .cta-button {
    display: inline-block;
    margin-bottom: 2rem;
}

.access-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.access-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.access-icon {
    flex-shrink: 0;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand-info h3 {
    margin-bottom: 0.5rem;
    color: white;
}

.footer-brand-info p {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 5rem;
}

.footer-links-column h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--primary);
    bottom: 0;
    left: 0;
}

.footer-links-column ul li {
    margin-bottom: 0.8rem;
}

.footer-links-column a {
    color: white;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links-column a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.6;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .hero-section,
    .experience-section {
        grid-template-columns: 1fr;
    }
    
    .experience-content .section-title {
        text-align: center;
    }
    
    .experience-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 1rem;
    }
    
    .menu-icon {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        gap: 2rem;
    }
    
    #menu-toggle:checked ~ .nav-menu {
        right: 0;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-section,
    .info-panel,
    .features-grid,
    .footer-top {
        gap: 2rem;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-between;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .info-panel {
        grid-template-columns: 1fr;
    }
    
    .access-features {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
    }
}
