:root {
  --primary: #022c22;
  --primary-light: #064e3b;
  --secondary: #d97706;
  --white: #ffffff;

  --bg: #ffffff;
  --surface: #ffffff;
  --text: #0f1b17;
  --muted: #5a6a64;
  --muted-2: #7b8a84;

  --line: rgba(2, 44, 34, 0.12);
  --line-2: rgba(2, 44, 34, 0.18);

  --shadow-soft: 0 10px 24px rgba(2, 44, 34, 0.10);
  --shadow: 0 18px 38px rgba(2, 44, 34, 0.14);
  --shadow-2: 0 28px 60px rgba(2, 44, 34, 0.18);

  --radius: 12px;
  --radius-2: 20px;
  --transition: all 0.3s ease;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body.front-page .site-header,
body.front-page .site-footer,
body.home .site-header,
body.home .site-footer {
  display: none;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.fintax-home {
  width: 100%;
}

.fintax-home .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header#siteHeader {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(2, 44, 34, 0.08);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

body.admin-bar header#siteHeader {
  top: 0;
}

header#siteHeader nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  gap: 16px;
}

header#siteHeader.is-compact nav {
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.brand-logo span {
  color: var(--primary-light);
}

.logo-icon {
  width: 42px;
  height: 42px;
}

.nav-links {
  display: flex;
  gap: 44px;
  margin: 0 0 0.5em 3em;
  padding: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links a {
  font-weight: 650;
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--transition);
}

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

.btn {
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease,
    border-color 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.btn.header-cta {
  padding: 10px 20px;
  font-size: 0.78rem;
  letter-spacing: 0.4px;
}

.menu-toggle {
  display: none;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.menu-toggle i {
  font-size: 1.1rem;
}

.menu-toggle:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
}

.btn.header-cta {
  white-space: nowrap;
}

.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 44, 34, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 990;
}

.offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: #ffffff;
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 40px rgba(2, 44, 34, 0.18);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  z-index: 1001;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offcanvas.open {
  transform: translateX(0);
}

.offcanvas-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offcanvas-title {
  font-weight: 800;
  color: var(--primary);
}

.offcanvas-close {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 8px;
  cursor: pointer;
  color: var(--primary);
}

.offcanvas-menu {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.offcanvas-menu a {
  display: block;
  padding: 10px 6px;
  font-weight: 700;
  color: var(--text);
}

.offcanvas-cta {
  margin-top: auto;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 18px 30px -18px rgba(2, 44, 34, 0.65);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
}

/* Hero */
.hero {
  padding: 200px 0 140px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -14% 0 -14% 0;
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center;
  transform: translate3d(0, 0, 0) scale(1.06);
  will-change: transform;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 44, 34, 0.96) 0%, rgba(6, 78, 59, 0.86) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 4.1vw, 3.9rem);
  line-height: 1.08;
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: -1px;
}

.hero-text h1 span {
  color: var(--secondary);
}

.hero-text p {
  font-size: 1.15rem;
  color: rgba(209, 250, 229, 0.95);
  margin-bottom: 36px;
  max-width: 58ch;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  margin-bottom: 34px;
}

.hero-features {
  display: flex;
  gap: 40px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 26px;
  font-weight: 650;
}

.hero-features i {
  color: var(--secondary);
  margin-right: 8px;
}

.hero-panel {
  width: min(420px, 100%);
  margin-left: auto;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(14px);
  padding: 34px;
  border-radius: 20px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
}

.hero-panel-title {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-bars {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 160px;
}

.hero-bar {
  width: 44px;
  height: 42%;
  background: rgba(255, 255, 255, 0.26);
  border-radius: 6px;
}

.hero-bar:nth-child(2) {
  height: 64%;
  background: rgba(255, 255, 255, 0.46);
}

.hero-bar.accent {
  height: 88%;
  background: var(--secondary);
  position: relative;
}

.hero-badge {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.98);
  color: var(--primary);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 900;
}

.hero-panel-note {
  margin-top: 18px;
  font-size: 0.92rem;
  opacity: 0.92;
  color: rgba(209, 250, 229, 0.92);
}

.hero-anim {
  opacity: 1;
  transform: none;
}

.js .hero-anim {
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn 0.9s var(--ease) forwards;
}

.hero-anim.delay-1 { animation-delay: 0.05s; }
.hero-anim.delay-2 { animation-delay: 0.15s; }
.hero-anim.delay-3 { animation-delay: 0.25s; }
.hero-anim.delay-4 { animation-delay: 0.35s; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.floating-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-2);
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  box-shadow: var(--shadow);
  z-index: 3;
  animation: floatY 8s ease-in-out infinite;
}

.floating-card .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
}

.floating-card.hero-one {
  top: 150px;
  right: 10%;
}

.floating-card.hero-two {
  bottom: 120px;
  right: 18%;
  animation-duration: 10s;
}

.floating-card.services-one {
  top: 40px;
  left: 6%;
  animation-duration: 9s;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Highlights */
.highlights {
  padding: 70px 0 20px;
  background: #ffffff;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.highlight-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}

.highlight-card i {
  color: var(--secondary);
  font-size: 1.3rem;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

/* Featured Services */
.services-featured {
  padding: 100px 0 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  color: var(--primary);
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}

.section-header p {
  color: var(--muted);
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}

.service-card {
  background: var(--surface);
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.service-card:hover {
  border-color: var(--line-2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.service-icon {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 18px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(2, 44, 34, 0.06);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 900;
}

.service-card ul {
  padding-left: 18px;
  color: var(--muted);
  font-weight: 600;
}

.service-card li {
  list-style: disc;
  margin-bottom: 8px;
}

/* Comprehensive Services */
.services-full {
  padding: 80px 0 120px;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.services-full .services-bg {
  position: absolute;
  inset: -14% 0 -14% 0;
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center;
  transform: translate3d(0, 0, 0) scale(1.04);
  opacity: 0.14;
  z-index: 0;
  pointer-events: none;
}

.services-full .services-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 1;
  pointer-events: none;
}

.services-full > .container {
  position: relative;
  z-index: 2;
}

.fintax-home .fintax-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 0 0;
}

.fintax-home .fintax-service-card {
  border-radius: var(--radius-2) !important;
  box-shadow: var(--shadow-soft) !important;
  transition: var(--transition) !important;
  --service-theme-color: var(--secondary) !important;
}

.fintax-home .fintax-service-card:hover {
  box-shadow: var(--shadow-2) !important;
  transform: translateY(-6px);
}

.fintax-home .fintax-card-bg {
  opacity: 0.08 !important;
}

.fintax-home .fintax-icon-wrapper {
  box-shadow: 0 10px 22px -10px rgba(2, 44, 34, 0.25) !important;
}

.services-full .section-header {
  margin-bottom: 40px;
}

.service-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-list-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 26px;
  border-radius: var(--radius-2);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.service-list-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
}

.service-list-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-list-card ul {
  padding-left: 16px;
  color: var(--muted);
  font-weight: 600;
}

.service-list-card li {
  list-style: disc;
  margin-bottom: 6px;
}

/* Why Us */
.why-us {
  padding: 100px 0;
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--primary);
  margin: 10px 0 6px;
}

.why-card p {
  color: var(--muted);
  font-weight: 600;
}

.why-card i {
  color: var(--secondary);
  font-size: 1.1rem;
}

/* Stats */
.stats {
  padding: 100px 0;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: -18% 0 -18% 0;
  background-image: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center;
  transform: translate3d(0, 0, 0) scale(1.06);
  will-change: transform;
  z-index: 0;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(2, 44, 34, 0.95), rgba(2, 44, 34, 0.90));
  z-index: 1;
}

.stats .container {
  position: relative;
  z-index: 2;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item h2 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  color: rgba(255, 255, 255, 0.96);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.stat-item p {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.80);
}

/* Contact */
.contact {
  padding: 100px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-soft);
}

.contact-card h4 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-card p {
  color: var(--muted);
  font-weight: 600;
}

.contact-card i {
  color: var(--secondary);
  margin-right: 8px;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-soft);
}

.contact-form .wpcf7,
.contact-form .wpcf7 form {
  margin: 0;
}

.contact-form .wpcf7 p {
  margin: 0;
}

.contact-form .wpcf7-response-output {
  margin: 12px 0 0;
  border-color: rgba(2, 44, 34, 0.2);
  color: var(--text);
}

.contact-form .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  margin-top: 6px;
  color: #b91c1c;
}

.contact-form .cf7-wrapper {
  display: grid;
  gap: 16px;
}

.contact-form .cf7-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  margin: 0 0 6px;
}

.contact-form .cf7-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form .cf7-field {
  display: block;
}

.contact-form .cf7-field label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 6px;
}

.contact-form .cf7-field input,
.contact-form .cf7-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(2, 44, 34, 0.16);
  background: #fbfbfa;
  font: inherit;
  border-radius: 8px;
  outline: none;
}

.contact-form .wpcf7-form-control {
  font-family: inherit;
  font-size: 1rem;
}

.contact-form .cf7-field textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .cf7-field input:focus,
.contact-form .cf7-field textarea:focus {
  border-color: rgba(6, 78, 59, 0.55);
  box-shadow: 0 0 0 3px rgba(2, 44, 34, 0.12);
}

.contact-form .cf7-full {
  grid-column: 1 / -1;
}

.contact-form .cf7-submit input {
  width: 100%;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  background: var(--primary);
  color: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form .cf7-submit input:hover {
  background: var(--primary-light);
  box-shadow: 0 18px 30px -18px rgba(2, 44, 34, 0.65);
  transform: translateY(-1px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(2, 44, 34, 0.16);
  background: #fbfbfa;
  font: inherit;
  border-radius: 8px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(6, 78, 59, 0.55);
  box-shadow: 0 0 0 3px rgba(2, 44, 34, 0.12);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* CTA band */
.cta-band {
  padding: 80px 0;
  background: #0b1b16;
  color: var(--white);
  text-align: center;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  margin: 12px 0 24px;
}

/* Collaboration */
.collaboration {
  padding: 60px 0;
  background: #ffffff;
  text-align: center;
  border-top: 1px solid rgba(2, 44, 34, 0.08);
}

.collaboration h3 {
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 10px;
}

.collaboration p {
  color: var(--muted);
  font-weight: 600;
}

/* Footer */
footer {
  background: #020617;
  color: #94a3b8;
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand h2 {
  color: white;
  margin-bottom: 14px;
  font-weight: 900;
  letter-spacing: -0.6px;
}

.footer-brand span {
  color: var(--secondary);
}

.footer-top h3 {
  color: white;
  margin-bottom: 20px;
  font-weight: 900;
}

.footer-top a:hover {
  color: var(--secondary);
}

/* Reveal */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0ms);
}

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

.muted {
  color: var(--muted);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 26px;
  }
  .hero-panel {
    margin: 0 auto;
  }
  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .brand-logo {
    font-size: 1.25rem;
    gap: 10px;
  }
  .logo-icon {
    width: 36px;
    height: 36px;
  }
  .btn.header-cta {
    padding: 8px 14px;
    font-size: 0.72rem;
    gap: 6px;
  }
  .btn.header-cta i {
    display: none;
  }
  .header-actions {
    gap: 8px;
  }
  .floating-card {
    display: none;
  }
  .service-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fintax-home .fintax-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 100px 0 100px;
  }
  header#siteHeader nav {
    height: 72px;
  }
  .brand-logo {
    font-size: 1.1rem;
  }
  .btn.header-cta {
    display: none;
  }
  .menu-toggle {
    width: 38px;
    height: 38px;
  }
  .header-actions {
    gap: 6px;
  }
  .hero-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  .contact-form {
    padding: 0;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .service-list-grid {
    grid-template-columns: 1fr;
  }
  .fintax-home .fintax-service-grid {
    grid-template-columns: 1fr;
  }
  .contact-form .cf7-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .service-card,
  .highlight-card,
  .why-card,
  .btn {
    transition: none;
  }
  .hero-anim {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .floating-card {
    animation: none;
  }
}
