/* ZIFI Brand Styles */

:root,
[data-theme="light"] {
  --blue-light: #007bff;
  --blue-dark: #0056b3;
  --blue-gradient: linear-gradient(180deg, #007bff 0%, #0056b3 100%);
  --grey-dark: #333333;
  --grey-mid: #666666;
  --grey-light: #f4f7fb;
  --grey-border: #e2e8f0;
  --black: #1a1a1a;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f4f7fb;
  --text: #333333;
  --text-muted: #666666;
  --header-bg: rgba(255, 255, 255, 0.95);
  --footer-bg: #1a1a1a;
  --footer-text: rgba(255, 255, 255, 0.7);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 86, 179, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 86, 179, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --header-height: 80px;
  --text-on-primary: #ffffff;
  --surface: #ffffff;
}

[data-theme="dark"] {
  --blue-light: #4dabf7;
  --blue-dark: #66b3ff;
  --blue-gradient: linear-gradient(180deg, #4dabf7 0%, #007bff 100%);
  --grey-dark: #d8dee9;
  --grey-mid: #a9b4c4;
  --grey-light: #1e2530;
  --grey-border: #2d3748;
  --black: #f1f5f9;
  --white: #171d26;
  --surface: #171d26;
  --bg: #0f1419;
  --bg-alt: #1a222d;
  --text: #d8dee9;
  --text-muted: #a9b4c4;
  --header-bg: rgba(15, 20, 25, 0.95);
  --footer-bg: #0a0e13;
  --footer-text: rgba(216, 222, 233, 0.75);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.45);
  --text-on-primary: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--blue-light);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-border);
  height: var(--header-height);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-link--footer {
  display: inline-block;
  margin-bottom: 1rem;
}

.logo-img-wrap {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  display: block;
  height: auto;
  width: auto;
  max-height: 44px;
}

.logo-img--theme-dark {
  display: none;
}

[data-theme="dark"] .logo-img--theme-light {
  display: none;
}

[data-theme="dark"] .logo-img--theme-dark {
  display: block;
}

.logo-img--hero {
  max-width: min(520px, 100%);
  max-height: none;
  width: 100%;
}

.logo-img--footer {
  max-height: 72px;
}

.logo-img--admin {
  max-height: 36px;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.hero-logo-wrap.logo-img--hero-wrap {
  width: 100%;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--grey-border);
  border-radius: 10px;
  background: var(--bg-alt);
  color: var(--text);
  cursor: pointer;
}

.theme-toggle__icon--dark { display: none; }
[data-theme="dark"] .theme-toggle__icon--light { display: none; }
[data-theme="dark"] .theme-toggle__icon--dark { display: inline; }

.flash-wrap { padding-top: 1rem; }
.flash {
  padding: 0.875rem 1rem;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}
.flash--success { background: #d1fae5; color: #065f46; }
.flash--danger { background: #fee2e2; color: #991b1b; }
.flash--info { background: #dbeafe; color: #1e40af; }
.flash--warning { background: #fef3c7; color: #92400e; }

.cms-body { margin: 1rem 0; color: var(--text-muted); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav {
  margin-left: auto;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-dark);
  border-radius: 8px;
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue-dark);
  background: rgba(0, 123, 255, 0.08);
}

[data-theme="dark"] .main-nav a:hover,
[data-theme="dark"] .main-nav a.active {
  color: var(--blue-light);
  background: rgba(77, 171, 247, 0.16);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--grey-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--blue-gradient);
  color: var(--text-on-primary);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--text-on-primary);
}

.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn-outline:hover {
  background: var(--blue-dark);
  color: var(--text-on-primary);
}

[data-theme="dark"] .btn-outline {
  color: var(--blue-light);
  border-color: rgba(77, 171, 247, 0.65);
  background: rgba(77, 171, 247, 0.08);
}

[data-theme="dark"] .btn-outline:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  color: var(--text-on-primary);
}

.btn-white {
  background: #ffffff;
  color: #0056b3;
}

.btn-white:hover {
  background: #f4f7fb;
  color: #0056b3;
}

.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0, 123, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(0, 86, 179, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #f8fbff 0%, var(--surface) 100%);
  z-index: 0;
}

[data-theme="dark"] .hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(77, 171, 247, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(0, 123, 255, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #141b24 0%, var(--bg) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-dark);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--grey-mid);
  margin-bottom: 1rem;
  max-width: 520px;
}

.hero-tagline {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--grey-dark);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  max-width: 420px;
}

/* Services Strip */
.services-strip {
  background: var(--surface);
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
  padding: 2rem 0;
}

.services-strip-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.service-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  color: var(--grey-dark);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  border-radius: var(--radius);
}

.service-strip-item:hover {
  color: var(--blue-dark);
  background: rgba(0, 123, 255, 0.05);
}

.service-divider {
  width: 1px;
  height: 60px;
  background: var(--grey-border);
}

/* Service Icons */
.service-icon {
  color: var(--blue-dark);
  width: 40px;
  height: 40px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-icon--large {
  width: 56px;
  height: 56px;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.alt-section {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2,
.about-section h2,
.services-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}

.section-header p,
.lead {
  font-size: 1.125rem;
  color: var(--grey-mid);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-section p {
  margin-bottom: 1rem;
}

.about-section .btn {
  margin-top: 1rem;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin: 1rem 0 0.75rem;
}

.service-card p {
  color: var(--grey-mid);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.service-list {
  list-style: none;
  margin-bottom: 1.25rem;
}

.service-list li {
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: var(--grey-dark);
  padding-left: 1.25rem;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  background: var(--blue-light);
  border-radius: 50%;
}

.link-arrow {
  font-weight: 600;
  font-size: 0.9375rem;
}

/* CTA Section */
.cta-section {
  background: var(--blue-gradient);
  padding: 4rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-inner h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-on-primary);
  margin-bottom: 0.5rem;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.85);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(180deg, #f8fbff 0%, var(--surface) 100%);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--grey-border);
}

[data-theme="dark"] .page-hero {
  background: linear-gradient(180deg, #141b24 0%, var(--bg) 100%);
}

.page-hero-icon {
  margin-bottom: 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.page-hero-lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--grey-mid);
  max-width: 640px;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--grey-light);
  border-radius: var(--radius);
  border: 1px solid var(--grey-border);
}

.feature-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--blue-gradient);
  color: var(--text-on-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}

.check-list {
  list-style: none;
  margin-top: 1rem;
}

.check-list li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
}

.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--blue-dark);
  font-weight: 700;
}

.cta-box {
  background: var(--surface);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.cta-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.cta-box p {
  margin-bottom: 1.25rem;
  color: var(--grey-mid);
}

/* Related Services */
.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.related-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  color: var(--grey-dark);
  font-weight: 600;
  transition: all var(--transition);
}

.related-card:hover {
  border-color: var(--blue-light);
  color: var(--blue-dark);
  background: rgba(0, 123, 255, 0.05);
}

.related-card .service-icon {
  width: 32px;
  height: 32px;
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.project-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.project-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.project-image--web { background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); }
.project-image--hosting { background: linear-gradient(135deg, #0056b3 0%, #003d80 100%); }
.project-image--cloud { background: linear-gradient(135deg, #4dabf7 0%, #007bff 100%); }
.project-image--security { background: linear-gradient(135deg, #333 0%, #0056b3 100%); }
.project-image--support { background: linear-gradient(135deg, #007bff 0%, #333 100%); }
.project-image--ecommerce { background: linear-gradient(135deg, #0056b3 0%, #007bff 50%, #333 100%); }

.project-content {
  padding: 1.5rem;
}

.project-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-dark);
  background: rgba(0, 123, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.project-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.project-content p {
  font-size: 0.9375rem;
  color: var(--grey-mid);
}

/* Support */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.support-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
}

.support-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.support-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.support-card p {
  color: var(--grey-mid);
  margin-bottom: 1.5rem;
}

.support-note {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(0, 123, 255, 0.08);
  border-radius: var(--radius);
  font-size: 0.9375rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--grey-mid);
  margin-bottom: 2rem;
}

.contact-detail {
  margin-bottom: 1.5rem;
}

.contact-detail h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-dark);
  margin-bottom: 0.25rem;
}

.contact-detail p,
.contact-detail a {
  color: var(--grey-dark);
}

.contact-services {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-border);
}

.contact-services h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-mid);
  margin-bottom: 0.5rem;
}

.contact-form {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--grey-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  border: 1px solid var(--grey-border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--grey-mid);
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--footer-text);
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact p {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo {
    max-width: 300px;
  }

  .about-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--grey-border);
    padding: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }

  .service-divider {
    display: none;
  }

  .services-strip-grid {
    gap: 0.5rem;
  }

  .service-strip-item {
    flex: 1 1 calc(33% - 1rem);
    min-width: 100px;
    padding: 0.75rem;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .service-strip-item {
    flex: 1 1 calc(50% - 0.5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
