/* ═══════════════════════════════════════════════
   NOREX — services.css  (FULLY RESPONSIVE)
   Font sizes & weights matched to home.css
═══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --black:        #000000;
    --black-1:      #080808;
    --black-3:      #111111;
    --black-4:      #161616;
    --black-5:      #1a1a1a;
    --accent:       #ff6b35;
    --accent-glow:  rgba(255,107,53,0.25);
    --accent-faint: rgba(255,107,53,0.08);
    --accent-border:rgba(255,107,53,0.15);
    --accent-alt:   #8b5cf6;
    --white:        #ffffff;
    --white-dim:    rgba(255,255,255,0.65);
    --white-muted:  rgba(255,255,255,0.42);
    --white-faint:  rgba(255,255,255,0.06);
    --border:       rgba(255,255,255,0.07);
    --border-hover: rgba(255,255,255,0.18);

    /* ── Fonts — matches home.css ── */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body:    'Plus Jakarta Sans', sans-serif;
    --font-tech:    'Orbitron', sans-serif;
    --font-tag:     'Rajdhani', sans-serif;

    --radius-sm:   8px;
    --radius-md:   14px;
    --radius-lg:   20px;
    --radius-xl:   24px;
    --radius-full: 50px;
    --max-width:   1500px;
    --transition:  0.3s ease;

    /* ── Title sizes — exactly from home.css ── */
    --title-hero:    clamp(2rem, 5vw, 4rem);
    --title-card:    1.2rem;

    /* ── Body sizes — exactly from home.css ── */
    --body-lg:    clamp(0.78rem, 2vw, 0.85rem);
    --body-md:    0.88rem;
    --body-sm:    0.85rem;
    --body-color: rgba(255,255,255,0.5);
    --body-lh:    1.75;
}

/* ── Reset ── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content:'';
    position:fixed; inset:0;
    background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity:0.025; pointer-events:none; z-index:9999;
}

img { display:block; max-width:100%; height:auto; }
a   { text-decoration:none; color:inherit; }

/* ═══════════════════════════════════════════════
   PILL / SECTION TAG
═══════════════════════════════════════════════ */
.pill {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    padding: 0.35rem 1rem;
    background: var(--accent-faint);
    border: 1px solid rgba(255,107,53,0.2);
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,107,53,0.2), transparent);
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(255,107,53,0.5);
    background: #ff7d4a;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
    background: var(--white-faint);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-3px);
}

.learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--white);
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-full);
    background: transparent;
    transition: all var(--transition);
    margin-top: 1.8rem;
    width: fit-content;
}
.learn-btn:hover {
    background: var(--accent-faint);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}
.learn-btn svg { flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   HERO
   — bottom padding tightened to match portfolio
     hero-to-content gap (was 5.5rem → 2.5rem)
═══════════════════════════════════════════════ */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 5% 52px;       /* ← matched to portfolio .hero */
    overflow: hidden;
    background: url('/assets/img/services/hero-bg.png') center center / cover no-repeat;
    background-color: var(--black);
}

.hero::before {
    content:'';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.45);
    pointer-events: none;
}

.hero .pill,
.hero h1,
.hero > p,
.hero-ctas { position: relative; z-index: 1; }

.hero h1 {
    font-family: var(--font-display);
    font-size: var(--title-hero);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent) 0%, #ff9f6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero > p {
    font-family: var(--font-body);
    font-size: var(--body-lg);
    color: rgba(255,255,255,0.45);
    line-height: var(--body-lh);
    max-width: 540px;
    text-align: center;
    margin-bottom: 2rem;            /* ← was 2.2rem */
}

.hero-ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ═══════════════════════════════════════════════
   SERVICE SECTIONS
   — top padding reduced to close gap after hero
     (was 7rem → 4.5rem for the first section)
═══════════════════════════════════════════════ */
.service-section {
    padding: 4.5rem 5%;             /* ← was 7rem */
    max-width: var(--max-width);
    margin: 0 auto;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.service-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Subsequent sections keep a divider and consistent spacing */
.service-section + .service-section {
    border-top: 1px solid rgba(255,107,53,0.1);
    padding-top: 4.5rem;            /* ← was 7rem */
}

/* ── Service Header ── */
.svc-header {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: end;
    margin-bottom: 4rem;
}

.svc-number {
    font-family: var(--font-tech);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.4rem;
}

.svc-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    border: 1px solid transparent;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.svc-icon-wrap:hover { transform: scale(1.05); }

.icon-blue   { background: rgba(59,130,246,0.1);  border-color: rgba(59,130,246,0.2);  }
.icon-teal   { background: rgba(20,184,166,0.1);  border-color: rgba(20,184,166,0.2);  }
.icon-purple { background: rgba(139,92,246,0.1);  border-color: rgba(139,92,246,0.2);  }
.icon-green  { background: rgba(16,185,129,0.1);  border-color: rgba(16,185,129,0.2);  }
.icon-orange { background: var(--accent-faint);   border-color: var(--accent-border);  }

.svc-header-left h2 {
    font-family: var(--font-display);
    font-size: var(--title-hero);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--white);
}

.svc-header-left h2 span {
    background: linear-gradient(135deg, var(--accent) 0%, #ff9f6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.svc-header-right > p {
    font-family: var(--font-body);
    font-size: var(--body-md);
    color: rgba(255,255,255,0.5);
    line-height: var(--body-lh);
    text-align: justify;
}

/* ── Service Body ── */
.svc-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3.5rem;
}

.svc-features h3,
.svc-tools   h3,
.svc-projects h3 {
    font-family: var(--font-display);
    font-size: var(--title-card);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.3px;
    margin-bottom: 1.4rem;
    position: relative;
    padding-left: 1rem;
}

.svc-features h3::before,
.svc-tools   h3::before,
.svc-projects h3::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 1.1em;
    background: var(--accent);
    border-radius: 2px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: var(--body-md);
    color: rgba(255,255,255,0.5);
    line-height: var(--body-lh);
}

.feature-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 0.6em;
    box-shadow: 0 0 6px var(--accent-glow);
}

/* ── Image grid ── */
.svc-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.svc-img {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--black-3);
    border: 1px solid var(--border);
    aspect-ratio: 4 / 3;
    transition: border-color var(--transition), transform 0.35s ease, box-shadow 0.35s ease;
}

.svc-img:hover {
    border-color: rgba(255,107,53,0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.6);
}

.svc-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.svc-img:hover img { transform: scale(1.04); }

.img-cap {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0.4rem 0.65rem;
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}

/* ── Tech tags ── */
.svc-tools { margin-bottom: 3.5rem; }

.tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tag {
    font-family: var(--font-tag);
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    background: var(--black-4);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0.3rem 0.9rem;
    letter-spacing: 0.04em;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tag:hover {
    color: rgba(255,255,255,0.85);
    border-color: var(--border-hover);
}

/* ═══════════════════════════════════════════════
   PROJECT CARDS
═══════════════════════════════════════════════ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-top: 0.4rem;
}

.project-card {
    display: flex;
    flex-direction: column;
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    background: var(--black-4);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(255,107,53,0.06);
}

.project-card:hover::after { opacity: 1; }

.project-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--black-4);
    flex-shrink: 0;
}

.project-thumb {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.45s ease;
    filter: brightness(0.9) saturate(0.9);
}

.project-card:hover .project-thumb {
    transform: scale(1.05);
    filter: brightness(1) saturate(1.05);
}

.project-info {
    padding: 1.4rem 1.6rem 1.6rem;
    flex: 1;
}

.p-label {
    font-family: var(--font-tech);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.p-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(255,107,53,0.5), transparent);
}

.project-info h4 {
    font-family: var(--font-display);
    font-size: var(--title-card);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.project-info p {
    font-family: var(--font-body);
    font-size: var(--body-md);
    color: rgba(255,255,255,0.5);
    line-height: var(--body-lh);
    text-align: justify;
}

/* ── Mobile dual-thumb cards ── */
#mobile .projects-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

.mobile-dual-thumb {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    padding: 0.9rem 0.9rem 0;
    background: var(--black-5);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.mobile-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 10px;
    background: var(--black-4);
    border: 1px solid var(--border);
}

.mobile-thumb-wrap img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.45s ease;
    filter: brightness(0.9) saturate(0.9);
}

.mobile-card:hover .mobile-thumb-wrap img {
    transform: scale(1.04);
    filter: brightness(1) saturate(1.05);
}

#mobile .project-info { padding: 1.1rem 1.3rem 1.4rem; }

/* ═══════════════════════════════════════════════
   PROCESS SECTION
   — top/bottom padding matched to section rhythm
═══════════════════════════════════════════════ */
.process {
    padding: 4.5rem 5%;             /* ← was 7rem */
    text-align: center;
    background: var(--black-1);
    position: relative;
    overflow: hidden;
}

.process::before {
    content:'';
    position: absolute;
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(255,107,53,0.06) 0%, transparent 70%);
    top: 0; left: 50%; transform: translateX(-50%);
    pointer-events: none;
}

.process .pill { position: relative; }

.process h2 {
    font-family: var(--font-display);
    font-size: var(--title-hero);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
}

.process h2 span {
    background: linear-gradient(135deg, var(--accent) 0%, #ff9f6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process > p {
    font-family: var(--font-body);
    font-size: var(--body-lg);
    color: rgba(255,255,255,0.45);
    line-height: var(--body-lh);
    max-width: 540px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.steps::before {
    content:'';
    position: absolute;
    top: 36px; left: 12%; width: 76%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,107,53,0.25), rgba(255,107,53,0.25), transparent);
    pointer-events: none;
}

.step {
    padding: 2.4rem 2rem 1.8rem;
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: left;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.step::after {
    content:'';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: opacity 0.35s;
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    background: var(--black-4);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(255,107,53,0.06);
}

.step:hover::after { opacity: 1; }

.step-num {
    font-family: var(--font-tech);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--accent-faint);
    border: 1px solid var(--accent-border);
    flex-shrink: 0;
}

.step h3 {
    font-family: var(--font-display);
    font-size: var(--title-card);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.step p {
    font-family: var(--font-body);
    font-size: var(--body-md);
    color: rgba(255,255,255,0.5);
    line-height: var(--body-lh);
    text-align: justify;
}

/* ═══════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════ */
.cta-section {
    padding: 4.5rem 5%;             /* ← was 7rem */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content:'';
    position: absolute;
    width: 600px; height: 600px; border-radius: 50%;
    background: var(--accent); opacity: 0.06; filter: blur(160px);
    top: -200px; left: 50%; transform: translateX(-50%);
    pointer-events: none;
}

.cta-section::after {
    content:'';
    position: absolute;
    width: 300px; height: 300px; border-radius: 50%;
    background: #3b82f6; opacity: 0.05; filter: blur(130px);
    bottom: -100px; right: 10%;
    pointer-events: none;
}

.cta-section .pill,
.cta-section h2,
.cta-section > p,
.cta-section .btn-primary { position: relative; z-index: 1; }

.cta-section h2 {
    font-family: var(--font-display);
    font-size: var(--title-hero);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section h2 span {
    background: linear-gradient(135deg, var(--accent) 0%, #ff9f6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section > p {
    font-family: var(--font-body);
    font-size: var(--body-lg);
    color: rgba(255,255,255,0.45);
    line-height: var(--body-lh);
    max-width: 460px;
    margin: 0 auto 2.2rem;
    text-align: center;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 1200px
═══════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .steps { grid-template-columns: repeat(2, 1fr); }
    .steps::before { display: none; }
    .projects-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
    #mobile .projects-grid { grid-template-columns: 1fr 1fr; }
    .svc-header { gap: 3.5rem; }
    .svc-body { gap: 3rem; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 1024px
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero h1,
    .svc-header-left h2,
    .process h2,
    .cta-section h2 { font-size: clamp(1.9rem, 5vw, 3.2rem); }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 900px (Tablet)
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
    .service-section,
    .service-section + .service-section { padding: 3.5rem 5%; }
    .process, .cta-section { padding: 3.5rem 5%; }

    .svc-header { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
    .svc-body { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
    .svc-tools { margin-bottom: 2.5rem; }
    .projects-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    #mobile .projects-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════════════ */
@media (max-width: 768px) {

    .hero { padding: 90px 4% 36px; }
    .hero h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); letter-spacing: -0.5px; margin-bottom: 1rem; }
    .hero > p { font-size: 0.8rem; margin-bottom: 1.8rem; }
    .hero-ctas { gap: 0.6rem; }

    .btn-primary, .btn-outline { padding: 0.75rem 1.4rem; font-size: 0.82rem; }

    .service-section,
    .service-section + .service-section { padding: 3rem 4%; }
    .process, .cta-section { padding: 3rem 4%; }

    .svc-header-left h2,
    .process h2,
    .cta-section h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); letter-spacing: -0.5px; }

    .svc-header { gap: 2rem; margin-bottom: 2rem; }
    .svc-number { font-size: 0.55rem; margin-bottom: 1rem; }
    .svc-icon-wrap { width: 42px; height: 42px; font-size: 1.2rem; border-radius: 12px; margin-bottom: 1rem; }

    .svc-header-right > p { font-size: 0.8rem; }
    .process > p { font-size: 0.8rem; margin-bottom: 2.5rem; }
    .cta-section > p { font-size: 0.8rem; margin-bottom: 1.8rem; }

    .svc-features h3, .svc-tools h3, .svc-projects h3 { font-size: 1rem; margin-bottom: 1.1rem; }
    .step h3 { font-size: 1rem; margin-bottom: 0.45rem; }
    .project-info h4 { font-size: 1rem; margin-bottom: 0.4rem; }

    .learn-btn { font-size: 0.82rem; padding: 0.55rem 1.1rem; margin-top: 1.3rem; }

    .feature-list { gap: 0.6rem; }
    .feature-list li { font-size: 0.8rem; gap: 0.65rem; }
    .feature-list li::before { width: 5px; height: 5px; }

    .svc-images { gap: 0.65rem; }
    .img-cap { font-size: 0.55rem; }

    .tags-row { gap: 0.4rem; }
    .tag { font-size: 0.58rem; padding: 0.25rem 0.7rem; }

    .projects-grid { grid-template-columns: 1fr; gap: 0.9rem; }
    #mobile .projects-grid { grid-template-columns: 1fr; }
    .project-info { padding: 1.1rem 1.2rem 1.3rem; }
    .p-label { font-size: 0.55rem; margin-bottom: 4px; }
    .project-info p { font-size: 0.8rem; }
    .step p { font-size: 0.8rem; }

    .mobile-dual-thumb { padding: 0.75rem 0.75rem 0; gap: 0.45rem; }
    .mobile-thumb-wrap { border-radius: 8px; }
    #mobile .project-info { padding: 1rem 1.1rem 1.2rem; }

    .steps { grid-template-columns: 1fr; gap: 0.9rem; }
    .steps::before { display: none; }

    .step {
        padding: 1.8rem 1.5rem;
        border-radius: var(--radius-md);
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .step-num { width: 38px; height: 38px; font-size: 0.52rem; flex-shrink: 0; margin-bottom: 0; }
    .step-content { flex: 1; min-width: 0; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 480px
═══════════════════════════════════════════════ */
@media (max-width: 480px) {

    .hero { padding: 88px 4% 30px; }
    .hero h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); letter-spacing: -0.5px; }
    .hero > p { font-size: 0.78rem; }
    .hero-ctas { flex-direction: column; width: 100%; align-items: center; }
    .btn-primary, .btn-outline {
        width: 100%; justify-content: center;
        padding: 0.85rem 1.2rem; font-size: 0.82rem;
    }

    .svc-header-left h2,
    .process h2,
    .cta-section h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); letter-spacing: -0.5px; }

    .service-section,
    .service-section + .service-section { padding: 2.5rem 4%; }
    .process, .cta-section { padding: 2.5rem 4%; }

    .svc-header { margin-bottom: 1.8rem; gap: 1.5rem; }
    .svc-body { gap: 2rem; margin-bottom: 2rem; }
    .svc-tools { margin-bottom: 2rem; }
    .learn-btn { font-size: 0.78rem; padding: 0.5rem 1rem; margin-top: 1.1rem; }

    .svc-features h3, .svc-tools h3, .svc-projects h3 { font-size: 0.95rem; margin-bottom: 0.9rem; }
    .step h3 { font-size: 0.95rem; }
    .project-info h4 { font-size: 0.95rem; }

    .svc-header-right > p { font-size: 0.78rem; }
    .feature-list li { font-size: 0.78rem; }
    .step p { font-size: 0.77rem; }
    .project-info p { font-size: 0.77rem; }
    .process > p { font-size: 0.78rem; }
    .cta-section > p { font-size: 0.78rem; }

    .tags-row { gap: 0.3rem; }
    .tag { font-size: 0.55rem; padding: 0.22rem 0.65rem; }

    .svc-images { gap: 0.5rem; }
    .svc-img { border-radius: var(--radius-sm); }
    .img-cap { font-size: 0.52rem; }

    .projects-grid { gap: 0.8rem; }
    .project-info { padding: 0.95rem 1rem 1.1rem; }
    .p-label { font-size: 0.52rem; }

    .mobile-dual-thumb { padding: 0.65rem 0.65rem 0; gap: 0.4rem; }
    #mobile .project-info { padding: 0.9rem 1rem 1rem; }

    .step { padding: 1.4rem 1.1rem; gap: 0.85rem; }
    .step-num { width: 34px; height: 34px; font-size: 0.48rem; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 360px
═══════════════════════════════════════════════ */
@media (max-width: 360px) {
    .hero h1 { font-size: 1.5rem; }
    .svc-header-left h2,
    .process h2,
    .cta-section h2 { font-size: 1.5rem; }
    .svc-images { grid-template-columns: 1fr; }
    .step { padding: 1.1rem 0.95rem; }
    .feature-list li { font-size: 0.75rem; }
    .project-info h4 { font-size: 0.9rem; }
}

/* ═══════════════════════════════════════════════
   TOUCH IMPROVEMENTS
═══════════════════════════════════════════════ */
@media (hover: none) {
    .project-card:hover { transform: none; }
    .step:hover { transform: none; }
    .svc-img:hover { transform: none; }
    .btn-primary:hover { transform: none; }
    .btn-outline:hover { transform: none; }
    .learn-btn:hover { transform: none; }
}

/* ═══════════════════════════════════════════════
   SAFE AREA (notched phones)
═══════════════════════════════════════════════ */
@supports (padding: max(0px)) {
    .hero,
    .service-section,
    .process,
    .cta-section {
        padding-left: max(4%, env(safe-area-inset-left));
        padding-right: max(4%, env(safe-area-inset-right));
    }
}