/* 
  28h.dev - AWS Marketplace AMI Specialists
  Modern Cyberpunk Theme CSS
*/

/* ===== VARIABLES ===== */
:root {
    /* Color Scheme */
    --dark-bg-1: #0a0a0f;
    --dark-bg-2: #1a1a2e;
    --neon-orange: #ff6b35;
    --neon-blue: #00d4ff;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #7a7a8c;
    --card-bg: rgba(26, 26, 46, 0.8);
    --border-color: rgba(0, 212, 255, 0.2);
    --success-color: #4caf50;
    --error-color: #f44336;
    
    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-alt: 'Roboto', sans-serif;
    
    /* Sizes */
    --header-height: 80px;
    --section-spacing: 100px;
    --border-radius: 8px;
    --card-border-radius: 12px;
    
    /* Transitions */
    --transition-fast: 0.3s;
    --transition-medium: 0.5s;
    --transition-slow: 0.8s;
    
    /* Shadows */
    --neon-orange-glow: 0 0 10px rgba(255, 107, 53, 0.5), 0 0 20px rgba(255, 107, 53, 0.3), 0 0 30px rgba(255, 107, 53, 0.1);
    --neon-blue-glow: 0 0 10px rgba(0, 212, 255, 0.5), 0 0 20px rgba(0, 212, 255, 0.3), 0 0 30px rgba(0, 212, 255, 0.1);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--dark-bg-1), var(--dark-bg-2));
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

h1 {
    font-size: 5rem;
}

h2 {
    font-size: 4rem;
}

h3 {
    font-size: 2.8rem;
}

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

a:hover {
    color: var(--neon-orange);
}

ul {
    list-style: none;
}

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

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

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg-1);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.preloader-logo {
    width: 150px;
    height: 150px;
}

.logo-container {
    margin-bottom: 2rem;
}

.clock {
    fill: none;
    stroke-width: 4px;
}

.clock-face {
    stroke: var(--neon-blue);
    stroke-dasharray: 360;
    stroke-dashoffset: 360;
    animation: clockFace 1.5s ease forwards;
}

.clock-hour, .clock-minute {
    stroke: var(--neon-orange);
    stroke-linecap: round;
    opacity: 0;
    animation: handAppear 0.5s ease forwards 1.5s;
}

.clock-center {
    fill: var(--neon-orange);
    opacity: 0;
    animation: handAppear 0.5s ease forwards 1.5s;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    fill: var(--text-primary);
    opacity: 0;
    animation: fadeIn 0.5s ease forwards 2s;
}

.loading-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
    margin-top: 1rem;
}

.dots {
    display: inline-block;
    animation: dots 1.5s infinite;
}

@keyframes clockFace {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes handAppear {
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes dots {
    0%, 20% {
        content: ".";
    }
    40% {
        content: "..";
    }
    60%, 100% {
        content: "...";
    }
}

/* ===== PARTICLES.JS ===== */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::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: all 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--neon-orange);
    color: var(--text-primary);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.btn-primary:hover {
    background-color: var(--neon-orange);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.7);
    transform: translateY(-3px);
    color: var(--text-primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.btn-outline:hover {
    background-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    transform: translateY(-3px);
    color: var(--dark-bg-1);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background-color var(--transition-fast);
    height: var(--header-height);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(10, 10, 15, 0.8);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo a {
    display: block;
}

.logo svg {
    width: 100px;
    height: 40px;
}

.logo .logo-text {
    fill: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 20px;
    animation: none;
    opacity: 1;
}

.logo .clock-face {
    stroke: var(--neon-blue);
    animation: none;
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
}

.logo .clock-hour, .logo .clock-minute, .logo .clock-center {
    animation: none;
    opacity: 1;
    stroke: var(--neon-orange);
}

.logo .clock-center {
    fill: var(--neon-orange);
}

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

.nav-links li {
    margin: 0 1.5rem;
}

.nav-link {
    font-size: 1.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--neon-orange);
    transition: width var(--transition-fast);
    box-shadow: var(--neon-orange-glow);
}

.nav-link:hover::after {
    width: 100%;
}

.language-selector {
    display: flex;
    margin-left: 2rem;
}

.language-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    cursor: pointer;
    margin: 0 0.5rem;
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

.language-btn:hover, .language-btn.active {
    color: var(--text-primary);
    background-color: rgba(255, 107, 53, 0.2);
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all var(--transition-fast);
    background-color: var(--text-primary);
    box-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
}

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

.hero-content {
    width: 50%;
}

.hero h1 {
    margin-bottom: 2rem;
    background: linear-gradient(to right, var(--text-primary) 0%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.glitch-text {
    position: relative;
}

.glitch-text::before, .glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--text-primary) 0%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 var(--neon-blue);
    animation: glitch-1 2s linear infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    opacity: 0.8;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 var(--neon-orange);
    animation: glitch-2 2s linear infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    opacity: 0.8;
}

@keyframes glitch-1 {
    0%, 100% { clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
    20% { clip-path: polygon(0 15%, 100% 15%, 100% 45%, 0 45%); }
    40% { clip-path: polygon(0 30%, 100% 30%, 100% 45%, 0 45%); }
    60% { clip-path: polygon(0 0, 100% 0, 100% 25%, 0 25%); }
    80% { clip-path: polygon(0 10%, 100% 10%, 100% 45%, 0 45%); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%); }
    20% { clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%); }
    40% { clip-path: polygon(0 55%, 100% 55%, 100% 80%, 0 80%); }
    60% { clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%); }
    80% { clip-path: polygon(0 85%, 100% 85%, 100% 100%, 0 100%); }
}

.typing-container {
    min-height: 6rem;
    margin-bottom: 3rem;
}

.subtitle {
    font-size: 2.4rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-weight: 500;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background-color: var(--neon-orange);
    margin-left: 0.2rem;
    animation: blink 0.7s infinite;
    vertical-align: middle;
}

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

.hero-cta {
    display: flex;
    gap: 2rem;
}

.hero-image {
    width: 40%;
    position: relative;
}

.tech-circle {
    width: 350px;
    height: 350px;
    position: relative;
    margin: 0 auto;
}

.circle-inner {
    width: 100%;
    height: 100%;
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5), inset 0 0 20px rgba(0, 212, 255, 0.2);
    animation: rotate 20s linear infinite;
}

.tech-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotate-reverse 20s linear infinite;
}

.tech-icons i {
    position: absolute;
    font-size: 3rem;
    color: var(--text-primary);
    background: rgba(10, 10, 15, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    transition: all var(--transition-medium);
}

.tech-icons i:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.tech-icons i:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.tech-icons i:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.tech-icons i:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.tech-icons i:nth-child(5) {
    top: 25%;
    left: 25%;
}

.tech-icons i:hover {
    color: var(--neon-orange);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.7);
    transform: scale(1.2);
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.4rem;
    animation: bounce 2s infinite;
}

.scroll-down i {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* ===== SECTION COMMON STYLES ===== */
section {
    padding: var(--section-spacing) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    display: inline-block;
    position: relative;
    font-size: 4rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.section-title::before, .section-title::after {
    content: '';
    position: absolute;
    height: 2px;
    bottom: -10px;
}

.section-title::before {
    width: 60%;
    left: 20%;
    background-color: var(--neon-blue);
    box-shadow: var(--neon-blue-glow);
}

.section-title::after {
    width: 30%;
    left: 35%;
    background-color: var(--neon-orange);
    bottom: -15px;
    box-shadow: var(--neon-orange-glow);
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-orange));
    margin: 0 auto;
    position: relative;
    border-radius: 2px;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, rgba(0, 212, 255, 0.3), rgba(255, 107, 53, 0.3));
    filter: blur(5px);
    border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}

.about-text {
    width: 50%;
}

.about-description {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    line-height: 1.8;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--card-border-radius);
    background-color: var(--card-bg);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--neon-orange);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.6rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    width: 40%;
    position: relative;
}

.tech-glow {
    width: 300px;
    height: 300px;
    position: relative;
    margin: 0 auto;
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, rgba(0, 212, 255, 0) 70%);
    border-radius: 50%;
    animation: pulse-glow 3s infinite;
}

.aws-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12rem;
    color: var(--neon-blue);
    animation: rotate 15s linear infinite;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.7);
}

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

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: var(--card-border-radius);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 53, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    border-color: var(--neon-blue);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    color: var(--neon-blue);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
    color: var(--neon-orange);
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
    transform: scale(1.1);
}

.service-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    font-size: 1.6rem;
    line-height: 1.6;
}

/* ===== HOW IT WORKS SECTION ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, 
        var(--neon-blue) 0%, 
        var(--neon-orange) 50%, 
        var(--neon-blue) 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.timeline-item {
    position: relative;
    padding-bottom: 6rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--dark-bg-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    z-index: 2;
    font-size: 2.4rem;
    color: var(--neon-orange);
    transition: all var(--transition-medium);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
    padding-right: 5rem;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    padding-left: 5rem;
}

.timeline-content {
    background-color: var(--card-bg);
    border-radius: var(--card-border-radius);
    padding: 3rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 15px;
    width: 30px;
    height: 2px;
    background-color: var(--neon-blue);
    box-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    border-color: var(--neon-orange);
}

.timeline-item:hover .timeline-icon {
    background-color: var(--neon-blue);
    color: var(--dark-bg-1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.7);
}

.timeline-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-description {
    color: var(--text-secondary);
    font-size: 1.6rem;
    line-height: 1.6;
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.pricing-card {
    background-color: var(--card-bg);
    border-radius: var(--card-border-radius);
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.featured {
    border-color: var(--neon-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transform: scale(1.05);
    z-index: 2;
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--neon-orange);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    padding: 0.5rem 3.5rem;
    transform: rotate(45deg);
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
}

.featured:hover {
    transform: translateY(-15px) scale(1.05);
}

.pricing-header {
    margin-bottom: 3rem;
}

.pricing-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.pricing-price {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.currency {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-blue);
    vertical-align: top;
    margin-right: 0.5rem;
}

.amount {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.period {
    font-family: var(--font-alt);
    font-size: 1.6rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
    display: block;
    margin-top: 0.5rem;
}

.custom-price {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.pricing-features {
    margin-bottom: 3rem;
}

.pricing-features ul {
    padding: 0 1rem;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px dashed var(--border-color);
    color: var(--text-secondary);
    font-size: 1.6rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-cta {
    margin-top: 3rem;
}

/* ===== FAQ SECTION ===== */
.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 2rem;
    border-radius: var(--card-border-radius);
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.accordion-item:hover {
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
    border-color: var(--neon-blue);
}

.accordion-header {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h3 {
    font-size: 2rem;
    margin-bottom: 0;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.accordion-icon {
    font-size: 1.8rem;
    color: var(--neon-blue);
    transition: all var(--transition-fast);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--neon-orange);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium) ease;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

.accordion-content p {
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.6rem;
}

.accordion-item.active .accordion-header h3 {
    color: var(--neon-orange);
}

/* ===== CONTACT SECTION ===== */
.contact-container {
    display: flex;
    gap: 5rem;
}

.contact-info {
    width: 40%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    font-size: 2rem;
    color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    transition: all var(--transition-fast);
}

.info-item:hover .info-icon {
    background-color: var(--neon-blue);
    color: var(--dark-bg-1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.info-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-secondary);
    font-size: 1.6rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 4rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--neon-orange);
    color: var(--dark-bg-1);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
    transform: translateY(-5px);
}

.contact-form-container {
    width: 60%;
    position: relative;
}

.contact-form {
    background-color: var(--card-bg);
    border-radius: var(--card-border-radius);
    padding: 4rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 2.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background-color: rgba(26, 26, 46, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.6rem;
    transition: all var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.form-group input.invalid, .form-group textarea.invalid {
    border-color: var(--error-color);
    box-shadow: 0 0 10px rgba(244, 67, 54, 0.3);
}

.invalid-feedback {
    color: var(--error-color);
    font-size: 1.4rem;
    margin-top: 0.5rem;
    display: none;
}

.form-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--card-bg);
    border-radius: var(--card-border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    text-align: center;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.success-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.form-success h3 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.form-success p {
    color: var(--text-secondary);
    font-size: 1.8rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: rgba(10, 10, 15, 0.95);
    padding: 8rem 0 2rem;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5rem;
}

.footer-logo {
    flex: 1;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
}

.footer-links-column h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.footer-links-column ul li {
    margin-bottom: 1rem;
	width: 115px;
}

.footer-links-column ul li a {
    color: var(--text-secondary);
    font-size: 1.6rem;
    transition: all var(--transition-fast);
}

.footer-links-column ul li a:hover {
    color: var(--neon-orange);
    padding-left: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 1.4rem;
}

.aws-marketplace a {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 1.4rem;
    transition: all var(--transition-fast);
}

.aws-marketplace a i {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--neon-blue);
}

.aws-marketplace a:hover {
    color: var(--neon-orange);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--neon-blue);
    color: var(--dark-bg-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    z-index: 99;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--neon-orange);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
    transform: translateY(-5px);
}

/* ===== MEDIA QUERIES ===== */
@media screen and (max-width: 1024px) {
    html {
        font-size: 56.25%; /* 1rem = 9px */
    }
    
    .hero-content {
        width: 55%;
    }
    
    .hero-image {
        width: 45%;
    }
    
    .tech-circle {
        width: 300px;
        height: 300px;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .contact-container {
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 50%; /* 1rem = 8px */
    }
    
    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 70%;
        height: calc(100vh - var(--header-height));
        background-color: rgba(10, 10, 15, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all var(--transition-fast);
        backdrop-filter: blur(10px);
        border-left: 1px solid var(--border-color);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 2rem 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content, .hero-image {
        width: 100%;
    }
    
    .hero-image {
        margin-top: 4rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        width: 100%;
    }
    
    .about-image {
        margin-top: 4rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-icon {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -30px;
        right: auto;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form-container {
        width: 100%;
    }
    
    .contact-info {
        margin-bottom: 4rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 4rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 3.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .featured {
        transform: none;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2.5rem;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
    }
}
