/* Base Styles */
:root {
    --primary: #00BCD4;
    --secondary: #FF5722;
    --dark: #1A1A2E;
    --light: #F7F7F7;
    --text-dark: #16213E;
    --text-light: #F7F7F7;
    --accent: #8BC34A;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --diagonal-angle: 4deg;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    background-color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Diagonal Layout Design */
.diagonal-container {
    width: 100%;
    overflow: hidden;
}

.diagonal-section {
    position: relative;
    padding: 120px 0;
    margin-top: -4vw;
    transform: skewY(var(--diagonal-angle));
    z-index: 1;
}

.diagonal-section:nth-child(odd) {
    background-color: white;
}

.diagonal-section:nth-child(even) {
    background-color: var(--light);
}

.diagonal-section .container {
    transform: skewY(calc(var(--diagonal-angle) * -1));
}

.diagonal-header {
    background-color: var(--dark);
    color: white;
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

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

.nav-links li a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

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

.nav-links li a:hover {
    color: white;
}

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

.cta-small {
    background: var(--gradient);
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
}

.cta-small:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: var(--dark);
    color: white;
    padding-top: 150px;
    margin-top: 0;
}

.hero-content {
    max-width: 600px;
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.cta-button {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: none;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 188, 212, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 188, 212, 0);
    }
}

/* Features Section */
.features {
    background: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    margin-bottom: 20px;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Process Section */
.process {
    background-color: var(--light);
}

.step-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    position: relative;
}

.step {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
    margin: 0 10px 20px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-connector {
    position: absolute;
    top: 40px;
    height: 2px;
    background: var(--gradient);
    width: calc(100% - 240px);
    left: 120px;
    z-index: 1;
}

/* Benefits Section */
.benefits {
    background: white;
}

.benefits-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    margin: 40px 0 20px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.benefits-slider::-webkit-scrollbar {
    display: none;
}

.benefit-card {
    flex: 0 0 auto;
    width: 85%;
    padding: 30px;
    background: var(--light);
    margin-right: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    scroll-snap-align: start;
}

.benefit-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    color: white;
    text-align: center;
}

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

.cta-section h2 {
    color: white;
}

.cta-section .highlight {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.cta-section .cta-button {
    background: white;
    color: var(--primary);
}

.cta-section .cta-button:hover {
    background: var(--light);
}

.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
    margin-top: -4vw;
}

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

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-favicon {
    margin-bottom: 20px;
}

.footer-links h4,
.footer-legal h4 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p,
.seo-keywords p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.seo-keywords p {
    text-align: right;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .footer-logo {
        grid-column: 1 / 3;
    }
    .hero-visual {
        display: none;
    }
    .diagonal-section {
        padding: 80px 0;
    }
    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: all 0.5s ease;
        z-index: 1000;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        margin: 15px 0;
    }
    .benefit-card {
        width: 100%;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .copyright {
        flex-direction: column;
        text-align: center;
    }
    .seo-keywords p {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .diagonal-section {
        padding: 60px 0;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-logo {
        grid-column: 1;
    }
    .footer-favicon {
        margin: 0 auto 20px;
    }
    .footer-logo p {
        text-align: center;
        margin: 0 auto;
    }
    .footer-links h4::after,
    .footer-legal h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links,
    .footer-legal {
        text-align: center;
    }
}
