/* ========================================
   Digital Synergies - Static Website Styles
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a0a0a;
    --secondary: #111111;
    --accent: #3EFF54;
    --accent-dark: #2bcc42;
    --text: #e0e0e0;
    --text-muted: #999;
    --text-light: #ccc;
    --white: #ffffff;
    --border: rgba(255, 255, 255, 0.1);
    --card-bg-1: #141414;
    --card-bg-2: #1a1a1a;
    --gradient-dark: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, #0a0a0a 100%);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
    --container: 1140px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    color: var(--text);
    background-color: var(--primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--accent-dark);
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

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

.section {
    padding: 100px 0;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Roboto Slab', 'Roboto', serif;
    color: var(--white);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(62, 255, 84, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: var(--primary);
    font-size: 1.05rem;
    padding: 16px 40px;
}

.btn-accent:hover {
    background: var(--accent-dark);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(62, 255, 84, 0.3);
}

.btn-full {
    width: 100%;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.nav-logo:hover {
    color: var(--white);
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    color: var(--text-light);
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(62, 255, 84, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(62, 255, 84, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding-top: 100px;
}

.hero-subtitle {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--white) 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Page Hero (internal pages) --- */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(62, 255, 84, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    position: relative;
}

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

.service-card {
    background: var(--card-bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all var(--transition);
}

.service-card:nth-child(even) {
    background: var(--card-bg-2);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(62, 255, 84, 0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--accent);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* --- Service Detail (services page) --- */
.service-detail {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
    margin-bottom: 24px;
    background: var(--card-bg-1);
    transition: all var(--transition);
}

.service-detail:nth-child(even) {
    background: var(--card-bg-2);
}

.service-detail:hover {
    border-color: rgba(62, 255, 84, 0.2);
}

.service-detail-content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.service-detail-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    color: var(--accent);
    padding: 12px;
    background: rgba(62, 255, 84, 0.08);
    border-radius: var(--radius-sm);
}

.service-detail-icon svg {
    width: 100%;
    height: 100%;
}

.service-detail h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-detail p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px;
}

.service-features li {
    position: relative;
    padding-left: 20px;
    color: var(--text-light);
    font-size: 0.92rem;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* --- About Grid --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 12px;
}

.about-preview {
    background: var(--secondary);
}

/* --- Stats --- */
.stats-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--accent);
    font-family: 'Roboto Slab', serif;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

/* --- Testimonials --- */
.testimonials-section {
    background: var(--secondary);
}

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

.testimonial-card {
    background: var(--card-bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card > p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, #111 0%, #1a1a2e 100%);
    border-top: 1px solid var(--border);
}

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

.cta-section p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
}

/* --- Values --- */
.values-section {
    background: var(--secondary);
}

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

.value-card {
    background: var(--card-bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: all var(--transition);
}

.value-card:hover {
    border-color: rgba(62, 255, 84, 0.2);
}

.value-number {
    color: var(--accent);
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Roboto Slab', serif;
    opacity: 0.6;
    margin-bottom: 12px;
    display: block;
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Process --- */
.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-step {
    text-align: center;
    flex: 1;
    max-width: 240px;
    padding: 0 16px;
}

.process-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(62, 255, 84, 0.1);
    border: 2px solid var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Roboto Slab', serif;
    margin-bottom: 20px;
}

.process-step h3 {
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: var(--border);
    margin-top: 28px;
    flex-shrink: 0;
}

/* --- Technologies --- */
.tech-section {
    background: var(--secondary);
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.tech-item {
    background: var(--card-bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 28px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    transition: all var(--transition);
}

.tech-item:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .section-title {
    text-align: left;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    color: var(--accent);
    background: rgba(62, 255, 84, 0.08);
    border-radius: var(--radius-sm);
    padding: 10px;
}

.contact-item-icon svg {
    width: 100%;
    height: 100%;
}

.contact-item h4 {
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-item a:hover {
    color: var(--accent);
}

/* --- Contact Form --- */
.contact-form-wrapper {
    background: var(--card-bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.required {
    color: var(--accent);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(62, 255, 84, 0.03);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
    color: var(--accent);
}

.form-success h3 {
    color: var(--accent);
    margin: 16px 0 8px;
}

.form-success p {
    color: var(--text-muted);
}

/* --- FAQ --- */
.faq-section {
    background: var(--secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.faq-item h4 {
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    background: #050505;
    padding: 80px 0 0;
    border-top: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-logo {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    flex-shrink: 0;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 0.75fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 0 0 60px;
}

.footer-links-group h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-group a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color var(--transition);
}

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

.footer-address {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- Two Arms Grid (Home) --- */
.two-arms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.arm-card {
    background: var(--card-bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px 36px;
    transition: all var(--transition);
    text-align: center;
}

.arm-card:nth-child(2) {
    background: var(--card-bg-2);
}

.arm-card:hover {
    transform: translateY(-4px);
    border-color: rgba(62, 255, 84, 0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.arm-label {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.arm-card .service-icon {
    margin: 0 auto 20px;
}

.arm-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.arm-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* --- Accentish Showcase (Home) --- */
.accentish-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 700px;
    margin: 0 auto;
}

.accentish-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.accentish-feature .service-icon {
    flex-shrink: 0;
}

.accentish-feature h4 {
    margin-bottom: 6px;
}

.accentish-feature p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* --- Venture Blocks (What We Do) --- */
.venture-block {
    max-width: 900px;
    margin: 0 auto;
}

.venture-header {
    text-align: center;
    margin-bottom: 48px;
}

.venture-header .service-icon {
    margin: 0 auto 20px;
}

.venture-header .section-title {
    margin-bottom: 12px;
}

.venture-text h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    margin-top: 32px;
}

.venture-text h3:first-child {
    margin-top: 0;
}

.venture-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.venture-text .service-features {
    margin-top: 16px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-divider {
    padding: 0 24px;
}

.section-divider hr {
    border: none;
    border-top: 1px solid var(--border);
    max-width: 900px;
    margin: 0 auto;
}

/* --- Product Showcase (What We Do - Accentish) --- */
.product-showcase {
    background: var(--card-bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
    margin-top: 32px;
}

.product-header {
    text-align: center;
    margin-bottom: 28px;
}

.product-name {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 6px;
}

.product-tagline {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-link {
    font-size: 0.9rem;
    font-weight: 500;
}

.product-description {
    max-width: 720px;
    margin: 0 auto 36px;
}

.product-description p {
    color: var(--text-muted);
    line-height: 1.8;
    text-align: center;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.product-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.product-feature .service-icon {
    flex-shrink: 0;
}

.product-feature h4 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.product-feature p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* --- Upcoming Project Teaser --- */
.upcoming-badge {
    display: inline-block;
    background: rgba(62, 255, 84, 0.12);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(62, 255, 84, 0.25);
    margin-bottom: 20px;
}

.upcoming-hidden-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 560px;
    margin: 0 auto;
}

.upcoming-hidden-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 12px;
}

.upcoming-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.upcoming-value {
    display: block;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    user-select: none;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .process-grid {
        flex-wrap: wrap;
        gap: 24px;
    }

    .process-connector {
        display: none;
    }

    .process-step {
        flex: 0 0 calc(50% - 12px);
        max-width: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .navbar {
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 12px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 24px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px 16px;
    }

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

    .two-arms-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .values-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .product-features-grid {
        grid-template-columns: 1fr;
    }

    .upcoming-hidden-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-content {
        padding-top: 120px;
    }

    .page-hero {
        padding: 140px 0 70px;
    }

    .service-detail {
        padding: 28px;
    }

    .service-detail-content {
        flex-direction: column;
    }

    .product-showcase {
        padding: 28px;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .process-step {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .upcoming-hidden-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .arm-card,
    .product-showcase,
    .value-card {
        padding: 24px;
    }
}
