:root {
    --primary-purple: #4B0FA3;
    --primary-purple-light: rgba(75, 15, 163, 0.1);
    --dark-purple: #2D006B;
    --accent-yellow: #FFC400;
    --accent-yellow-hover: #e6b000;
    --light-bg: #F8F8FA;
    --white: #FFFFFF;
    --text-main: #1E1E1E;
    --text-secondary: #555555;
    --text-muted: #888888;
    --border-color: #EAEAEA;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 100px;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 40px rgba(45, 0, 107, 0.08);
    --shadow-lg: 0 20px 60px rgba(45, 0, 107, 0.12);
    --shadow-hover: 0 25px 70px rgba(45, 0, 107, 0.18);
    --font-heading: 'Montserrat', 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--dark-purple);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

p {
    line-height: 1.75;
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.text-sm {
    font-size: 14px;
    line-height: 1.6;
}

.text-xs {
    font-size: 12px;
    line-height: 1.5;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    display: block;
}

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

.section-padding {
    padding: 100px 0;
}

.text-purple { color: var(--primary-purple); }
.text-yellow { color: var(--accent-yellow); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-secondary { color: var(--text-secondary); }
.bg-light { background-color: var(--light-bg); }
.bg-purple { background: linear-gradient(135deg, #2D006B 0%, #4B0FA3 100%); color: var(--white); }
.bg-purple h2, .bg-purple h3, .bg-purple p { color: var(--white); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    gap: 10px;
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.btn-primary:hover {
    background: var(--dark-purple);
}

.btn-secondary {
    background-color: var(--accent-yellow);
    color: var(--text-main);
}

.btn-secondary:hover {
    background-color: var(--accent-yellow-hover);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-purple);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 14px;
}

/* Pill Badge */
.pill-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    background: var(--primary-purple-light);
    color: var(--primary-purple);
    border-color: rgba(75, 15, 163, 0.15);
}

/* Hero */
.hero {
    padding: 130px 0 90px;
    background: linear-gradient(135deg, #1a0040 0%, #2D006B 40%, #4B0FA3 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Decorative background shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
}
.hero-shape-1 {
    width: 500px; height: 500px;
    top: -150px; right: -100px;
    background: rgba(255, 196, 0, 0.12);
}
.hero-shape-2 {
    width: 350px; height: 350px;
    bottom: -100px; left: -80px;
    background: rgba(75, 15, 163, 0.5);
}
.hero-shape-3 {
    width: 200px; height: 200px;
    top: 40%; left: 40%;
    background: rgba(255, 255, 255, 0.04);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero h1 {
    font-size: 54px;
    color: var(--white);
    margin: 16px 0 20px;
    line-height: 1.12;
    letter-spacing: -0.5px;
}

.hero-highlight {
    position: relative;
    color: var(--accent-yellow);
    display: inline-block;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 0 32px;
    line-height: 1.75;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* Trust row below buttons */
.hero-trust-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
}
.hero-trust-item i { color: #4ade80; font-size: 14px; }

/* Stats column */
.hero-stats-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.hero-stat-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, background 0.25s ease;
}
.hero-stat-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
}
.hero-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,196,0,0.2);
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0 auto 12px;
}
.hero-stat-number {
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
    font-family: var(--font-heading);
}
.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

.back-link {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-bottom: 20px;
}

.back-link:hover {
    color: var(--white);
    transform: translateX(-4px);
}

.db-error-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 18px;
    line-height: 1.2;
}

.section-header p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Cards */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-purple-light);
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 24px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--light-bg);
    color: var(--text-secondary);
}

/* Projects */
.category-section {
    margin-bottom: 80px;
}

.category-title {
    font-size: 28px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.project-image {
    height: 200px;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 48px;
    background: linear-gradient(135deg, #f0f0f5 0%, #e8e8f0 100%);
}

.project-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
}

.project-badge.inline {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
}

.badge-static { background: #4B0FA3; }
.badge-dynamic { background: #0A7B3E; }
.badge-ecommerce { background: #D97706; }
.badge-featured { background: var(--accent-yellow); color: var(--text-main); }

.project-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-purple);
    font-size: 14px;
}

.project-link:hover {
    color: var(--dark-purple);
    gap: 12px;
}

.project-link i {
    font-size: 12px;
}

/* Featured */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.featured-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.featured-card .project-image {
    height: 100%;
    min-height: 280px;
}

.featured-card .project-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-card .project-content h3 {
    font-size: 26px;
    margin-bottom: 14px;
    line-height: 1.25;
}

.featured-card .project-content p {
    font-size: 15px;
    line-height: 1.7;
}

/* Trust Signals */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.trust-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-card h3 {
    font-size: 36px;
    color: var(--accent-yellow);
    margin-bottom: 8px;
}

.trust-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
}

/* Footer */
.footer {
    background: var(--dark-purple);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

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

/* Pricing Section */
.campaign-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    border: none;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255, 107, 53, 0); }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    background: linear-gradient(180deg, var(--white) 0%, #f8f6ff 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.popular {
    border: 2px solid var(--primary-purple);
    box-shadow: 0 12px 40px rgba(75, 15, 163, 0.15);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-8px);
}

.offer-tag {
    position: absolute;
    top: 16px;
    right: -36px;
    transform: rotate(45deg);
    background: #ff6b35;
    color: #fff;
    padding: 6px 40px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.offer-tag.popular-tag {
    background: var(--primary-purple);
}

.pricing-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-purple-light);
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px;
    transition: var(--transition-smooth);
}

.pricing-card:hover .pricing-icon {
    background: var(--primary-purple);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.price-wrapper {
    margin-bottom: 16px;
}

.starting-from {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.pricing-card .price {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-purple);
    line-height: 1;
    margin-bottom: 6px;
}

.pricing-card .price .currency {
    font-size: 18px;
    font-weight: 700;
    vertical-align: super;
    margin-right: 4px;
    color: var(--primary-purple);
}

.original-price {
    font-size: 14px;
    color: var(--text-muted);
}

.original-price del {
    color: #999;
    text-decoration: line-through;
}

.pricing-card .description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    min-height: 48px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--primary-purple);
    font-size: 14px;
}

.btn-pricing {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-pill);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
    padding: 18px 28px;
    background: rgba(80, 205, 137, 0.1);
    border: 1px solid rgba(80, 205, 137, 0.3);
    border-radius: var(--radius-pill);
    color: #2d9f5e;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    flex-wrap: wrap;
}

.pricing-guarantee i {
    font-size: 18px;
}

/* Benefits List */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.benefit-item i {
    color: var(--primary-purple);
    font-size: 18px;
    flex-shrink: 0;
}

/* Services List */
.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.service-item:hover {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-sm);
}

.service-item i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-purple-light);
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.service-item span {
    font-weight: 600;
    color: var(--text-main);
}

/* CTA Options */
.cta-options {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.cta-option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--white);
    color: var(--primary-purple);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-option:hover {
    background: var(--accent-yellow);
    color: var(--text-main);
    transform: translateY(-3px);
}

.cta-option .number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.cta-option:hover .number {
    background: var(--text-main);
}

.cta-option .number i {
    color: white;
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px dashed var(--border-color);
}

.empty-state i {
    font-size: 48px;
    color: var(--border-color);
    margin-bottom: 20px;
}

.empty-state h3 {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* ============================================
   MOBILE RESPONSIVE - Comprehensive Rework
   Media queries at end so they override base
   ============================================ */

/* ---- Tablet (max-width: 992px) ---- */
@media (max-width: 992px) {
    .container {
        padding: 0 24px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .hero {
        padding: 120px 0 70px;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-stats-col {
        grid-template-columns: repeat(4, 1fr);
    }
    .hero h1 {
        font-size: 38px;
        margin-bottom: 16px;
    }
    .hero p {
        font-size: 16px;
        margin-bottom: 28px;
        max-width: 100%;
    }

    .lead {
        font-size: 16px;
    }

    .section-header {
        margin-bottom: 44px;
    }

    .section-header h2 {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .section-header p {
        font-size: 15px;
    }

    .cta-section h2 {
        font-size: 30px;
    }

    .cta-section p {
        font-size: 15px;
    }

    /* Grids → 2 columns */
    .service-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Featured → 1 column, stacked layout */
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .featured-card {
        grid-template-columns: 1fr;
    }

    .featured-card .project-image {
        min-height: 200px;
        height: 200px;
    }

    .featured-card .project-content {
        padding: 24px;
    }

    .featured-card .project-content h3 {
        font-size: 22px;
    }

    /* Pricing → 1 column */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 480px;
        margin: 0 auto;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card.popular {
        transform: none;
        order: -1;
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .pricing-card h3 {
        font-size: 20px;
    }

    .pricing-card .price {
        font-size: 40px;
    }

    .offer-tag {
        top: 12px;
        right: -30px;
        padding: 5px 32px;
        font-size: 10px;
    }

    /* Category */
    .category-section {
        margin-bottom: 50px;
    }

    .category-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    /* Service card */
    .service-card {
        padding: 28px 20px;
    }

    .service-card h3 {
        font-size: 19px;
    }

    /* Trust card */
    .trust-card {
        padding: 24px 16px;
    }

    .trust-card h3 {
        font-size: 30px;
    }

    /* CTA options */
    .cta-options {
        gap: 12px;
    }

    .cta-option {
        padding: 14px 22px;
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 24px;
    }
}

/* ---- Mobile (max-width: 768px) ---- */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section-padding {
        padding: 56px 0;
    }

    /* Header fixes */
    .main-header {
        padding: 12px 0;
    }

    .main-header .container {
        padding: 0 16px;
        flex-wrap: nowrap;
    }

    .header-logo-img { height: 36px; }
    .header-logo-box { width: 38px; height: 38px; font-size: 14px; border-radius: 10px; }

    .header-right {
        gap: 12px;
    }

    .header-right .btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    .mobile-menu-btn {
        font-size: 22px;
    }

    /* Hero */
    .hero {
        padding: 120px 0 56px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .hero-stats-col {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-trust-row {
        gap: 14px;
    }
    .hero-btns {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }

    .back-link {
        font-size: 13px;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 36px;
    }

    .section-header h2 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .section-header p {
        font-size: 14px;
        line-height: 1.6;
    }

    .pill-badge {
        padding: 6px 16px;
        font-size: 11px;
        margin-bottom: 16px;
    }

    /* All grids → 1 column */
    .service-grid,
    .projects-grid,
    .services-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Service card */
    .service-card {
        padding: 24px 20px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
        margin-bottom: 18px;
    }

    .service-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    /* Project cards */
    .project-image {
        height: 180px;
    }

    .project-content {
        padding: 20px;
    }

    .project-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .project-content p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .project-meta {
        font-size: 12px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .project-link {
        font-size: 13px;
    }

    /* Featured cards */
    .featured-card .project-image {
        height: 180px;
        min-height: 180px;
    }

    .featured-card .project-content {
        padding: 20px;
    }

    .featured-card .project-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .featured-card .project-content p {
        font-size: 14px;
    }

    /* Category */
    .category-section {
        margin-bottom: 40px;
    }

    .category-title {
        font-size: 20px;
        margin-bottom: 16px;
        gap: 8px;
    }

    .category-title::after {
        display: none;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-card.popular {
        transform: none;
        order: -1;
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .pricing-card h3 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .pricing-card .price {
        font-size: 36px;
    }

    .pricing-card .price .currency {
        font-size: 15px;
    }

    .pricing-card .description {
        font-size: 13px;
        margin-bottom: 20px;
        min-height: auto;
    }

    .pricing-features li {
        padding: 8px 0;
        font-size: 13px;
        gap: 8px;
    }

    .pricing-features li i {
        font-size: 12px;
    }

    .btn-pricing {
        padding: 12px 20px;
        font-size: 14px;
    }

    .pricing-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
        margin-bottom: 18px;
    }

    .offer-tag {
        top: 10px;
        right: -30px;
        padding: 4px 32px;
        font-size: 9px;
    }

    .pricing-guarantee {
        padding: 12px 18px;
        font-size: 12px;
        gap: 8px;
        margin-top: 24px;
        border-radius: var(--radius-sm);
    }

    .pricing-guarantee i {
        font-size: 16px;
    }

    /* Benefits */
    .benefit-item {
        padding: 16px 18px;
        font-size: 14px;
        gap: 12px;
    }

    .benefit-item i {
        font-size: 16px;
    }

    /* Services list */
    .service-item {
        padding: 18px 16px;
        gap: 12px;
    }

    .service-item i {
        width: 40px;
        height: 40px;
        font-size: 17px;
        border-radius: 10px;
    }

    .service-item span {
        font-size: 14px;
    }

    /* Trust cards */
    .trust-card {
        padding: 20px 12px;
    }

    .trust-card h3 {
        font-size: 26px;
        margin-bottom: 6px;
    }

    .trust-card p {
        font-size: 12px;
    }

    /* CTA section */
    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .cta-section p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .cta-section .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .cta-section .hero-btns .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }

    /* CTA options */
    .cta-options {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 24px;
    }

    .cta-option {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }

    /* Buttons */
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
}

/* ---- Small Mobile (max-width: 576px) ---- */
@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .section-padding {
        padding: 48px 0;
    }

    /* Header */
    .main-header .container {
        padding: 0 12px;
    }

    .header-right .btn {
        display: none;
    }

    .mobile-menu-btn {
        font-size: 20px;
    }

    .header-logo-img { height: 32px; }
    .header-logo-box { width: 34px; height: 34px; font-size: 12px; border-radius: 8px; }

    /* Hero */
    .hero {
        padding: 110px 0 48px;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 1.35;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .hero-btns {
        gap: 10px;
    }

    .hero-btns .btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .back-link {
        font-size: 12px;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 28px;
    }

    .section-header h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 13px;
        line-height: 1.6;
    }

    .pill-badge {
        padding: 5px 14px;
        font-size: 10px;
        margin-bottom: 12px;
    }

    /* All grids → 1 column */
    .service-grid,
    .projects-grid,
    .trust-grid,
    .services-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* Service card */
    .service-card {
        padding: 20px 16px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 14px;
    }

    .service-card h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .service-tag {
        padding: 5px 12px;
        font-size: 11px;
    }

    /* Project cards */
    .project-image {
        height: 160px;
    }

    .project-content {
        padding: 16px;
    }

    .project-content h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .project-content p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .project-meta {
        font-size: 11px;
        margin-bottom: 12px;
        gap: 6px;
    }

    .project-link {
        font-size: 12px;
    }

    .project-badge {
        top: 10px;
        left: 10px;
        padding: 4px 10px;
        font-size: 10px;
    }

    /* Featured */
    .featured-card .project-image {
        height: 160px;
        min-height: 160px;
    }

    .featured-card .project-content {
        padding: 16px;
    }

    .featured-card .project-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .featured-card .project-content p {
        font-size: 13px;
    }

    /* Category */
    .category-section {
        margin-bottom: 32px;
    }

    .category-title {
        font-size: 18px;
        margin-bottom: 14px;
    }

    /* Pricing */
    .pricing-grid {
        gap: 14px;
        max-width: 100%;
    }

    .pricing-card {
        padding: 24px 18px;
    }

    .pricing-card.popular {
        transform: none;
        order: -1;
    }

    .pricing-card.popular:hover {
        transform: translateY(-6px);
    }

    .pricing-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .pricing-card .price {
        font-size: 32px;
    }

    .pricing-card .price .currency {
        font-size: 14px;
    }

    .pricing-card .description {
        font-size: 12px;
        margin-bottom: 18px;
    }

    .pricing-features {
        margin-bottom: 20px;
    }

    .pricing-features li {
        padding: 7px 0;
        font-size: 12px;
        gap: 8px;
    }

    .pricing-features li i {
        font-size: 11px;
    }

    .btn-pricing {
        padding: 11px 18px;
        font-size: 13px;
    }

    .pricing-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 14px;
    }

    .offer-tag {
        top: 8px;
        right: -28px;
        padding: 4px 30px;
        font-size: 9px;
    }

    .pricing-guarantee {
        padding: 10px 14px;
        font-size: 11px;
        gap: 6px;
        margin-top: 20px;
    }

    .pricing-guarantee i {
        font-size: 14px;
    }

    /* Benefits */
    .benefit-item {
        padding: 14px 14px;
        font-size: 13px;
        gap: 10px;
    }

    .benefit-item i {
        font-size: 15px;
    }

    /* Services list */
    .service-item {
        padding: 14px 14px;
        gap: 10px;
    }

    .service-item i {
        width: 36px;
        height: 36px;
        font-size: 15px;
        border-radius: 8px;
    }

    .service-item span {
        font-size: 13px;
    }

    /* Trust cards */
    .trust-card {
        padding: 18px 10px;
    }

    .trust-card h3 {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .trust-card p {
        font-size: 11px;
    }

    /* CTA section */
    .cta-section {
        padding: 48px 0;
    }

    .cta-section h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .cta-section p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .cta-section .hero-btns .btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    /* CTA options */
    .cta-options {
        gap: 8px;
        margin-top: 20px;
    }

    .cta-option {
        padding: 12px 16px;
        font-size: 13px;
    }

    .cta-option .number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    /* Footer */
    .footer {
        padding: 32px 0 16px;
    }
}

/* ---- Extra Small Mobile (max-width: 380px) ---- */
@media (max-width: 380px) {
    .container {
        padding: 0 12px;
    }

    .hero h1 {
        font-size: 21px;
    }

    .hero p {
        font-size: 13px;
    }

    .section-header h2,
    .cta-section h2 {
        font-size: 20px;
    }

    .pricing-card .price {
        font-size: 28px;
    }

    .pricing-card {
        padding: 20px 14px;
    }

    .project-content {
        padding: 14px;
    }

    .service-card {
        padding: 18px 14px;
    }

    .benefit-item {
        padding: 12px 12px;
        font-size: 12px;
    }

    .btn {
        padding: 11px 18px;
        font-size: 12px;
    }
}
