/* ============================================================
   Casey IT Limited — Global Stylesheet
   Primary: #1B3A5C (dark navy) | Accent: #2E75B6 (mid blue)
   Font: Inter (Google Fonts)
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #333; line-height: 1.6; background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: #2E75B6; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 6px;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s ease; border: 2px solid transparent;
}
.btn-primary { background: #2E75B6; color: #fff; border-color: #2E75B6; }
.btn-primary:hover { background: #1a5c96; border-color: #1a5c96; text-decoration: none; color: #fff; }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-secondary:hover { background: rgba(255,255,255,0.12); text-decoration: none; color: #fff; border-color: #fff; }

/* ---- Navbar ---- */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: #0D2B4D;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 72px;
}
.nav-brand img { height: 50px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.95rem; transition: color 0.2s;
}
.nav-links a:hover { color: #fff; text-decoration: none; }
.nav-links a.active { color: #fff; }
.nav-links .btn-nav {
  background: #2E75B6; color: #fff; padding: 10px 24px;
  border-radius: 6px; font-weight: 600; border: 2px solid #2E75B6;
}
.nav-links .btn-nav:hover { background: #1a5c96; border-color: #1a5c96; color: #fff; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(160deg, #0D2B4D 0%, #071830 100%);
  padding: 100px 24px 110px; text-align: center; color: #fff;
}
.hero-logo { max-width: 340px; margin: 0 auto 44px; }
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700;
  line-height: 1.2; max-width: 820px; margin: 0 auto 20px;
}
.hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.8);
  max-width: 640px; margin: 0 auto 40px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Sections ---- */
.section { padding: 88px 0; }
.section-alt { background: #F5F7FA; }
.section-dark { background: #0D2B4D; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #1B3A5C; margin-bottom: 12px; }
.section-header p { color: #666; max-width: 600px; margin: 0 auto; font-size: 1rem; }
.section-dark .section-header h2 { color: #fff; }
.section-dark .section-header p { color: rgba(255,255,255,0.75); }

/* ---- Value Strip ---- */
.value-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.value-card {
  text-align: center; padding: 48px 32px;
  border-right: 1px solid #E0E7EF;
}
.value-card:last-child { border-right: none; }
.value-icon { width: 52px; height: 52px; margin: 0 auto 20px; color: #2E75B6; }
.value-card h3 { font-size: 1.1rem; color: #1B3A5C; margin-bottom: 12px; font-weight: 600; }
.value-card p { color: #666; font-size: 0.95rem; }

/* ---- About Teaser ---- */
.about-teaser {
  background: linear-gradient(160deg, #0D2B4D 0%, #0A2040 100%);
  color: #fff; text-align: center; padding: 88px 24px;
}
.about-teaser h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 20px; font-weight: 700; }
.about-teaser p {
  max-width: 720px; margin: 0 auto 32px;
  color: rgba(255,255,255,0.82); font-size: 1.05rem; line-height: 1.7;
}
.link-arrow { color: #5BAAEB; font-weight: 600; font-size: 1.05rem; }
.link-arrow:hover { color: #fff; text-decoration: none; }

/* ---- Services Grid ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; border: 1px solid #E0E7EF; border-radius: 12px;
  padding: 32px 28px; transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(27,58,92,0.12); transform: translateY(-3px); }
.card-icon { width: 44px; height: 44px; color: #2E75B6; margin-bottom: 16px; }
.service-card h3 { font-size: 1.05rem; color: #1B3A5C; margin-bottom: 10px; font-weight: 600; }
.service-card p { color: #666; font-size: 0.93rem; margin-bottom: 16px; line-height: 1.5; }
.service-card a { color: #2E75B6; font-weight: 600; font-size: 0.9rem; }
.service-card a:hover { text-decoration: underline; }

/* ---- Certifications Banner ---- */
.certs-section { background: linear-gradient(160deg, #0D2B4D 0%, #071830 100%); padding: 72px 0; text-align: center; }
.certs-section h2 { color: #fff; font-size: clamp(1.4rem, 2.5vw, 1.85rem); margin-bottom: 40px; font-weight: 700; }
.certs-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; list-style: none; }
.certs-list li {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; padding: 12px 24px; border-radius: 32px; font-size: 0.88rem; font-weight: 500;
}

/* ---- Footer ---- */
footer { background: #0D2B4D; color: rgba(255,255,255,0.7); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  max-width: 1200px; margin: 0 auto; padding: 0 24px 56px;
}
.footer-brand img { height: 42px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; max-width: 280px; }
footer h4 { color: #fff; margin-bottom: 18px; font-size: 0.95rem; font-weight: 600; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; text-decoration: none; }
.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-bottom {
  background: #071830;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center; padding: 22px 24px;
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(160deg, #0D2B4D 0%, #071830 100%);
  color: #fff; padding: 80px 24px; text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; font-weight: 700; }
.page-hero p {
  color: rgba(255,255,255,0.8); max-width: 700px;
  margin: 0 auto; font-size: 1.05rem; line-height: 1.7;
}

/* ---- Services Page ---- */
.services-list { padding: 72px 0; }
.service-block { padding: 48px 0; border-bottom: 1px solid #E8EDF3; }
.service-block:last-child { border-bottom: none; }
.service-block-inner { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start; }
.service-block-label { padding-top: 4px; }
.service-block-label .block-icon { width: 52px; height: 52px; color: #2E75B6; margin-bottom: 16px; }
.service-block-label h2 { color: #1B3A5C; font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.service-block-label > p { color: #666; font-size: 0.95rem; line-height: 1.6; }
.service-block-content ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; }
.service-block-content ul li {
  color: #555; font-size: 0.95rem; padding-left: 22px;
  position: relative; line-height: 1.5;
}
.service-block-content ul li::before { content: '→'; position: absolute; left: 0; color: #2E75B6; font-weight: 600; }

/* Engagement Models */
.engagement-section { background: #F5F7FA; padding: 72px 0; }
.engagement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.engagement-card {
  background: #fff; border-radius: 12px; padding: 36px 32px;
  border-top: 4px solid #2E75B6; box-shadow: 0 2px 12px rgba(27,58,92,0.06);
}
.engagement-card h3 { color: #1B3A5C; margin-bottom: 12px; font-size: 1.1rem; font-weight: 700; }
.engagement-card p { color: #666; font-size: 0.95rem; line-height: 1.6; }

/* ---- About Page ---- */
.about-intro { padding: 80px 0; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-intro-text h2 { color: #1B3A5C; font-size: 2rem; margin-bottom: 20px; font-weight: 700; }
.about-intro-text p { color: #555; margin-bottom: 16px; line-height: 1.7; font-size: 0.98rem; }

.meet-section { background: #F5F7FA; padding: 80px 0; }
.meet-grid { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: start; }
.meet-photo img { border-radius: 12px; width: 100%; box-shadow: 0 8px 32px rgba(27,58,92,0.14); }
.meet-content h2 { color: #1B3A5C; font-size: 1.8rem; font-weight: 700; margin-bottom: 4px; }
.meet-content .role { color: #2E75B6; font-weight: 600; font-size: 1rem; margin-bottom: 6px; }
.meet-content .location { color: #888; font-size: 0.9rem; margin-bottom: 24px; }
.meet-content p { color: #555; margin-bottom: 14px; line-height: 1.7; font-size: 0.97rem; }

.certs-section-about { padding: 80px 0; }
.certs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 24px; }
.cert-item {
  background: #F5F7FA; border-radius: 8px; padding: 20px 24px;
  border-left: 4px solid #2E75B6;
}
.cert-item h4 { color: #1B3A5C; font-size: 0.95rem; margin-bottom: 4px; font-weight: 600; }
.cert-item p { color: #888; font-size: 0.85rem; }

.expertise-section { background: #0D2B4D; padding: 72px 0; }
.expertise-section h2 { color: #fff; font-size: clamp(1.4rem, 2.5vw, 1.85rem); margin-bottom: 36px; font-weight: 700; }
.expertise-tags { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.expertise-tags li {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; padding: 9px 18px; border-radius: 24px; font-size: 0.88rem; font-weight: 500;
}

/* ---- Case Studies ---- */
.case-studies-list { padding: 80px 0; }
.case-study {
  background: #fff; border: 1px solid #E0E7EF; border-radius: 12px;
  padding: 44px 44px; margin-bottom: 32px; position: relative; overflow: hidden;
}
.case-study::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: #2E75B6;
}
.case-study h2 { color: #1B3A5C; font-size: 1.35rem; font-weight: 700; margin-bottom: 14px; }
.case-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.case-meta span {
  background: #E8F0F8; color: #1B3A5C;
  padding: 5px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 500;
}
.case-study h3 {
  color: #2E75B6; font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; margin-top: 22px;
}
.case-study p { color: #555; margin-bottom: 10px; line-height: 1.65; font-size: 0.97rem; }
.case-study ul { list-style: none; margin-bottom: 10px; }
.case-study ul li {
  color: #555; font-size: 0.95rem; padding-left: 22px;
  position: relative; margin-bottom: 7px; line-height: 1.5;
}
.case-study ul li::before { content: '→'; position: absolute; left: 0; color: #2E75B6; font-weight: 600; }
.outcome-box {
  background: #F0F7FF; border-radius: 8px; padding: 18px 22px; margin-top: 20px;
  border-left: 3px solid #2E75B6;
}
.outcome-box strong { color: #2E75B6; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 6px; }
.outcome-box p { color: #1B3A5C; font-weight: 500; margin: 0; font-size: 0.97rem; }

/* ---- Contact Page ---- */
.contact-body { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
.contact-info h2 { color: #1B3A5C; font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.contact-info > p { color: #666; margin-bottom: 36px; line-height: 1.6; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  width: 42px; height: 42px; background: #E8F0F8; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #2E75B6;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-detail h4 { color: #1B3A5C; font-size: 0.85rem; font-weight: 600; margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-detail p, .contact-detail a { color: #555; font-size: 0.97rem; }
.contact-detail a:hover { text-decoration: underline; }

.contact-form-wrap h2 { color: #1B3A5C; font-size: 1.5rem; font-weight: 700; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: #333; font-weight: 500; font-size: 0.9rem; margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid #D0D9E4;
  border-radius: 6px; font-size: 0.95rem; font-family: 'Inter', sans-serif;
  color: #333; transition: border-color 0.2s, box-shadow 0.2s; background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: #2E75B6;
  box-shadow: 0 0 0 3px rgba(46,117,182,0.12);
}
.form-group textarea { height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-privacy { font-size: 0.82rem; color: #999; margin-top: 14px; line-height: 1.5; }
.success-msg {
  display: none; background: #E8F5EE; border: 1px solid #66BB6A;
  color: #2E7D32; padding: 16px 20px; border-radius: 8px; margin-top: 16px; font-size: 0.95rem;
}

/* ============================================================
   Animations & Interactions
   ============================================================ */

/* ---- Hero entrance ---- */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1     { animation: fadeSlideDown 0.65s ease both; }
.hero p      { animation: fadeSlideDown 0.65s 0.15s ease both; }
.hero-btns   { animation: fadeSlideDown 0.65s 0.28s ease both; }
.page-hero h1 { animation: fadeSlideDown 0.6s ease both; }
.page-hero p  { animation: fadeSlideDown 0.6s 0.14s ease both; }

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Button hover lift ---- */
.btn-primary:hover  { transform: translateY(-2px); }
.btn-secondary:hover { transform: translateY(-2px); }

/* ---- Nav link underline slide ---- */
.nav-links a:not(.btn-nav) { position: relative; }
.nav-links a:not(.btn-nav)::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: rgba(255,255,255,0.8);
  border-radius: 1px; transition: width 0.25s ease;
}
.nav-links a:not(.btn-nav):hover::after,
.nav-links a:not(.btn-nav).active::after { width: 100%; }
.nav-links .btn-nav { transition: background 0.2s, border-color 0.2s, transform 0.2s; }
.nav-links .btn-nav:hover { transform: translateY(-1px); }

/* ---- Value Card hover ---- */
.value-card { transition: background 0.25s, box-shadow 0.25s, transform 0.25s; cursor: default; }
.value-card:hover {
  background: #EBF3FB;
  box-shadow: 0 6px 24px rgba(46,117,182,0.1);
  transform: translateY(-5px);
}
.value-icon { transition: color 0.25s, transform 0.25s; }
.value-card:hover .value-icon { color: #1B3A5C; transform: scale(1.12); }

/* ---- Service Card hover (enhanced) ---- */
.service-card { transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s; }
.service-card:hover { box-shadow: 0 12px 36px rgba(27,58,92,0.16); transform: translateY(-5px); border-color: #2E75B6; }
.card-icon { transition: color 0.25s, transform 0.25s; }
.service-card:hover .card-icon { color: #1B3A5C; transform: scale(1.1) rotate(-5deg); }

/* ---- Cert pill hover ---- */
.certs-list li { transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s; cursor: default; }
.certs-list li:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* ---- Expertise tags hover ---- */
.expertise-tags li { transition: background 0.25s, border-color 0.25s, transform 0.25s; cursor: default; }
.expertise-tags li:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
}

/* ---- Cert item hover (about page) ---- */
.cert-item { transition: box-shadow 0.25s, transform 0.25s; cursor: default; }
.cert-item:hover { box-shadow: 0 6px 20px rgba(46,117,182,0.14); transform: translateY(-4px); }

/* ---- Case study hover ---- */
.case-study { transition: box-shadow 0.25s, transform 0.25s; }
.case-study:hover { box-shadow: 0 10px 40px rgba(27,58,92,0.14); transform: translateY(-4px); }

/* ---- Service block hover ---- */
.service-block { transition: background 0.25s; border-radius: 8px; }
.service-block:hover { background: #F4F8FD; }
.block-icon { transition: color 0.25s, transform 0.25s; }
.service-block:hover .block-icon { color: #1a5c96; transform: scale(1.08) rotate(-4deg); }

/* ---- Flip Cards — Engagement Models ---- */
.engagement-card {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  border-top: none !important;
  perspective: 1000px;
  min-height: 290px;
  position: relative;
  cursor: pointer;
}
.flip-card-inner {
  position: relative;
  width: 100%; height: 100%; min-height: 290px;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .engagement-card:hover .flip-card-inner { transform: rotateY(180deg); }
}
.engagement-card.is-flipped .flip-card-inner { transform: rotateY(180deg); }

.flip-card-front,
.flip-card-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 12px;
  padding: 36px 32px;
  display: flex; flex-direction: column;
}
.flip-card-front {
  background: #fff;
  border-top: 4px solid #2E75B6;
  box-shadow: 0 2px 12px rgba(27,58,92,0.06);
  transition: box-shadow 0.25s;
}
.engagement-card:hover .flip-card-front { box-shadow: 0 10px 36px rgba(27,58,92,0.14); }
.flip-card-back {
  background: linear-gradient(145deg, #0D2B4D 0%, #2E75B6 100%);
  transform: rotateY(180deg);
  color: #fff;
  justify-content: center;
}
.flip-icon { width: 40px; height: 40px; color: #2E75B6; margin-bottom: 18px; flex-shrink: 0; }
.flip-card-front h3 { color: #1B3A5C; font-size: 1.1rem; font-weight: 700; margin-bottom: 0; flex: 1; }
.flip-hint {
  margin-top: 20px; color: #aaa; font-size: 0.8rem;
  letter-spacing: 0.03em; display: flex; align-items: center; gap: 5px;
}
.flip-card-back h3 { color: #fff; margin-bottom: 14px; font-size: 1.05rem; font-weight: 700; }
.flip-card-back p { color: rgba(255,255,255,0.88); font-size: 0.93rem; line-height: 1.65; margin-bottom: 22px; }
.flip-card-back .btn-flip {
  display: inline-block; background: rgba(255,255,255,0.15);
  color: #fff; padding: 10px 20px; border-radius: 6px;
  font-size: 0.88rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.35);
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none; align-self: flex-start;
}
.flip-card-back .btn-flip:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.6);
  text-decoration: none;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .value-strip { grid-template-columns: 1fr; }
  .value-card { border-right: none; border-bottom: 1px solid #E0E7EF; }
  .value-card:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-block-inner { grid-template-columns: 1fr; gap: 24px; }
  .service-block-content ul { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .meet-grid { grid-template-columns: 1fr; }
  .meet-photo { max-width: 320px; }
  .certs-grid { grid-template-columns: 1fr; }
  .engagement-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .case-study { padding: 32px 28px; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #0D2B4D; box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    padding: 24px; gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 72px 24px 80px; }
  .hero-logo { max-width: 240px; }
  .case-study { padding: 24px 20px; }
  .meet-photo { max-width: 100%; }
}
