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

:root {
  --color-bg: #FFFFFF;
  --color-bg-warm: #fbf3eb;
  --color-bg-warm-light: #fdf8f3;
  --color-bg-warm-hover: #f4ebe2;
  --color-bg-dark: #292d32;
  --color-bg-dark-alt: #1f2328;
  --color-surface: #FFFFFF;
  --color-border: #e6e6e6;
  --color-border-light: #f0ebe5;
  --color-text: #1a1d21;
  --color-text-secondary: #3d4148;
  --color-text-tertiary: #6b7280;
  --color-cta-start: #f44d70;
  --color-cta-end: #f4784f;
  --color-cta-hover: #e63e60;
  --color-white: #FFFFFF;
  --color-success: #16A34A;
  --color-error: #dd3568;
  --font-sans: 'Sora', sans-serif;
  --max-width: 1240px;
  --header-height: 80px;
  --transition: 200ms ease;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-sans); color: var(--color-text); background: var(--color-bg); line-height: 1.7; font-size: 16px; }

a { color: var(--color-text); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-cta-start); }

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

h1, h2, h3, h4, h5, h6 { line-height: 1.3; font-weight: 600; color: var(--color-text); }
h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 600; }
h3 { font-size: 1.375rem; font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 500; }
p { color: var(--color-text-secondary); }

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

/* HEADER */
.site-header { background: var(--color-bg-warm); min-height: var(--header-height); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-height); max-width: var(--max-width); margin: 0 auto; padding: 0 20px; position: relative; }
.header-logo { display: block; width: 200px; }
.header-logo img { display: block; width: 100%; height: auto; }

.header-nav { display: flex; align-items: center; gap: 0; }
.header-nav a { font-size: 16px; font-weight: 400; color: var(--color-text); padding: 8px 18px; transition: all var(--transition); }
.header-nav a:hover { color: var(--color-cta-start); }
.header-nav a.active { color: var(--color-cta-start); }

.header-cta { font-size: 16px; font-weight: 500; color: var(--color-white) !important; background-image: linear-gradient(to right, var(--color-cta-start), var(--color-cta-end)); padding: 12px 25px; transition: all var(--transition); display: inline-block; }
.header-cta:hover { background: var(--color-cta-hover); color: var(--color-white) !important; }

.nav-toggle-input { display: none; }
.mobile-toggle { display: none; cursor: pointer; padding: 8px; color: var(--color-text); }
.mobile-toggle svg { width: 24px; height: 24px; }
.mobile-toggle .icon-close { display: none; }
.nav-toggle-input:checked ~ .mobile-toggle .icon-menu { display: none; }
.nav-toggle-input:checked ~ .mobile-toggle .icon-close { display: block; }

/* HERO */
.hero { background: url('/images/hero-bg.png') center/cover no-repeat var(--color-bg-warm); padding: 0; text-align: center; position: relative; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(20,22,26,0.55) 0%, rgba(20,22,26,0.7) 100%); z-index: 1; }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 890px; margin: 0 auto; padding: 80px 0 110px; }
.hero h1 { margin-bottom: 16px; color: #fff; }
.hero h1 span { display: block; font-size: 2rem; font-weight: 500; padding-bottom: 10px; color: rgba(255,255,255,0.85); }
.hero p { font-size: 1.125rem; line-height: 1.8; max-width: 890px; margin: 0 auto 24px; text-align: center; color: rgba(255,255,255,0.88); }
.hero-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.hero .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.6); }
.hero .btn-secondary:hover { background: #fff; color: var(--color-text); border-color: #fff; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-sans); font-size: 16px; font-weight: 500; padding: 15px 25px; border: none; cursor: pointer; transition: all var(--transition); text-decoration: none; line-height: 1.5; }
.btn-primary { background-image: linear-gradient(to right, var(--color-cta-start), var(--color-cta-end)); color: var(--color-white); }
.btn-primary:hover { background: var(--color-cta-hover); color: var(--color-white); }
.btn-secondary { background: none; color: var(--color-text); border: 2px solid var(--color-text); padding: 13px 23px; }
.btn-secondary:hover { background: var(--color-text); color: var(--color-white); }
.btn-ghost { background: transparent; color: var(--color-text-secondary); padding: 15px 20px; }
.btn-ghost:hover { color: var(--color-text); background: var(--color-bg-warm-hover); }
.btn-sm { font-size: 14px; padding: 10px 20px; }
.btn-sm.btn-secondary { padding: 8px 18px; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* SECTIONS */
.section { padding: 90px 0; }
.section-warm { background: var(--color-bg-warm); }
.section-warm-light { background: var(--color-bg-warm-light); }
.section-header { margin-bottom: 40px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.125rem; max-width: 890px; line-height: 1.8; }
.section-label { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-cta-start); margin-bottom: 8px; }

/* CONTENT IMAGE SECTION (like current site) */
.content-image-section { overflow: hidden; padding: 90px 0; }
.content-image-inner { display: flex; align-items: center; gap: 60px; }
.content-image-inner.reverse { flex-direction: row-reverse; }
.content-left { flex: 1; }
.content-left h2 { font-size: 2.5rem; margin-bottom: 20px; }
.content-left p { font-size: 1.125rem; line-height: 1.8; margin-bottom: 20px; }
.content-left .stat-block { display: inline-flex; align-items: baseline; gap: 8px; margin-bottom: 24px; }
.content-left .stat-number { font-size: 3rem; font-weight: 700; color: var(--color-text); }
.content-left .stat-label { font-size: 1rem; font-weight: 500; color: var(--color-text-secondary); }
.content-right { flex: 0 0 46%; position: relative; }
.content-right img { width: 100%; border-radius: 4px; }
.content-right .image-caption { position: absolute; bottom: 16px; left: 16px; background: rgba(41,45,50,0.85); color: var(--color-white); font-size: 0.8125rem; padding: 8px 16px; }
.content-right .image-caption a { color: var(--color-white); text-decoration: underline; }

.content-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.service-card { padding: 0; }
.service-icon { width: 48px; height: 48px; margin-bottom: 20px; color: var(--color-cta-start); display: flex; align-items: center; justify-content: center; }
.service-icon svg { width: 36px; height: 36px; }
.service-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.service-card p { font-size: 1rem; margin-bottom: 16px; line-height: 1.7; }
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.service-card li { font-size: 0.9375rem; color: var(--color-text-secondary); padding-left: 20px; position: relative; }
.service-card li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--color-cta-start); opacity: 0.5; }

/* FIT SECTION */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.fit-col { padding: 0; }
.fit-col h3 { margin-bottom: 20px; font-size: 1.25rem; }
.fit-col.good h3 { color: var(--color-text); }
.fit-col.not h3 { color: var(--color-text-tertiary); }
.fit-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.fit-col li { font-size: 1rem; color: var(--color-text-secondary); padding-left: 28px; position: relative; line-height: 1.6; }
.fit-col.good li::before { content: "\2713"; position: absolute; left: 0; color: var(--color-success); font-weight: 600; font-size: 1.1em; }
.fit-col.not li::before { content: "\2717"; position: absolute; left: 0; color: var(--color-text-tertiary); font-weight: 600; }

/* CASE STUDIES SECTION ON HOME */
.case-studies-home { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.cs-home-card { overflow: hidden; }
.cs-home-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; margin-bottom: 16px; }
.cs-home-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.cs-home-card p { font-size: 0.9375rem; line-height: 1.6; }

/* FEATURED WORK */
.featured-project { background: var(--color-surface); border: 1px solid var(--color-border-light); overflow: hidden; margin-bottom: 24px; }
.featured-project-inner { display: grid; grid-template-columns: 1fr 1fr; }
.featured-project-content { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.featured-project-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-tertiary); margin-bottom: 12px; }
.featured-project-content h3 { font-size: 1.5rem; margin-bottom: 12px; }
.featured-project-content > p { margin-bottom: 20px; font-size: 0.9375rem; }
.featured-project-details { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.featured-project-details li { font-size: 0.875rem; color: var(--color-text-secondary); padding-left: 18px; position: relative; }
.featured-project-details li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--color-cta-start); opacity: 0.5; }
.featured-project-media { background: var(--color-bg-dark); display: flex; align-items: center; justify-content: center; min-height: 300px; padding: 40px; }
.featured-project-media img { max-height: 120px; width: auto; object-fit: contain; }

/* SEO CAPABILITIES LIST */
.capabilities-list { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.capability-tag { font-size: 0.9375rem; font-weight: 500; color: var(--color-text); padding: 0 0 0 24px; position: relative; }
.capability-tag::before { content: "\2713"; position: absolute; left: 0; color: var(--color-cta-start); font-weight: 600; }

/* CTA SECTION */
.cta-section { text-align: center; padding: 90px 0; background: var(--color-bg-warm); }
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { max-width: 640px; margin: 0 auto 28px; font-size: 1.125rem; line-height: 1.7; }

/* CASE STUDIES PAGE */
.case-studies-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.case-study-card { background: var(--color-surface); border: 1px solid var(--color-border); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.case-study-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); color: inherit; }
.case-study-card-media { background: var(--color-bg-dark); height: 220px; display: flex; align-items: center; justify-content: center; padding: 0; overflow: hidden; }
.case-study-card-media img { width: 100%; height: 100%; object-fit: cover; }
.case-study-card-media.logo-media { padding: 24px; }
.case-study-card-media.logo-media img { max-height: 64px; width: auto; object-fit: contain; height: auto; }
.case-study-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.case-study-card-label { font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-tertiary); margin-bottom: 8px; }
.case-study-card-body h3 { margin-bottom: 8px; font-size: 1.25rem; }
.case-study-card-body p { font-size: 0.9375rem; margin-bottom: 16px; flex: 1; line-height: 1.6; }
.case-study-card .btn { align-self: flex-start; }

.legacy-section { margin-top: 64px; }
.legacy-section h3 { margin-bottom: 8px; }
.legacy-section > p { margin-bottom: 24px; }
.legacy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.legacy-card { background: var(--color-surface); border: 1px solid var(--color-border); padding: 24px; transition: all var(--transition); display: block; color: inherit; }
.legacy-card:hover { border-color: var(--color-cta-start); color: inherit; }
.legacy-card h4 { margin-bottom: 6px; font-size: 1.125rem; color: var(--color-text); }
.legacy-card p { font-size: 0.875rem; }

/* CASE STUDY DETAIL */
.case-study-hero { padding: 80px 0 48px; background: var(--color-bg-warm); }
.case-study-hero .back-link { font-size: 0.875rem; font-weight: 500; color: var(--color-text-tertiary); display: inline-flex; align-items: center; gap: 6px; margin-bottom: 24px; }
.case-study-hero .back-link:hover { color: var(--color-cta-start); }
.case-study-hero h1 { font-size: 2.5rem; margin-bottom: 8px; }
.case-study-meta { display: flex; gap: 24px; margin-bottom: 20px; flex-wrap: wrap; }
.case-study-meta-item { font-size: 0.875rem; color: var(--color-text-secondary); }
.case-study-meta-item strong { color: var(--color-text); font-weight: 500; }
.case-study-hero > p, .case-study-hero .container > p { font-size: 1.125rem; max-width: 890px; line-height: 1.8; }

.case-study-banner { margin-bottom: 48px; overflow: hidden; border-radius: 4px; }
.case-study-banner img { width: 100%; height: auto; display: block; }
.case-study-banner.logo-banner { background: var(--color-bg-dark); display: flex; align-items: center; justify-content: center; min-height: 260px; padding: 48px; }
.case-study-banner.logo-banner img { max-height: 120px; width: auto; object-fit: contain; }

.case-study-content-images { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0 40px; }
.case-study-content-images img { width: 100%; height: auto; border-radius: 4px; display: block; }

.case-study-body { max-width: 720px; }
.case-study-body h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.case-study-body h2:first-child { margin-top: 0; }
.case-study-body p { margin-bottom: 16px; font-size: 1rem; line-height: 1.8; }
.case-study-body ul { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.case-study-body li { font-size: 0.9375rem; color: var(--color-text-secondary); padding-left: 20px; position: relative; }
.case-study-body li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--color-cta-start); opacity: 0.5; }

.case-study-status { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8125rem; font-weight: 500; color: var(--color-success); margin-top: 0; }
.case-study-status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-success); }

/* ABOUT PAGE */
.about-hero { padding: 60px 0 0; background: var(--color-bg-warm); }
.about-hero-inner { display: flex; align-items: center; gap: 60px; }
.about-hero-content { flex: 1; }
.about-hero-content h1 { margin-bottom: 20px; }
.about-hero-content p { font-size: 1.125rem; line-height: 1.8; margin-bottom: 16px; }
.about-hero-image { flex: 0 0 40%; }
.about-hero-image img { width: 100%; }

.founder-section { overflow: hidden; padding: 90px 0; }
.founder-inner { display: flex; align-items: flex-start; gap: 48px; }
.founder-photo { flex: 0 0 200px; }
.founder-photo img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; }
.founder-info h4 { font-size: 1.125rem; margin-bottom: 4px; }
.founder-info .founder-title { font-size: 0.875rem; color: var(--color-text-tertiary); margin-bottom: 20px; }
.founder-info p { font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }

.about-intro { padding: 80px 0 64px; }
.about-intro h1 { margin-bottom: 16px; }
.about-intro p { font-size: 1.125rem; max-width: 890px; line-height: 1.8; }

.values-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.values-list li { background: var(--color-bg-warm-light); border: 1px solid var(--color-border-light); padding: 20px 24px; font-size: 1rem; color: var(--color-text-secondary); list-style: none; }

.experience-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.experience-tag { background: var(--color-bg-warm-light); border: 1px solid var(--color-border-light); padding: 10px 20px; font-size: 0.9375rem; color: var(--color-text-secondary); }

/* PROJECT GALLERY */
.project-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 32px; }
.project-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* SERVICES PAGE */
.page-hero-image { margin: 32px 0; overflow: hidden; }
.page-hero-image img { width: 100%; height: 320px; object-fit: cover; }

.services-intro { padding: 80px 0 48px; background: var(--color-bg-warm); }
.services-intro h1 { margin-bottom: 16px; }
.services-intro p { font-size: 1.125rem; max-width: 890px; line-height: 1.8; }
.service-detail { margin-bottom: 48px; }
.service-detail h2 { font-size: 1.5rem; margin-bottom: 12px; }
.service-detail p { margin-bottom: 16px; font-size: 1rem; line-height: 1.8; }
.service-detail ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.service-detail li { font-size: 0.9375rem; color: var(--color-text-secondary); padding-left: 20px; position: relative; }
.service-detail li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--color-cta-start); opacity: 0.5; }

/* CONTACT PAGE */
.contact-intro { padding: 80px 0 48px; background: var(--color-bg-warm); }
.contact-intro h1 { margin-bottom: 16px; }
.contact-intro p { font-size: 1.125rem; max-width: 560px; line-height: 1.8; }

.contact-form-wrap { max-width: 560px; padding-bottom: 80px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9375rem; font-weight: 500; color: var(--color-text); margin-bottom: 8px; }
.form-group input,
.form-group textarea { width: 100%; font-family: var(--font-sans); font-size: 1rem; padding: 14px 16px; border: 2px solid var(--color-border); background: var(--color-surface); color: var(--color-text); transition: border-color var(--transition); }
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--color-text); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group .optional { color: var(--color-text-tertiary); font-weight: 400; font-size: 0.875rem; }
.form-note { font-size: 0.875rem; color: var(--color-text-tertiary); margin-top: 16px; line-height: 1.6; }
.form-success { background: #F0FDF4; border: 2px solid #BBF7D0; padding: 20px 24px; font-size: 1rem; color: #166534; }
.form-error { background: #FEF2F2; border: 2px solid #FECACA; padding: 20px 24px; font-size: 1rem; color: #991B1B; }

/* LEGAL PAGES */
.legal-page { padding: 80px 0; }
.legal-page h1 { margin-bottom: 32px; }
.legal-page h3 { margin: 32px 0 12px; font-size: 1.125rem; }
.legal-page p { margin-bottom: 12px; font-size: 1rem; line-height: 1.8; max-width: 720px; }
.legal-page ul { max-width: 720px; margin-bottom: 12px; padding-left: 24px; }
.legal-page li { font-size: 0.9375rem; color: var(--color-text-secondary); margin-bottom: 4px; }
.legal-page ol { max-width: 720px; margin-bottom: 12px; padding-left: 24px; }
.legal-page a { color: var(--color-cta-start); }

/* FOOTER */
.site-footer { background: var(--color-bg-dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: flex; gap: 0; margin-bottom: 48px; }
.footer-cols { display: flex; flex: 1; gap: 0; }
.footer-links { flex: 1; }
.footer-links h5 { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.45); margin-bottom: 24px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.footer-links a { font-size: 1rem; color: var(--color-white); transition: color var(--transition); }
.footer-links a:hover { text-decoration: underline; color: var(--color-white); }
.footer-badge { flex: 0 0 220px; padding-top: 40px; text-align: right; }
.footer-badge img { display: inline-block; max-width: 180px; margin-bottom: 24px; }
.footer-copyright { font-size: 0.875rem; color: var(--color-white); text-align: right; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; margin-top: 20px; }
.footer-bottom p { font-size: 0.875rem; color: rgba(255,255,255,0.5); text-align: center; }

/* PAGE HEADER (for inner pages) */
.page-header { padding: 80px 0 48px; background: var(--color-bg-warm); }
.page-header h1 { margin-bottom: 16px; }
.page-header p { font-size: 1.125rem; max-width: 890px; line-height: 1.8; }

/* 404 PAGE */
.error-page { text-align: center; padding: 120px 0; }
.error-page h1 { font-size: 4rem; color: var(--color-text-tertiary); margin-bottom: 16px; }
.error-page h2 { margin-bottom: 12px; }
.error-page p { margin-bottom: 32px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .services-grid,
  .case-studies-grid,
  .fit-grid,
  .legacy-grid,
  .values-list { grid-template-columns: 1fr; }

  .featured-project-inner { grid-template-columns: 1fr; }
  .featured-project-media { min-height: 200px; }

  .content-image-inner,
  .content-image-inner.reverse { flex-direction: column; }
  .content-right { flex: none; width: 100%; }

  .about-hero-inner { flex-direction: column; }
  .about-hero-image { flex: none; width: 100%; }

  .founder-inner { flex-direction: column; align-items: center; text-align: center; }
  .founder-photo { flex: none; }

  .footer-grid { flex-direction: column; gap: 32px; }
  .footer-cols { flex-direction: column; gap: 32px; }
  .footer-badge { text-align: left; padding-top: 0; }
  .footer-copyright { text-align: left; }

  .case-studies-home { grid-template-columns: 1fr; }
  .case-study-content-images { grid-template-columns: 1fr; }

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

  .section { padding: 60px 0; }
  .content-image-section { padding: 60px 0; }
  .hero-content { padding: 50px 0 70px; }
  .cta-section { padding: 60px 0; }
}

@media (max-width: 640px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .container { padding: 0 16px; }

  .header-nav { display: none; position: fixed; top: var(--header-height); left: 0; right: 0; background: var(--color-bg-warm); padding: 16px 24px; flex-direction: column; align-items: stretch; box-shadow: 0 10px 30px rgba(0,0,0,0.08); z-index: 999; }
  .nav-toggle-input:checked ~ .header-nav { display: flex; }
  .header-nav a { padding: 12px 0; }
  .header-cta { text-align: center; margin-top: 8px; }
  .mobile-toggle { display: block; }

  .hero-content { padding: 40px 0 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; text-align: center; justify-content: center; }

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

  .content-left h2 { font-size: 1.75rem; }
  .project-gallery { grid-template-columns: repeat(2, 1fr); }

  .footer-bottom { flex-direction: column; text-align: center; }
}
