/* AWS Nova Style Library */

:root {
    --primary-color: #6A65D8;
    --secondary-color: #1D2786;
    --third-color: #79bbff;
    --text-color: #333333;
    --text-light: #666666;
    --background-light: #FFE6EB;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#app {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Layout */
.aws-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.aws-section {
    padding: 60px 0;
}

.aws-section-light {
    background-color: var(--aws-light-gray);
}

.aws-section-dark {
    background-color: var(--aws-blue);
    color: white;
}

/* Typography */
.aws-heading {
    font-family: "Amazon Ember", "Helvetica Neue", Roboto, Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.aws-heading-xl {
    font-size: 2.5rem;
}

.aws-heading-lg {
    font-size: 2rem;
}

.aws-heading-md {
    font-size: 1.5rem;
}

.aws-text {
    font-family: "Amazon Ember", "Helvetica Neue", Roboto, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
}

.aws-text-light {
    color: var(--text-light);
}

/* Buttons */
.button {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

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

.button-primary:hover {
    background: var(--secondary-color);
}

.button-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.button-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.button-plus {
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 500;
}

.el-button {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;

    background: var(--primary-color);
    color: var(--white);
}

.el-button:hover {
    background: var(--secondary-color);
}

.el-button:disabled {
    background: var(--third-color);
}
.el-button.is-disabled:hover {
    background: var(--third-color);
}

/* Cards */
.aws-card {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 24px;
    transition: transform 0.2s ease;
}

.aws-card:hover {
    transform: translateY(-4px);
}

/* Grid */
.aws-grid {
    display: grid;
    gap: 24px;
}

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

.aws-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.aws-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Features */
.aws-feature {
    text-align: center;
    padding: 24px;
}

.aws-feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0rem 0 4rem;
    position: relative;
    overflow: hidden;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #560764 0%, #000000 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.nav {
    /* position: fixed; */
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    /* box-shadow: var(--shadow);*/
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 2.3rem;
    font-weight: bold;
    /* color: var(--primary-color); */
    color: #333333;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--white);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    /* box-shadow: var(--shadow); */
    /* border: 1px solid rgba(0, 0, 0, 0.1); */
    /* border-radius: 12px; */
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: bold;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: var(--background-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    /* box-shadow: var(--shadow); */
    /* border-radius: 12px; */
    /* border: 1px solid rgba(0, 0, 0, 0.1); */
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: rgba(74, 144, 226, 0.1);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: bold;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-card {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    /* border-radius: 12px; */
    /* border: 1px solid rgba(0, 0, 0, 0.1); */
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: bold;
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-features li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: black;
    color: var(--white);
    border-top: 0px solid rgba(0, 0, 0, 0.1);
    padding: 4rem 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.footer-title-links {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

h1 {
    display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .features-grid,
    .steps-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
} 