* {
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  /* --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857; */
  --emerald-50: #ccf4f5;
--emerald-100: #99e9eb;
--emerald-200: #66dee1;
--emerald-300: #33d2d6;
--emerald-500: #009599; /* Base Color */
--emerald-600: #00777a;
--emerald-700: #00595b;
  --green-50: #edf7d3;
--green-100: #d7eca6;
--green-200: #c1e179;
--green-300: #abcf4d;
--green-500: #81b70b; /* Base Color */
--green-600: #669108;
--green-700: #4b6b06;
  /* --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-500: #22c55e;
  --green-600: #16a34a; */
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-600: #0d9488;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--gray-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button,
input,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

::selection {
  background: rgba(16, 185, 129, 0.3);
  color: var(--gray-900);
}

.container {
  width: min(100% - 2rem, 80rem);
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 50;
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 15px -3px rgba(229, 231, 235, 0.5);
  backdrop-filter: blur(24px);
}

.nav-shell {
  width: min(100% - 2rem, 80rem);
  height: 4rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-text,
.gradient-text {
  background: linear-gradient(90deg, var(--emerald-600), var(--green-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 800;
}
.brand-text img{
  width:60%;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.desktop-nav a:not(.nav-cta) {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: color 200ms ease;
}

.desktop-nav a:hover {
  color: var(--gray-900);
}

.nav-cta,
.mobile-cta,
.button-primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--emerald-600), var(--green-500));
}

.nav-cta {
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 10px 15px -3px rgba(167, 243, 208, 0.9);
  font-size: 0.875rem;
  font-weight: 700;
  transition: filter 300ms ease;
}

.nav-cta:hover,
.button-primary:hover,
.mobile-cta:hover {
  filter: saturate(1.1) brightness(0.96);
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mobile-menu-button {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: var(--gray-600);
  cursor: pointer;
}

.mobile-menu-button span {
  width: 1.35rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 250ms ease, opacity 250ms ease;
}

.nav-toggle:checked + .nav-shell .mobile-menu-button span:nth-child(1) {
  transform: translateY(0.43rem) rotate(45deg);
}

.nav-toggle:checked + .nav-shell .mobile-menu-button span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked + .nav-shell .mobile-menu-button span:nth-child(3) {
  transform: translateY(-0.43rem) rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  backdrop-filter: blur(24px);
}

.nav-toggle:checked ~ .mobile-nav {
  display: block;
}

.mobile-nav a {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
  color: var(--gray-600);
  font-size: 1rem;
  transition: color 200ms ease;
}

.mobile-nav a:hover {
  color: var(--gray-900);
}

.mobile-nav .mobile-cta {
  margin-top: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  color: var(--white);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.section-with-glow {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(100px);
}

.hero {
  min-height: 100vh;
  padding-top: 5rem;
  display: flex;
  align-items: center;
}

.hero-glow-one {
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(167, 243, 208, 0.3);
  filter: blur(128px);
}

.hero-glow-two {
  right: 25%;
  bottom: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(187, 247, 208, 0.2);
  filter: blur(128px);
}

.hero-glow-three {
  top: 50%;
  right: 33%;
  width: 16rem;
  height: 16rem;
  background: rgba(153, 246, 228, 0.15);
  filter: blur(96px);
}

.hero-container {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  text-align: center;
}

.hero h1 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(2.25rem, 9vw, 4.5rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.hero h1 span {
  display: block;
}

.hero-copy p {
  max-width: 36rem;
  margin: 1.5rem auto 0;
  color: var(--gray-600);
  font-size: 1.125rem;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.button {
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 1rem 2rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease, color 300ms ease, background 300ms ease;
}

.button svg {
  width: 1.125rem;
  height: 1.125rem;
  transition: transform 300ms ease;
}

.button:hover svg {
  transform: translateX(0.25rem);
}

.button-primary {
  box-shadow: 0 20px 25px -5px rgba(167, 243, 208, 0.9);
}

.button-primary:hover {
  box-shadow: 0 20px 25px -5px rgba(110, 231, 183, 0.8);
}

.button-secondary {
  border: 1px solid var(--gray-300);
  background: rgba(243, 244, 246, 0.5);
  color: var(--gray-700);
}

.button-secondary:hover {
  border-color: var(--gray-400);
  color: var(--gray-900);
}

.hero-media-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-media-glow {
  position: absolute;
  inset: -1rem;
  border-radius: 1.5rem;
  background: linear-gradient(90deg, rgba(110, 231, 183, 0.4), rgba(134, 239, 172, 0.4));
  filter: blur(2rem);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(167, 243, 208, 0.5);
}

.hero-media img {
  /* width: min(100%, 28rem); */ width: 100%;
  height: auto;
  object-fit: cover;
}

.stats-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1.5rem 0.75rem;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  background: var(--gray-50);
  text-align: center;
  transition: border-color 300ms ease, background 300ms ease;
}

.stat-card:hover {
  border-color: var(--emerald-300);
  background: var(--white);
}

.stat-icon,
.feature-icon,
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  background: var(--emerald-100);
  color: var(--emerald-600);
}

.stat-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.stat-card strong {
  display: block;
  color: var(--gray-900);
  font-size: clamp(1.5rem, 6vw, 2.25rem);
  line-height: 1;
  font-weight: 800;
}

.stat-card span {
  display: block;
  margin-top: 0.25rem;
  color: var(--gray-600);
  font-size: 0.875rem;
}

.integrations-section {
  padding: 5rem 0;
  overflow: hidden;
  background: var(--white);
}

.section-heading {
  margin-bottom: 4rem;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(1.875rem, 6vw, 3rem);
  line-height: 1.13;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.section-heading p {
  max-width: 48rem;
  margin: 1.5rem auto 0;
  color: var(--gray-600);
  font-size: 1.125rem;
  line-height: 1.75;
}

.integrations-heading {
  margin-bottom: 3rem;
}

.integrations-heading h2 {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.integration-card {
  min-height: 10rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  background: var(--white);
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}
.integration-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.integration-card:hover {
  border-color: var(--emerald-300);
  box-shadow: 0 10px 15px -3px rgba(17, 24, 39, 0.1);
  transform: translateY(-0.25rem);
}

.integration-card p {
  margin: 1rem 0 0;
  color: var(--gray-700);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.integration-logo {
  min-height: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.skill-pay-logo span,
.prize-pay-logo span {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.skill-pay-logo span {
  color: var(--gray-900);
}

.prize-pay-logo span {
  color: #f97316;
}

.access-logo span:first-child {
  color: var(--gray-900);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.access-logo span:last-child {
  color: var(--emerald-600);
  font-size: 1.25rem;
  font-weight: 900;
}

.konami-logo {
  border-radius: 0.25rem;
  background: #dc2626;
  color: var(--white);
  padding: 0.375rem 0.75rem;
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.easylinx-logo {
  width: 7rem;
  height: 4rem;
  stroke-width: 0;
}

.integration-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--emerald-600);
  border-radius: 0.75rem;
  background: var(--emerald-50);
  color: var(--emerald-600);
}

.integration-icon-box svg {
  width: 2rem;
  height: 2rem;
  stroke-width: 2.5;
}

.integrations-tagline {
  margin: 2.5rem 0 0;
  color: var(--gray-600);
  font-size: 1rem;
  font-style: italic;
  text-align: center;
}

.services,
.benefits,
.contact {
  padding: 6rem 0;
}

.services-glow-one {
  top: 25%;
  left: 0;
  width: 18rem;
  height: 18rem;
  background: rgba(167, 243, 208, 0.3);
}

.services-glow-two {
  right: 0;
  bottom: 25%;
  width: 18rem;
  height: 18rem;
  background: rgba(187, 247, 208, 0.3);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--emerald-200);
  border-radius: 999px;
  background: var(--emerald-100);
  color: var(--emerald-700);
  font-size: 0.875rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  background: var(--white);
  transition: transform 500ms ease, border-color 500ms ease, box-shadow 500ms ease;
}

.feature-card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 20px 25px -5px rgba(17, 24, 39, 0.1);
  transform: translateY(-0.25rem);
}

.feature-emerald:hover {
  border-color: var(--emerald-300);
}

.feature-green:hover {
  border-color: var(--green-200);
}

.feature-teal:hover {
  border-color: var(--teal-200);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.feature-emerald .feature-icon,
.feature-emerald .contact-icon {
  background: var(--emerald-100);
  color: var(--emerald-600);
}

.feature-green .feature-icon,
.feature-green .contact-icon {
  background: var(--green-100);
  color: var(--green-600);
}

.feature-teal .feature-icon,
.feature-teal .contact-icon {
  background: var(--teal-100);
  color: var(--teal-600);
}

.feature-card h3 {
  margin: 0 0 0.75rem;
  color: var(--gray-900);
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.6;
}

.benefits-glow-one {
  top: 33%;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(167, 243, 208, 0.3);
  filter: blur(128px);
}

.benefits-glow-two {
  bottom: 33%;
  left: 25%;
  width: 20rem;
  height: 20rem;
  background: rgba(187, 247, 208, 0.3);
}

.benefits-grid {
  margin-bottom: 5rem;
}

.operations-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.operations-card-wrap,
.form-wrap {
  position: relative;
}

.operations-glow,
.form-glow {
  position: absolute;
  inset: -1rem;
  border-radius: 1.5rem;
  background: linear-gradient(90deg, rgba(110, 231, 183, 0.4), rgba(134, 239, 172, 0.4));
  filter: blur(2rem);
}

.operations-card {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--emerald-100), var(--green-100));
}

.operations-card h3,
.operations-copy h3,
.contact-card h3 {
  margin: 0 0 1.5rem;
  color: var(--gray-900);
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  line-height: 1.2;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--gray-700);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.05rem;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--emerald-500);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 0.42rem;
  top: 0.25rem;
  width: 0.34rem;
  height: 0.6rem;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

.operations-copy {
  text-align: center;
}

.operations-copy p {
  margin: 0 0 2rem;
  color: var(--gray-600);
  font-size: 1.125rem;
  line-height: 1.75;
}

.contact-glow-one {
  top: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(167, 243, 208, 0.3);
  filter: blur(128px);
}

.contact-glow-two {
  right: 25%;
  bottom: 25%;
  width: 20rem;
  height: 20rem;
  background: rgba(187, 247, 208, 0.3);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

.form-glow {
  background: linear-gradient(90deg, rgba(167, 243, 208, 0.4), rgba(187, 247, 208, 0.4));
  filter: blur(1.25rem);
}

.contact-form {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: 0 20px 25px -5px rgba(17, 24, 39, 0.1);
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gray-700);
  font-size: 0.875rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1.5rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.75rem;
  background: var(--gray-50);
  color: var(--gray-900);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.submit-button {
  width: 100%;
  margin-top: 0.5rem;
}

.contact-card {
  padding: 2rem;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  background: var(--gray-50);
}

.contact-card p {
  margin: 0 0 2rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.contact-list {
  display: grid;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-item span {
  display: block;
  margin-bottom: 0.125rem;
  color: var(--gray-500);
  font-size: 0.875rem;
}

.contact-item strong {
  display: block;
  color: var(--gray-900);
  font-weight: 500;
}

.footer {
  border-top: 1px solid var(--gray-200);
  background: var(--white);
  padding: 3rem 0 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--emerald-600), var(--green-500));
  color: var(--white);
}

.footer-logo-icon svg {
  width: 1rem;
  height: 1rem;
}

.footer-brand p,
.footer a,
.footer-bottom p {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-brand p {
  max-width: 18rem;
  margin: 0;
}

.footer h4 {
  margin: 0 0 1rem;
  color: var(--gray-900);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer a {
  transition: color 200ms ease;
}

.footer a:hover {
  color: var(--gray-900);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--gray-500);
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.legal-links a {
  color: var(--gray-500);
}

@media (min-width: 640px) {
  .container,
  .nav-shell {
    width: min(100% - 3rem, 80rem);
  }

  .hero-actions {
    flex-direction: row;
  }

  .stats-grid {
    gap: 1.5rem;
  }

  .integrations-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-menu-button,
  .mobile-nav {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .container,
  .nav-shell {
    width: min(100% - 4rem, 80rem);
  }

  .nav-shell {
    height: 5rem;
  }

  .brand-text {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .brand-text img{
    width:80%;
  }

  .hero-container {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-copy p {
    margin-left: 0;
    margin-right: 0;
    font-size: 1.25rem;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-media-wrap {
    justify-content: flex-end;
  }

  .stats-grid {
    margin-top: 5rem;
    gap: 3rem;
  }

  .integrations-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .services,
  .benefits,
  .contact {
    padding: 8rem 0;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .operations-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }

  .operations-card,
  .contact-form {
    padding: 2.5rem;
  }

  .operations-copy {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3rem;
  }

  .footer-brand {
    grid-column: span 1;
  }
}

@media (min-width: 1280px) {
  .integrations-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .stats-grid {
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1rem 0.5rem;
  }

  .stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .stat-card strong {
    font-size: 1.4rem;
  }

  .stat-card span {
    font-size: 0.75rem;
  }
}