/* Design Tokens */
:root {
    --color-navy: #0A192F;
    --color-cyan: #00D1FF;
    --color-dark-bg: #050B1B;
    --color-text: #E6F2FF;
    --color-text-dim: rgba(230, 242, 255, 0.7);
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --transition: 300ms ease-in-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.65;
    color: var(--color-text);
    background: linear-gradient(135deg, #050b1b 0%, #0a1529 50%, #050b1b 100%);
    min-height: 100vh;
    background-attachment: fixed;
}

/* Remove horizontal scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: var(--color-cyan);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00b8d4;
}

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
}

button,
input,
textarea {
    font: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(5, 11, 27, 0.85);
    border-bottom: 1px solid rgba(0, 209, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    color: var(--color-cyan);
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    transition: text-shadow var(--transition);
}

.logo:hover {
    text-shadow: 0 0 20px rgba(0, 209, 255, 0.6);
}

.bracket {
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin-left: auto;
    justify-content: flex-end;
    align-items: center;
}

.nav-links a {
    color: var(--color-text-dim);
    font-size: 0.95rem;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-cyan);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--color-cyan);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0, 209, 255, 0.1);
    border: 1px solid var(--color-cyan);
    color: var(--color-cyan);
}

.btn-nav:hover {
    background: rgba(0, 209, 255, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-glow {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 209, 255, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 80% 50%, rgba(0, 209, 255, 0.1) 0%, transparent 25%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
}

.eyebrow {
    display: inline-block;
    width: fit-content;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-cyan);
    background: rgba(0, 209, 255, 0.1);
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 209, 255, 0.3);
}

h1 {
    font-size: clamp(3rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-cyan), #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--color-text-dim);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-cyan), #00f5ff);
    color: var(--color-navy);
    box-shadow: 0 0 20px rgba(0, 209, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 209, 255, 0.5);
}

.btn-secondary {
    background: rgba(0, 209, 255, 0.12);
    color: var(--color-cyan);
    border: 1px solid rgba(0, 209, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(0, 209, 255, 0.2);
    border-color: var(--color-cyan);
    transform: translateY(-3px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-service {
    margin-top: auto;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(0, 209, 255, 0.15);
    color: var(--color-cyan);
    border: 1px solid rgba(0, 209, 255, 0.3);
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-service:hover {
    background: rgba(0, 209, 255, 0.25);
    border-color: var(--color-cyan);
}

.btn-detail {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(0, 209, 255, 0.1);
    color: var(--color-cyan);
    font-weight: 600;
    font-size: 0.85rem;
}

.btn-detail:hover {
    background: rgba(0, 209, 255, 0.2);
}

.btn-price {
    width: 100%;
    margin-top: 1.6rem;
    background: linear-gradient(135deg, rgba(0, 209, 255, 0.95), rgba(75, 241, 255, 0.9));
    color: var(--color-navy);
    border-radius: 18px;
    padding: 14px 0;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 209, 255, 0.2);
    font-weight: 700;
}

.btn-price:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 209, 255, 0.28);
}

.btn-price-featured {
    background: linear-gradient(135deg, #24d49c, #00c1ff);
    color: #061a2a;
}

.btn-price-featured:hover {
    box-shadow: 0 18px 40px rgba(0, 209, 255, 0.45);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.code-preview {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-2xl);
    background: rgba(10, 25, 54, 0.95);
    border: 1px solid rgba(0, 209, 255, 0.2);
    box-shadow: 0 0 40px rgba(0, 209, 255, 0.2);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.code-header {
    display: flex;
    gap: 8px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(0, 209, 255, 0.1);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.code-body {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #ffffff;
}

.code-line {
    margin-bottom: 8px;
}

.keyword {
    color: #ff79c6;
}

.string {
    color: #f1fa8c;
}

.bool {
    color: #8be9fd;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--color-text-dim);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: linear-gradient(180deg, rgba(5, 11, 27, 0.95) 0%, rgba(10, 25, 54, 0.9) 50%, rgba(5, 11, 27, 0.95) 100%);
}

.about-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 209, 255, 0.08) 0%, transparent 15%),
        radial-gradient(circle at 70% 80%, rgba(0, 209, 255, 0.06) 0%, transparent 20%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.intro-text {
    font-size: 1.05rem;
    color: var(--color-text-dim);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-text strong {
    color: var(--color-cyan);
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.list-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: var(--color-text-dim);
    line-height: 1.7;
}

.check-icon {
    color: var(--color-cyan);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-cyan);
    line-height: 1;
}

.stat-label {
    color: var(--color-text-dim);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.laptop-frame {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #1a2d3a, #0f1b27);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 209, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 209, 255, 0.2);
    transform: rotateY(-8deg) rotateX(2deg);
    overflow: hidden;
}

.laptop-code {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #a6e22e;
    line-height: 1.8;
    overflow: auto;
    height: 100%;
}

.code-line {
    margin-bottom: 4px;
}

.code-tag {
    color: #f92672;
}

.code-attr {
    color: #a6e22e;
}

.code-string {
    color: #e6db74;
}

/* Why Section */
.why-section {
    background: linear-gradient(135deg, rgba(10, 25, 54, 0.95) 0%, rgba(5, 11, 27, 0.9) 50%, rgba(15, 30, 60, 0.95) 100%);
}

.why-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 209, 255, 0.1) 0%, transparent 18%),
        radial-gradient(circle at 80% 30%, rgba(0, 209, 255, 0.08) 0%, transparent 20%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.why-card {
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    background: rgba(0, 209, 255, 0.04);
    border: 1px solid rgba(0, 209, 255, 0.15);
    backdrop-filter: blur(8px);
    transition: all var(--transition);
    position: relative;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at 0% 0%, rgba(0, 209, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);
    background: rgba(0, 209, 255, 0.08);
    border-color: rgba(0, 209, 255, 0.3);
}

.why-card:hover::before {
    opacity: 1;
}

.why-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-cyan);
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.why-card p {
    color: var(--color-text-dim);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, rgba(5, 11, 27, 0.98) 0%, rgba(10, 25, 54, 0.95) 100%);
}

.services-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 209, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 209, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(0, 209, 255, 0.05), transparent 60%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.service-card {
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    background: rgba(0, 209, 255, 0.05);
    border: 1px solid rgba(0, 209, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 209, 255, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(0, 209, 255, 0.1);
    border-color: rgba(0, 209, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 209, 255, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 209, 255, 0.15);
    color: var(--color-cyan);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--color-text-dim);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.btn-service {
    align-self: flex-start;
}

/* Portfolio Section */
.portfolio {
    background: linear-gradient(180deg, rgba(10, 25, 54, 0.95) 0%, rgba(5, 11, 27, 0.9) 100%);
}

.portfolio-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(0, 209, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 20% 80%, rgba(0, 209, 255, 0.08) 0%, transparent 20%);
    pointer-events: none;
}

.portfolio-slider {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.portfolio-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.portfolio-track::-webkit-scrollbar {
    display: none;
}

.portfolio-card {
    flex: 0 0 calc(33.333% - 16px);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 209, 255, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    scroll-snap-align: start;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 209, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 209, 255, 0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 209, 255, 0.15), rgba(0, 209, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 209, 255, 0.1);
}

.placeholder-image {
    color: var(--color-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    padding: 1rem;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-cyan);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--color-text-dim);
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
}

.portfolio-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.nav-btn {
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(0, 209, 255, 0.1);
    border: 1px solid rgba(0, 209, 255, 0.3);
    color: var(--color-cyan);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

.nav-btn:hover {
    background: rgba(0, 209, 255, 0.2);
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, rgba(5, 11, 27, 0.96) 0%, rgba(10, 25, 54, 0.92) 50%, rgba(5, 11, 27, 0.96) 100%);
}

.pricing-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(0, 209, 255, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(0, 209, 255, 0.06) 0%, transparent 20%);
    pointer-events: none;
}

.pricing-tabs {
    display: block;
    position: relative;
    z-index: 2;
}

/* Radio button hack - hide actual inputs */
input[type="radio"][name="pricing"] {
    display: none;
}

.tab-labels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.85rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

.tab-labels label {
    padding: 14px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 58px;
}

.tab-labels label:hover {
    transform: translateY(-1px);
    background: rgba(0, 209, 255, 0.12);
    border-color: rgba(0, 209, 255, 0.18);
}

#tab-1:checked ~ .tab-labels label[for="tab-1"],
#tab-2:checked ~ .tab-labels label[for="tab-2"],
#tab-3:checked ~ .tab-labels label[for="tab-3"],
#tab-4:checked ~ .tab-labels label[for="tab-4"],
#tab-5:checked ~ .tab-labels label[for="tab-5"],
#tab-6:checked ~ .tab-labels label[for="tab-6"] {
    background: linear-gradient(135deg, var(--color-cyan), #4eeeff);
    color: var(--color-navy);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 209, 255, 0.25);
}

.tab-panels {
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeIn 300ms ease-in-out forwards;
}

#tab-1:checked ~ .tab-panels #panel-1,
#tab-2:checked ~ .tab-panels #panel-2,
#tab-3:checked ~ .tab-panels #panel-3,
#tab-4:checked ~ .tab-panels #panel-4,
#tab-5:checked ~ .tab-panels #panel-5,
#tab-6:checked ~ .tab-panels #panel-6 {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-cards {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1.5rem;
}

.pricing-cards::-webkit-scrollbar {
    height: 8px;
}

.pricing-cards::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.pricing-cards::-webkit-scrollbar-thumb {
    background: rgba(0, 209, 255, 0.3);
    border-radius: 999px;
}

.price-card {
    flex: 0 0 320px;
    min-width: 320px;
    padding: 2rem;
    border-radius: 28px;
    background: rgba(4, 16, 34, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 20px 60px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    position: relative;
    scroll-snap-align: start;
}

.price-card:hover {
    transform: translateY(-10px);
    background: rgba(1, 12, 26, 0.98);
    border-color: rgba(0, 209, 255, 0.25);
    box-shadow: 0 24px 70px rgba(0, 209, 255, 0.15);
}

.price-card.featured {
    border: 2px solid rgba(0, 209, 255, 0.7);
    background: linear-gradient(180deg, rgba(3, 23, 47, 0.95), rgba(0, 209, 255, 0.1));
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(0, 209, 255, 0.35);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 209, 255, 0.4);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-cyan);
    color: var(--color-navy);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.price-tier {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-cyan);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.1rem;
}

.price-suffix {
    font-size: 1.2rem;
    opacity: 0.8;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex: 1;
}

.feature {
    font-size: 0.9rem;
    color: var(--color-text-dim);
    display: flex;
    align-items: center;
    line-height: 1.6;
}

.feature::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--color-cyan);
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, rgba(10, 25, 54, 0.95) 0%, rgba(5, 11, 27, 0.9) 100%);
    border: 2px solid rgba(0, 209, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: 4rem 2rem;
    margin: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 209, 255, 0.1), transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta p {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: rgba(5, 11, 27, 0.98);
    border-top: 1px solid rgba(0, 209, 255, 0.15);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    color: var(--color-text-dim);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--color-text-dim);
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--color-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 209, 255, 0.1);
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border: 3px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.25);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    z-index: 999;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.35);
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }

    h1 {
        font-size: clamp(2.2rem, 4vw, 3.2rem);
    }

    .services-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .laptop-frame {
        max-width: 100%;
        transform: rotateY(-5deg) rotateX(1deg);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    section {
        padding: 60px 0;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .hero-text {
        padding-top: 20px;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .eyebrow {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-stats {
        gap: 2rem;
    }

    .laptop-frame {
        transform: rotateY(0deg) rotateX(0deg);
    }

    .about-grid,
    .why-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Portfolio Responsive - Mobile: 1 card per view */
    .portfolio-card {
        flex: 0 0 100%;
    }

    .portfolio-nav {
        gap: 0.75rem;
    }

    .nav-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .pricing-cards {
        gap: 1rem;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .price-card.featured:hover {
        transform: translateY(-8px);
    }

    .tab-labels {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col {
        text-align: left;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .tab-labels {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .tab-labels label {
        padding: 10px 14px;
        font-size: 0.8rem;
        min-width: auto;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 14px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .section-header h2,
    .about-text h2 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero {
        padding-top: 80px;
        padding-bottom: 30px;
    }

    section {
        padding: 50px 0;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .about-card,
    .why-card,
    .service-card,
    .price-card {
        padding: 1.5rem;
    }

    .price-value {
        font-size: 2rem;
    }

    .card-image {
        height: 150px;
    }

    .cta {
        padding: 2.5rem 1.5rem;
        margin: 60px 0;
    }

    .cta h2 {
        font-size: 1.6rem;
    }

    .cta p {
        font-size: 0.95rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 1.5rem;
    }

    .badge {
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    .portfolio-track {
        gap: 16px;
    }

    .tab-labels {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .tab-labels label {
        width: 100%;
        text-align: center;
        padding: 10px 12px;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .list-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .eyebrow {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .hero-desc {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .section-header p,
    .intro-text {
        font-size: 0.9rem;
    }

    .about-card p,
    .why-card p,
    .service-card p {
        font-size: 0.85rem;
    }

    .card-content {
        padding: 1rem;
    }

    .price-features {
        gap: 0.6rem;
    }

    .feature {
        font-size: 0.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .footer-col {
        margin-bottom: 1rem;
    }

    .footer-col h4 {
        font-size: 1rem;
    }

    .footer-col p,
    .footer-col a {
        font-size: 0.85rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .list-item {
        font-size: 0.85rem;
    }

    .about-stats {
        flex-direction: row;
        gap: 2rem;
    }
}

/* Portfolio responsive adjustments */
@media (min-width: 1201px) {
    .portfolio-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .portfolio-card {
        flex: 0 0 calc(50% - 12px);
    }
}

/* Ensure no horizontal scroll */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .portfolio-nav {
        display: none;
    }
}

/* Smooth scroll anchor links */
.portfolio-nav a {
    scroll-behavior: smooth;
}

/* Animation utilities */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 209, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 209, 255, 0.5);
    }
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--color-cyan);
    outline-offset: 2px;
}

/* Ensure consistent interaction states */
.btn:active {
    transform: translateY(-1px);
}

/* Smooth transitions for all interactive elements */
*:not(svg) {
    transition-property: background-color, color, border-color, box-shadow;
    transition-duration: var(--transition);
    transition-timing-function: ease-in-out;
}