/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: #1e3a8a;
    stroke-width: 2;
    flex-shrink: 0;
}

.logo-text {
    background: linear-gradient(135deg, #1e3a8a 0%, #6b21a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Fallback for browsers that don't support background-clip */
    color: #1e3a8a;
    /* Fix Chrome rendering issues */
    display: inline-block;
    position: relative;
}

/* Ensure gradient renders properly in Chrome */
@supports (-webkit-background-clip: text) {
    .logo-text {
        color: transparent;
    }
}

.logo-accent {
    font-weight: 400;
    /* Remove opacity that might cause rendering issues */
    color: inherit;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #1e3a8a 0%, #4c1d95 100%);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.cta-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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, #1e40af 0%, #5b21b6 100%);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}

.cta-button-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.35);
}

.cta-button-large:hover {
    box-shadow: 0 10px 28px rgba(30, 58, 138, 0.45);
}

.cta-button-white {
    background: var(--white);
    color: #1e3a8a;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.cta-button-white::before {
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.1), transparent);
}

.cta-button-white:hover {
    background: #f8fafc;
    color: #1e40af;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

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

/* Animated gradient background */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        #1e3a8a 0%,
        #4c1d95 25%,
        #6b21a8 50%,
        #1e40af 75%,
        #1e3a8a 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.9;
    z-index: 0;
}

/* Floating particles effect */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero .cta-button-large {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Gradient animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Particle float animation */
@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon .icon {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    stroke-width: 1.5;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Quickstart Packages Section */
.quickstart {
    padding: 6rem 0;
    background: var(--white);
}

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

.quickstart-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.quickstart-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.quickstart-featured {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border: 2px solid var(--primary-color);
}

.quickstart-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.featured-badge {
    background: var(--secondary-color);
}

.quickstart-icon {
    margin-bottom: 1.5rem;
}

.qs-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    stroke-width: 1.5;
}

.quickstart-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.quickstart-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.quickstart-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.quickstart-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.feature-check {
    width: 16px;
    height: 16px;
    color: #10b981;
    flex-shrink: 0;
}

.quickstart-cta {
    width: 100%;
    margin-top: auto;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 10px;
    padding: 0.9rem 1.75rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #4c1d95 100%);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.3);
}

.quickstart-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(30, 58, 138, 0.4);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

.cloud-illustration {
    background: linear-gradient(135deg, #1e3a8a 0%, #4c1d95 100%);
    height: 450px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.3);
    overflow: hidden;
}

/* Animated gradient overlay */
.cloud-illustration::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.05) 75%,
        transparent 100%
    );
    background-size: 200% 200%;
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
}

.illustration-row {
    display: flex;
    gap: 3.5rem;
    animation: float 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.illustration-row:nth-child(3) {
    animation-delay: 0.7s;
}

.illustration-center {
    position: relative;
    z-index: 1;
}

.illustration-icon {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.illustration-icon:hover {
    transform: scale(1.15) translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.illustration-icon-large {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

.illust-icon {
    width: 44px;
    height: 44px;
    color: var(--white);
    stroke-width: 1.5;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.illust-icon-large {
    width: 90px;
    height: 90px;
    color: var(--white);
    stroke-width: 1.5;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.illustration-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #1e3a8a;
    padding: 0.85rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
    letter-spacing: 0.3px;
}

.badge-icon {
    width: 20px;
    height: 20px;
    color: #f59e0b;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon {
    width: 20px;
    height: 20px;
    color: #f59e0b;
    fill: #f59e0b;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-icon {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #4c1d95 100%);
    color: var(--white);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Animated gradient background */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        #1e3a8a 0%,
        #4c1d95 25%,
        #6b21a8 50%,
        #1e40af 75%,
        #1e3a8a 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.6;
    z-index: 0;
}

/* Floating particles */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.cta-icon-wrapper {
    margin-bottom: 2.5rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.cta-main-icon {
    width: 90px;
    height: 90px;
    color: var(--white);
    stroke-width: 1.5;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.cta-title {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    line-height: 1.15;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.cta-description {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.15rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-benefit:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.cta-check {
    width: 22px;
    height: 22px;
    color: #10b981;
    background: var(--white);
    border-radius: 50%;
    padding: 3px;
    flex-shrink: 0;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cta-button-hero {
    background: var(--white);
    color: #1e3a8a;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.cta-button-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.1), transparent);
    transition: left 0.6s;
}

.cta-button-hero:hover::before {
    left: 100%;
}

.cta-button-hero:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    background: #f8fafc;
}

.cta-button-hero:active {
    transform: translateY(-1px) scale(1);
}

.cta-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.cta-button-hero:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Call Details */
.call-details {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: left;
    display: grid;
    gap: 1.5rem;
}

.call-detail-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.call-detail-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.detail-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.call-detail-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
}

.call-detail-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.call-detail-section ul li {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.call-detail-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links i {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu a {
        display: block;
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1000;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav .cta-button {
        display: none;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 5rem 0 4rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services {
        padding: 4rem 0;
    }

    .quickstart {
        padding: 4rem 0;
    }

    .about {
        padding: 4rem 0;
    }

    .testimonials {
        padding: 4rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .quickstart-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cloud-illustration {
        height: 350px;
        padding: 2rem;
        gap: 2rem;
    }

    .illustration-row {
        gap: 2rem;
    }

    .illust-icon {
        width: 36px;
        height: 36px;
    }

    .illust-icon-large {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 0;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .cta-section {
        padding: 5rem 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.05rem;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-main-icon {
        width: 70px;
        height: 70px;
    }

    .cta-button-hero {
        padding: 1.1rem 1.75rem;
        font-size: 1rem;
        width: 100%;
    }

    .container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 24px;
        height: 24px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .services,
    .quickstart,
    .about,
    .testimonials {
        padding: 3rem 0;
    }

    .service-card,
    .quickstart-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .call-detail-section {
        padding: 1rem;
    }

    .call-detail-section h3 {
        font-size: 0.95rem;
    }

    .call-detail-section p,
    .call-detail-section ul li {
        font-size: 0.85rem;
    }

    .cloud-illustration {
        height: 300px;
        padding: 1.5rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
}

/* Responsive Call Details */
@media (max-width: 768px) {
    .call-details {
        gap: 1rem;
    }

    .call-detail-section {
        padding: 1.25rem;
    }

    .call-detail-section h3 {
        font-size: 1rem;
    }

    .call-detail-section p,
    .call-detail-section ul li {
        font-size: 0.9rem;
    }
}

/* re:Invent Feed Responsive */
@media (max-width: 768px) {
    .reinvent-feed div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 5rem 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-text {
    position: relative;
}

.newsletter-icon {
    width: 48px;
    height: 48px;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-text > p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.newsletter-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: #1f2937;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

.newsletter-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.newsletter-form .form-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.newsletter-input:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.newsletter-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #4c1d95 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.newsletter-button .button-icon {
    width: 18px;
    height: 18px;
}

.newsletter-privacy {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-message {
    padding: 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.newsletter-message.success {
    background: #f0fdf4;
    border: 2px solid #10b981;
    color: #065f46;
}

.newsletter-message.error {
    background: #fef2f2;
    border: 2px solid #ef4444;
    color: #991b1b;
}

.newsletter-message i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.newsletter-message.success i {
    color: #10b981;
}

.newsletter-message.error i {
    color: #ef4444;
}

.newsletter-message p {
    margin: 0;
    font-size: 0.95rem;
}

/* Newsletter Responsive */
@media (max-width: 968px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .newsletter-text h2 {
        font-size: 2rem;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .newsletter-button {
        width: 100%;
        justify-content: center;
    }
}

/* Human Support Section - Hero Style */
.human-support {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.human-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.support-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.support-header {
    text-align: center;
    margin-bottom: 5rem;
}

.support-header .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.support-header .section-subtitle {
    font-size: 1.5rem;
    color: #94a3b8;
    margin-top: 1rem;
    font-weight: 300;
}

.support-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.support-problem,
.support-solution {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-problem:hover,
.support-solution:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.support-problem {
    border-left: 4px solid #ef4444;
    border-top: 1px solid rgba(239, 68, 68, 0.3);
}

.support-solution {
    border-left: 4px solid #10b981;
    border-top: 1px solid rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.08);
}

.problem-badge,
.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.problem-badge {
    background: #fee2e2;
    color: #991b1b;
}

.solution-badge {
    background: #d1fae5;
    color: #065f46;
}

.problem-icon,
.solution-icon {
    width: 18px;
    height: 18px;
}

.support-problem h3,
.support-solution h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.testimonial-quote {
    background: rgba(239, 68, 68, 0.1);
    padding: 2rem;
    border-radius: 16px;
    margin: 1.5rem 0;
    border-left: 4px solid #ef4444;
    position: relative;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.2);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 32px;
    height: 32px;
    color: rgba(239, 68, 68, 0.4);
}

.testimonial-quote p {
    font-style: italic;
    color: #e2e8f0;
    line-height: 1.8;
    margin: 0 0 1rem 0;
    padding-left: 2.5rem;
    font-size: 1.05rem;
}

.testimonial-quote cite {
    font-style: normal;
    font-size: 0.875rem;
    color: #94a3b8;
    padding-left: 2.5rem;
    font-weight: 500;
}

.problem-list,
.solution-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.problem-list li,
.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: #cbd5e1;
    font-size: 1.05rem;
}

.x-icon {
    width: 22px;
    height: 22px;
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.solution-intro {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.solution-cta {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.cta-text {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.support-promise {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 3.5rem;
    border-radius: 24px;
    color: white;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.support-promise::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.promise-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.promise-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    color: white;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.promise-text h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.promise-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .support-comparison {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .promise-content {
        flex-direction: column;
        text-align: center;
    }
    
    .support-header .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .human-support {
        padding: 5rem 0;
    }
    
    .support-header {
        margin-bottom: 3rem;
    }
    
    .support-header .section-title {
        font-size: 2rem;
    }
    
    .support-header .section-subtitle {
        font-size: 1.125rem;
    }
    
    .support-problem,
    .support-solution {
        padding: 2rem 1.5rem;
    }
    
    .support-problem h3,
    .support-solution h3 {
        font-size: 1.5rem;
    }
    
    .testimonial-quote {
        padding: 1.5rem;
    }
    
    .testimonial-quote p {
        font-size: 0.9375rem;
        padding-left: 2rem;
    }
    
    .testimonial-quote cite {
        padding-left: 2rem;
    }
    
    .quote-icon {
        width: 24px;
        height: 24px;
    }
    
    .problem-list li,
    .solution-list li {
        font-size: 0.9375rem;
    }
    
    .solution-intro {
        font-size: 1.05rem;
    }
    
    .support-promise {
        padding: 2.5rem 1.5rem;
    }
    
    .promise-icon {
        width: 56px;
        height: 56px;
    }
    
    .promise-text h4 {
        font-size: 1.5rem;
    }
    
    .promise-text p {
        font-size: 1.05rem;
    }
}
