:root{
    --dark-navy: #142143;
    --yellow: #FFAF00;
    --blue: #1A5D94;
    --light-gray: #E4E4E4;
    --glass: rgba(255,255,255,0.12);
    --glass-strong: rgba(255,255,255,0.18);
    --stroke: rgba(255,175,0,0.35);
    --card-bg: rgba(255,255,255,0.92);
    --text-on-dark: rgba(255,255,255,0.95);
    --text-muted-dark: rgba(255,255,255,0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--blue) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.code-rain {
    position: absolute;
    width: 100%;
    height: 100%;
}

.code-line {
    position: absolute;
    color: var(--yellow);
    font-family: 'Courier New', monospace;
    font-size: clamp(10px, 2vw, 14px);
    animation: codeRain linear infinite;
    animation-duration: var(--duration);
    animation-delay: var(--delay);
}

.code-line:nth-child(1) { left: 5%; }
.code-line:nth-child(2) { left: 20%; }
.code-line:nth-child(3) { left: 35%; }
.code-line:nth-child(4) { left: 50%; }
.code-line:nth-child(5) { left: 65%; }
.code-line:nth-child(6) { left: 80%; }
.code-line:nth-child(7) { left: 95%; }

@keyframes codeRain {
    0% {
        top: -100px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100vh;
        opacity: 0;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 80px);
    align-items: center;
    z-index: 2;
    position: relative;
    width: 100%;
}

.hero-text h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-on-dark);
    margin-bottom: clamp(15px, 3vw, 25px);
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, var(--yellow), #FFC700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-muted-dark);
    margin-bottom: clamp(25px, 5vw, 40px);
}

.setup-options {
    display: flex;
    align-items: center;
    gap: clamp(15px, 4vw, 30px);
    margin-bottom: clamp(30px, 6vw, 50px);
    flex-wrap: wrap;
}

.option-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--stroke);
    border-radius: 20px;
    padding: clamp(15px, 3vw, 25px);
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.option-card:hover {
    transform: translateY(-5px);
    background: var(--glass-strong);
}

.option-icon {
    width: clamp(45px, 8vw, 60px);
    height: clamp(45px, 8vw, 60px);
    background: var(--yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.option-icon i {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--dark-navy);
}

.option-card h3 {
    color: var(--text-on-dark);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 10px;
}

.option-card p {
    color: var(--text-muted-dark);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin-bottom: 15px;
}

.price {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--yellow);
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(45px, 8vw, 60px);
    height: clamp(45px, 8vw, 60px);
    background: var(--yellow);
    border-radius: 50%;
    color: var(--dark-navy);
    font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: clamp(12px, 2.5vw, 15px) clamp(20px, 4vw, 30px);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: clamp(0.9rem, 2vw, 1rem);
    min-width: 150px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, var(--yellow), #FFC700);
    color: var(--dark-navy);
    box-shadow: 0 10px 30px rgba(255, 175, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 175, 0, 0.4);
}

.btn-secondary {
    background: var(--glass);
    color: var(--text-on-dark);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: var(--glass-strong);
    transform: translateY(-3px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.website-preview {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.browser-mockup {
    width: 100%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    overflow: hidden;
}

.browser-header {
    height: clamp(40px, 6vw, 50px);
    background: #f5f5f5;
    display: flex;
    align-items: center;
    padding: 0 clamp(15px, 3vw, 20px);
    gap: 15px;
}

.browser-buttons {
    display: flex;
    gap: 8px;
}

.browser-buttons span {
    width: clamp(8px, 2vw, 12px);
    height: clamp(8px, 2vw, 12px);
    border-radius: 50%;
}

.btn-close { background: #ff5f57; }
.btn-minimize { background: #ffbd2e; }
.btn-maximize { background: #28ca42; }

.browser-url {
    flex: 1;
    text-align: center;
    background: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    color: #666;
}

.browser-content {
    height: clamp(200px, 25vw, 300px);
    padding: clamp(15px, 3vw, 20px);
}

.website-skeleton {
    height: 100%;
    animation: skeletonLoad 2s ease-in-out infinite alternate;
}

.skeleton-header {
    height: clamp(30px, 5vw, 40px);
    background: linear-gradient(90deg, var(--light-gray) 25%, #f0f0f0 50%, var(--light-gray) 75%);
    border-radius: 8px;
    margin-bottom: clamp(15px, 3vw, 20px);
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

.skeleton-nav {
    height: clamp(15px, 3vw, 20px);
    background: linear-gradient(90deg, var(--light-gray) 25%, #f0f0f0 50%, var(--light-gray) 75%);
    border-radius: 8px;
    margin-bottom: clamp(15px, 3vw, 20px);
    animation: skeleton-loading 1.5s ease-in-out infinite;
    animation-delay: 0.2s;
}

.skeleton-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: clamp(10px, 2vw, 15px);
}

.skeleton-box {
    height: clamp(60px, 10vw, 80px);
    background: linear-gradient(90deg, var(--light-gray) 25%, #f0f0f0 50%, var(--light-gray) 75%);
    border-radius: 8px;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

.skeleton-box:nth-child(1) { animation-delay: 0.4s; }
.skeleton-box:nth-child(2) { animation-delay: 0.6s; }
.skeleton-box:nth-child(3) { animation-delay: 0.8s; }

@keyframes skeleton-loading {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* Platforms Section */
.platforms {
    padding: clamp(60px, 12vw, 100px) 0;
    background: var(--card-bg);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(50px, 10vw, 80px);
}

.section-header h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    background:  var(--dark-navy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.section-header p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #666;
    max-width: 600px;
    margin: 0 auto;
     background:  var(--yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(20px, 4vw, 30px);
}

.platform-card {
    background: white;
    border-radius: 25px;
    padding: clamp(25px, 5vw, 40px) clamp(20px, 4vw, 30px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.platform-card.featured {
    border-color: var(--yellow);
}

.platform-card.custom {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--blue) 100%);
    color: var(--text-on-dark);
}

.platform-card.custom .platform-features li,
.platform-card.custom p,
.platform-card.custom h3 {
    color: var(--text-on-dark);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--dark-navy);
    padding: clamp(6px, 1.5vw, 8px) clamp(12px, 2.5vw, 15px);
    border-radius: 20px;
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 175, 0, 0.3);
}

.platform-logo {
    width: clamp(60px, 12vw, 80px);
    height: clamp(60px, 12vw, 80px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.platform-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.platform-logo.wordpress { background: #21759b; }
.platform-logo.shopify { background: #96bf48; }
.platform-logo.opencart { background: #1e91cf; }
.platform-logo.custom-code { background: linear-gradient(45deg, var(--yellow), #FFC700); }

.platform-logo i {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: white;
}

.platform-logo.custom-code i {
    color: var(--dark-navy);
}

.platform-card h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.platform-desc {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.platform-features {
    list-style: none;
    margin-bottom: 25px;
}

.platform-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.platform-features i {
    color: var(--blue);
    font-size: 0.8rem;
}

.platform-card.custom .platform-features i {
    color: var(--yellow);
}

.platform-price {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.platform-card.custom .platform-price {
    border-top-color: var(--stroke);
}

.platform-price .price {
    font-size: clamp(1.5rem, 3.5vw, 1.8rem);
    font-weight: 700;
    color: var(--yellow);
}

.platform-price .duration {
    display: block;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: #999;
    margin-top: 5px;
}

/* Services Workflow */
.services-workflow {
    padding: clamp(60px, 12vw, 100px) 0;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--blue) 100%);
}

.services-workflow .section-header h2,
.services-workflow .section-header p {
    color: var(--text-on-dark);
}

.workflow-container {
    position: relative;
}

.workflow-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.workflow-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--yellow);
    transform: translateX(-50%);
}

.workflow-step {
    display: flex;
    align-items: center;
    margin-bottom: clamp(50px, 10vw, 80px);
    position: relative;
}

.workflow-step.reverse {
    flex-direction: row-reverse;
}

.workflow-step.reverse .step-content {
    text-align: right;
}

.step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--dark-navy);
    z-index: 2;
}

.step-content {
    flex: 1;
    padding: clamp(20px, 4vw, 30px);
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--stroke);
    border-radius: 20px;
    margin-right: clamp(80px, 12vw, 100px);
}

.workflow-step.reverse .step-content {
    margin-right: 0;
    margin-left: clamp(80px, 12vw, 100px);
}

.step-content h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    color: var(--text-on-dark);
    margin-bottom: 15px;
}

.step-content p {
    color: var(--text-muted-dark);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.step-content ul {
    list-style: none;
}

.step-content li {
    color: var(--text-muted-dark);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.step-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--yellow);
}

.step-icon {
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--stroke);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: clamp(80px, 12vw, 100px);
}

.workflow-step.reverse .step-icon {
    margin-left: 0;
    margin-right: clamp(80px, 12vw, 100px);
}

.step-icon i {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--yellow);
}

/* Portfolio */
.portfolio {
    padding: clamp(60px, 12vw, 100px) 0;
    background: var(--card-bg);
}

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(20px, 4vw, 30px);
    margin-bottom: clamp(50px, 10vw, 80px);
}

.stat-item {
    text-align: center;
    background: white;
    padding: clamp(30px, 6vw, 40px) clamp(20px, 4vw, 30px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 10px;
}

.stat-label {
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    color: var(--dark-navy);
    font-weight: 500;
}

.portfolio-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(20px, 4vw, 30px);
}

.showcase-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.showcase-image {
    height: clamp(150px, 25vw, 200px);
    background: linear-gradient(135deg, var(--blue) 0%, var(--dark-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-placeholder {
    text-align: center;
    color: var(--text-on-dark);
}

.image-placeholder i {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--yellow);
    margin-bottom: 10px;
    display: block;
}

.showcase-info {
    padding: clamp(20px, 4vw, 30px);
}

.showcase-info h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.showcase-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.showcase-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.showcase-tags span {
    background: var(--light-gray);
    color: var(--dark-navy);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    font-weight: 500;
}

/* Pricing Comparison */
.pricing-comparison {
    padding: clamp(60px, 12vw, 100px) 0;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--blue) 100%);
}

.pricing-comparison .section-header h2,
.pricing-comparison .section-header p {
    color: var(--text-on-dark);
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 4vw, 30px);
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--stroke);
    border-radius: 25px;
    padding: clamp(30px, 6vw, 40px) clamp(20px, 4vw, 30px);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-10px);
    background: var(--glass-strong);
}

.comparison-card.premium {
    border-color: var(--yellow);
}

.card-header h3 {
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--text-on-dark);
    margin-bottom: 15px;
}

.card-header .price {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 10px;
}

.card-header p {
    color: var(--text-muted-dark);
    margin-bottom: 30px;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-muted-dark);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.features-list i {
    font-size: 0.9rem;
}

.features-list .fa-check {
    color: var(--yellow);
}

.features-list .fa-times {
    color: #ff4757;
}

.btn-select {
    width: 100%;
    padding: clamp(12px, 2.5vw, 15px) clamp(20px, 4vw, 30px);
    background: var(--yellow);
    color: var(--dark-navy);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.btn-select:hover {
    background: #FFC700;
    transform: translateY(-2px);
}

/* Contact */
.contact {
    padding: clamp(60px, 12vw, 100px) 0;
    background: var(--card-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(40px, 8vw, 60px);
    margin-top: clamp(40px, 8vw, 60px);
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: clamp(20px, 4vw, 30px);
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    background: linear-gradient(45deg, var(--blue), var(--dark-navy));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--yellow);
}

.info-card h3 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 5px;
}

.info-card p {
    color: #666;
    margin: 0;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: clamp(12px, 2.5vw, 15px);
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item i {
    width: clamp(35px, 6vw, 40px);
    height: clamp(35px, 6vw, 40px);
    background: var(--yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.contact-item h4 {
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 2px;
}

.contact-item p {
    color: #666;
    margin: 0;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}

.contact-form-container {
    background: white;
    border-radius: 25px;
    padding: clamp(25px, 5vw, 40px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(15px, 3vw, 20px);
}

.form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: clamp(12px, 2.5vw, 15px) clamp(15px, 3vw, 20px);
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    background: #f8f9fa;
    color: #333;
    font-family: inherit;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--yellow);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 175, 0, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: clamp(100px, 15vw, 120px);
}

.form-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: clamp(15px, 3vw, 20px);
    background: #f8f9fa;
    border-radius: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}

.feature-item i {
    color: var(--blue);
}

/* Additional Responsive Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.p-0 { padding: 0; }

/* Responsive Design Media Queries */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 60px;
    }
    
    .workflow-timeline::before {
        left: 40px;
    }
    
    .step-content {
        margin-right: 80px;
    }
    
    .workflow-step.reverse .step-content {
        margin-left: 80px;
        margin-right: 0;
    }
    
    .step-icon {
        margin-left: 80px;
    }
    
    .workflow-step.reverse .step-icon {
        margin-right: 80px;
        margin-left: 0;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .setup-options {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .workflow-timeline::before {
        left: 30px;
    }

    .workflow-step,
    .workflow-step.reverse {
        flex-direction: column;
        text-align: center;
        align-items: flex-start;
    }

    .workflow-step .step-content,
    .workflow-step.reverse .step-content {
        margin: 0;
        text-align: center;
        margin-left: 60px;
        width: calc(100% - 60px);
    }

    .step-number {
        position: absolute;
        left: 30px;
        transform: translateX(-50%);
        top: 30px;
    }

    .step-icon {
        margin: 20px 0 0 60px;
        align-self: flex-start;
    }

    .workflow-step.reverse .step-icon {
        margin: 20px 0 0 60px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .portfolio-stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 60px 0 20px;
    }
    
    .hero-text h1 {
        text-align: center;
    }
    
    .setup-options {
        flex-direction: column;
        gap: 20px;
    }

    .vs-divider {
        transform: rotate(90deg);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-card {
        margin: 0 10px;
    }

    .portfolio-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .comparison-table {
        grid-template-columns: 1fr;
    }

    .comparison-card.premium {
        transform: none;
        order: -1;
    }
    
    .showcase-tags {
        justify-content: center;
    }
    
    .workflow-step .step-content {
        margin-left: 50px;
        width: calc(100% - 50px);
    }
    
    .step-icon {
        margin-left: 50px;
    }
    
    .workflow-step.reverse .step-icon {
        margin-left: 50px;
    }
    
    .form-features {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .option-card {
        min-width: auto;
    }
    
    .setup-options {
        gap: 15px;
    }
    
    .browser-mockup {
        margin: 0 10px;
    }
    
    .workflow-step .step-content {
        margin-left: 40px;
        width: calc(100% - 40px);
    }
    
    .step-number {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-icon {
        margin-left: 40px;
        width: 60px;
        height: 60px;
    }
    
    .workflow-step.reverse .step-icon {
        margin-left: 40px;
    }
    
    .portfolio-stats {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }

    .platform-card,
    .contact-form-container,
    .comparison-card {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .showcase-item {
        margin: 0 5px;
    }

    .btn {
        width: 100%;
        max-width: none;
        justify-content: center;
    }
    
    .hero-buttons {
        gap: 15px;
    }

    .popular-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .browser-header {
        padding: 0 10px;
    }
    
    .browser-url {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    .workflow-step .step-content {
        margin-left: 35px;
        width: calc(100% - 35px);
        padding: 20px 15px;
    }
    
    .step-number {
        left: 17px;
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .step-icon {
        margin-left: 35px;
        width: 50px;
        height: 50px;
    }
    
    .workflow-step.reverse .step-icon {
        margin-left: 35px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .info-card {
        padding: 20px 15px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .platform-card,
    .contact-form-container,
    .comparison-card,
    .showcase-item {
        margin: 0;
    }
    
    .option-card {
        padding: 15px;
    }
    
    .hero-text h1 {
        line-height: 1.1;
    }
    
    .workflow-step .step-content {
        margin-left: 30px;
        width: calc(100% - 30px);
        padding: 15px;
    }
    
    .step-number {
        left: 15px;
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .step-icon {
        margin-left: 30px;
        width: 45px;
        height: 45px;
    }
    
    .workflow-step.reverse .step-icon {
        margin-left: 30px;
    }
}

/* High DPI and Retina Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .platform-logo,
    .option-icon,
    .info-icon {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .browser-header {
        background: #2a2a2a;
    }
    
    .browser-url {
        background: #1a1a1a;
        color: #ccc;
    }
    
    .browser-mockup {
        box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .code-line,
    .skeleton-header,
    .skeleton-nav,
    .skeleton-box {
        animation: none;
    }
    
    .btn:hover,
    .platform-card:hover,
    .showcase-item:hover,
    .comparison-card:hover {
        transform: none;
    }
    
    * {
        transition: none !important;
    }
}

/* Print Styles */
@media print {
    .hero,
    .code-rain {
        background: white !important;
        color: black !important;
    }
    
    .btn {
        border: 2px solid black !important;
        background: white !important;
        color: black !important;
    }
    
    .platform-card,
    .showcase-item,
    .comparison-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ccc;
    }
}