/* ============================================
   Farpak LLC — Apple-Inspired Dark Theme
   ============================================ */

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

:root {
    --bg: #000000;
    --bg-elevated: #0a0a0a;
    --surface: #111111;
    --surface-hover: #1a1a1a;
    --border: rgba(255,255,255,0.08);
    --text: #f5f5f7;
    --text-secondary: #86868b;
    --text-tertiary: #6e6e73;
    --accent-cyan: #06b6d4;
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    --accent-orange: #f59e0b;
    --accent-blue: #3b82f6;
    --accent-green: #22c55e;
    --accent-red: #ef4444;
    --nav-height: 52px;
    --section-pad: clamp(80px, 12vw, 160px);
    --content-width: 1080px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ── Navigation ──────────────────────────── */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    background: rgba(0,0,0,0.72);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

.nav-inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

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

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* Mobile Menu */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0,0,0,0.95);
    backdrop-filter: saturate(180%) blur(40px);
    -webkit-backdrop-filter: saturate(180%) blur(40px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active .mobile-menu-inner {
    transform: translateY(0);
}

.mobile-menu-inner a {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
    transition: color 0.2s;
}

.mobile-menu-inner a:hover {
    color: var(--accent-cyan);
}

.mobile-menu-divider {
    width: 40px;
    height: 1px;
    background: var(--border);
}

/* ── Hero ────────────────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(6,182,212,0.08) 0%, rgba(168,85,247,0.05) 40%, transparent 70%);
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168,85,247,0.06) 0%, transparent 60%);
    animation: glow-pulse 8s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-eyebrow {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(17px, 2.2vw, 21px);
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    background: var(--text);
    border-radius: 980px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #d1d1d6;
    transform: scale(1.03);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 980px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
    transform: scale(1.03);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--text-tertiary), transparent);
    animation: scroll-fade 2s ease-in-out infinite;
}

@keyframes scroll-fade {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ── Sections (Shared) ───────────────────── */

.section {
    padding: var(--section-pad) 24px;
    position: relative;
}

.section-inner {
    max-width: var(--content-width);
    margin: 0 auto;
}

.section-eyebrow {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(36px, 5.5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 600px;
    margin-bottom: 60px;
}

/* ── Services ────────────────────────────── */

.services {
    border-top: 1px solid var(--border);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 36px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    background: var(--surface-hover);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

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

/* ── Portfolio ───────────────────────────── */

.portfolio {
    border-top: 1px solid var(--border);
    background: var(--bg-elevated);
}

.portfolio-hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

/* Phone device mockup */

.portfolio-device {
    display: flex;
    justify-content: center;
}

.device-frame {
    width: 280px;
    height: 580px;
    background: #1c1c1e;
    border-radius: 44px;
    padding: 12px;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
    position: relative;
}

.device-screen {
    width: 100%;
    height: 100%;
    border-radius: 34px;
    overflow: hidden;
    background: #000;
    position: relative;
}

/* TaskFlow UI inside device */

.taskflow-ui {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0c0c0e 0%, #111113 100%);
    display: flex;
    flex-direction: column;
    font-family: var(--font);
    position: relative;
}

.tf-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.tf-notch {
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 0 0 20px 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.tf-status-icons {
    display: flex;
    gap: 4px;
    align-items: center;
}

.tf-signal, .tf-wifi, .tf-battery {
    display: block;
    background: #fff;
    border-radius: 1px;
}

.tf-signal { width: 14px; height: 8px; border-radius: 2px; }
.tf-wifi { width: 12px; height: 8px; border-radius: 50%; }
.tf-battery { width: 20px; height: 9px; border-radius: 2px; }

.tf-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 20px 8px;
    font-size: 16px;
    color: rgba(255,255,255,0.6);
}

.tf-filter-bar {
    display: flex;
    gap: 0;
    padding: 4px 12px;
    margin: 4px 14px;
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
}

.tf-pill {
    flex: 1;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    padding: 7px 4px;
    border-radius: 16px;
    color: rgba(255,255,255,0.45);
    transition: all 0.3s;
}

.tf-pill.active {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
}

.tf-section-header {
    padding: 14px 20px 6px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tf-task {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
}

.tf-task-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.tf-task-check.done {
    background: var(--accent-green);
    border-color: var(--accent-green);
}

.tf-task-title {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.tf-task-meta {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
}

.tf-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 28px;
}

.tf-bar-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.tf-bar-btn.accent {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
}

.tf-bar-search {
    flex: 1;
    height: 36px;
    line-height: 36px;
    padding: 0 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    font-size: 11px;
    color: rgba(255,255,255,0.3);
}

/* Portfolio info */

.portfolio-icon-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.portfolio-app-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
}

.portfolio-icon-row h3 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.portfolio-platform {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.portfolio-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-tags span {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 980px;
}

/* Features Grid */

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

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding: 24px 28px 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0 28px 28px;
}

.feature-visual {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* AI Visual */

.ai-visual {
    flex-direction: column;
    gap: 12px;
    padding: 28px;
    background: linear-gradient(180deg, rgba(168,85,247,0.06) 0%, transparent 100%);
}

.ai-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 12px;
    line-height: 1.5;
}

.ai-bubble.left {
    align-self: flex-end;
    background: var(--accent-blue);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.ai-bubble.right {
    align-self: flex-start;
    background: rgba(255,255,255,0.08);
    color: var(--text);
    border-bottom-left-radius: 4px;
}

.ai-sparkle {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 20px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.1) rotate(15deg); }
}

/* Calendar Visual */

.calendar-visual {
    flex-direction: column;
    gap: 8px;
    padding: 20px 28px;
    background: linear-gradient(180deg, rgba(6,182,212,0.06) 0%, transparent 100%);
}

.cal-header {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    width: 100%;
    text-align: center;
    margin-bottom: 4px;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    width: 100%;
}

.cal-grid span {
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    padding: 5px 0;
    color: var(--text-secondary);
    border-radius: 8px;
}

.cal-grid span.dim {
    color: var(--text-tertiary);
    opacity: 0.4;
}

.cal-grid span.today {
    background: var(--accent-cyan);
    color: #000;
    font-weight: 700;
    border-radius: 50%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-tasks {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.cal-task-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.cal-task-dot.orange { background: var(--accent-orange); }
.cal-task-dot.blue { background: var(--accent-blue); }
.cal-task-dot.purple { background: var(--accent-purple); }

/* Stats Visual */

.stats-visual {
    gap: 24px;
    padding: 28px;
    background: linear-gradient(180deg, rgba(168,85,247,0.06) 0%, transparent 100%);
}

.stat-ring {
    position: relative;
    width: 80px;
    height: 80px;
}

.stat-ring svg {
    width: 100%;
    height: 100%;
}

.stat-pct {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
}

.stat-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}

.stat-bar {
    width: 18px;
    height: var(--h);
    background: var(--c);
    border-radius: 4px 4px 2px 2px;
    opacity: 0.8;
}

/* Canvas Visual */

.canvas-visual {
    flex-direction: column;
    gap: 16px;
    padding: 28px;
    background: linear-gradient(180deg, rgba(239,68,68,0.06) 0%, transparent 100%);
}

.canvas-sync {
    display: flex;
    align-items: center;
    gap: 20px;
}

.canvas-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    border: 1px solid var(--border);
}

.canvas-icon svg, .canvas-tf-icon {
    width: 32px;
    height: 32px;
}

.canvas-tf-icon {
    border-radius: 8px;
}

.sync-arrow {
    font-size: 24px;
    color: var(--text-tertiary);
    animation: sync-pulse 2s ease-in-out infinite;
}

@keyframes sync-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.canvas-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── About ───────────────────────────────── */

.about {
    border-top: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

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

.about-values {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.value-number {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-cyan);
    min-width: 28px;
    padding-top: 2px;
}

.value h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.value p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ── Contact ─────────────────────────────── */

.contact {
    border-top: 1px solid var(--border);
    text-align: center;
}

.contact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact .section-subtitle {
    margin-bottom: 40px;
}

.contact-btn {
    font-size: 17px;
    padding: 18px 40px;
}

/* ── Footer ──────────────────────────────── */

.footer {
    border-top: 1px solid var(--border);
    padding: 60px 24px 32px;
    background: var(--bg);
}

.footer-inner {
    max-width: var(--content-width);
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-tertiary);
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h5 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-tertiary);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text);
}

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

.footer-bottom p {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* ── Scroll Reveal Animations ────────────── */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ──────────────────────────── */

@media (max-width: 900px) {
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .portfolio-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .portfolio-icon-row {
        justify-content: center;
    }

    .portfolio-tags {
        justify-content: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 680px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 56px);
    }

    .device-frame {
        width: 240px;
        height: 500px;
        border-radius: 36px;
    }

    .device-screen {
        border-radius: 28px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

    .services-grid {
        gap: 12px;
    }

    .service-card {
        padding: 28px 24px;
    }
}
