/**
 * Integrations Archive Page Styles
 * Loaded only on the integrations archive page
 */

@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
    'Noto Color Emoji';
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
    monospace;
    --color-blue-200: oklch(88.2% 0.059 254.128);
    --color-blue-600: oklch(54.6% 0.245 262.881);
    --color-gray-200: oklch(92.8% 0.006 264.531);
    --color-gray-300: oklch(87.2% 0.01 258.338);
    --color-gray-400: oklch(70.7% 0.022 261.325);
    --color-gray-500: oklch(55.1% 0.027 264.364);
    --color-gray-600: oklch(44.6% 0.03 256.802);
    --color-gray-700: oklch(37.3% 0.034 259.733);
    --color-gray-800: oklch(27.8% 0.033 256.848);
    --color-white: #fff;
    --spacing: 0.25rem;
    --container-2xs: 18rem;
    --text-xs: 0.75rem;
    --text-xs--line-height: calc(1 / 0.75);
    --text-sm: 0.875rem;
    --text-sm--line-height: calc(1.25 / 0.875);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --radius-sm: 0.25rem;
    --radius-lg: 0.5rem;
    --animate-spin: spin 1s linear infinite;
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji');
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type='button'], [type='reset'], [type='submit']), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden='until-found'])) {
    display: none !important;
  }
}
@layer utilities {
  .relative {
    position: relative;
  }
  .col-span-full {
    grid-column: 1 / -1;
  }
  .mx-auto {
    margin-inline: auto;
  }
  .my-6 {
    margin-block: calc(var(--spacing) * 6);
  }
  .\!mt-0 {
    margin-top: calc(var(--spacing) * 0) !important;
  }
  .mt-3 {
    margin-top: calc(var(--spacing) * 3);
  }
  .mt-6 {
    margin-top: calc(var(--spacing) * 6);
  }
  .mr-0 {
    margin-right: calc(var(--spacing) * 0);
  }
  .\!mb-0 {
    margin-bottom: calc(var(--spacing) * 0) !important;
  }
  .\!mb-3 {
    margin-bottom: calc(var(--spacing) * 3) !important;
  }
  .\!mb-4 {
    margin-bottom: calc(var(--spacing) * 4) !important;
  }
  .mb-1 {
    margin-bottom: calc(var(--spacing) * 1);
  }
  .mb-2 {
    margin-bottom: calc(var(--spacing) * 2);
  }
  .mb-3 {
    margin-bottom: calc(var(--spacing) * 3);
  }
  .mb-4 {
    margin-bottom: calc(var(--spacing) * 4);
  }
  .mb-6 {
    margin-bottom: calc(var(--spacing) * 6);
  }
  .\!ml-0 {
    margin-left: calc(var(--spacing) * 0) !important;
  }
  .ml-2 {
    margin-left: calc(var(--spacing) * 2);
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .hidden {
    display: none;
  }
  .inline-flex {
    display: inline-flex;
  }
  .h-5 {
    height: calc(var(--spacing) * 5);
  }
  .h-full {
    height: 100%;
  }
  .\!w-full {
    width: 100% !important;
  }
  .w-5 {
    width: calc(var(--spacing) * 5);
  }
  .w-full {
    width: 100%;
  }
  .max-w-\[48px\] {
    max-width: 48px;
  }
  .min-w-2xs {
    min-width: var(--container-2xs);
  }
  .rotate-0 {
    rotate: 0deg;
  }
  .transform {
    transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
  }
  .animate-spin {
    animation: var(--animate-spin);
  }
  .cursor-pointer {
    cursor: pointer;
  }
  .list-none {
    list-style-type: none;
  }
  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .flex-col {
    flex-direction: column;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .items-center {
    align-items: center;
  }
  .justify-between {
    justify-content: space-between;
  }
  .justify-center {
    justify-content: center;
  }
  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }
  .gap-3 {
    gap: calc(var(--spacing) * 3);
  }
  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }
  .gap-10 {
    gap: calc(var(--spacing) * 10);
  }
  .space-y-2 {
    :where(& > :not(:last-child)) {
      --tw-space-y-reverse: 0;
      margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
      margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  .space-x-2 {
    :where(& > :not(:last-child)) {
      --tw-space-x-reverse: 0;
      margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
      margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
    }
  }
  .\!rounded {
    border-radius: 0.25rem !important;
  }
  .rounded {
    border-radius: 0.25rem;
  }
  .rounded-lg {
    border-radius: var(--radius-lg);
  }
  .rounded-sm {
    border-radius: var(--radius-sm);
  }
  .\!border {
    border-style: var(--tw-border-style) !important;
    border-width: 1px !important;
  }
  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .border-2 {
    border-style: var(--tw-border-style);
    border-width: 2px;
  }
  .border-l-2 {
    border-left-style: var(--tw-border-style);
    border-left-width: 2px;
  }
  .\!border-gray-300 {
    border-color: var(--color-gray-300) !important;
  }
  .border-blue-200 {
    border-color: var(--color-blue-200);
  }
  .border-blue-600 {
    border-color: var(--color-blue-600);
  }
  .border-gray-200 {
    border-color: var(--color-gray-200);
  }
  .\!bg-gray-200 {
    background-color: var(--color-gray-200) !important;
  }
  .\!bg-white {
    background-color: var(--color-white) !important;
  }
  .bg-white {
    background-color: var(--color-white);
  }
  .\!p-1 {
    padding: calc(var(--spacing) * 1) !important;
  }
  .p-1 {
    padding: calc(var(--spacing) * 1);
  }
  .p-3 {
    padding: calc(var(--spacing) * 3);
  }
  .p-4 {
    padding: calc(var(--spacing) * 4);
  }
  .p-8 {
    padding: calc(var(--spacing) * 8);
  }
  .\!px-2 {
    padding-inline: calc(var(--spacing) * 2) !important;
  }
  .px-0 {
    padding-inline: calc(var(--spacing) * 0);
  }
  .px-2 {
    padding-inline: calc(var(--spacing) * 2);
  }
  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }
  .px-6 {
    padding-inline: calc(var(--spacing) * 6);
  }
  .\!py-1 {
    padding-block: calc(var(--spacing) * 1) !important;
  }
  .\!py-2 {
    padding-block: calc(var(--spacing) * 2) !important;
  }
  .py-1 {
    padding-block: calc(var(--spacing) * 1);
  }
  .py-2 {
    padding-block: calc(var(--spacing) * 2);
  }
  .py-3 {
    padding-block: calc(var(--spacing) * 3);
  }
  .py-4 {
    padding-block: calc(var(--spacing) * 4);
  }
  .pt-2 {
    padding-top: calc(var(--spacing) * 2);
  }
  .pl-1 {
    padding-left: calc(var(--spacing) * 1);
  }
  .pl-4 {
    padding-left: calc(var(--spacing) * 4);
  }
  .text-center {
    text-align: center;
  }
  .text-left {
    text-align: left;
  }
  .\!text-sm {
    font-size: var(--text-sm) !important;
    line-height: var(--tw-leading, var(--text-sm--line-height)) !important;
  }
  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }
  .text-xl {
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
  }
  .text-xs {
    font-size: var(--text-xs);
    line-height: var(--tw-leading, var(--text-xs--line-height));
  }
  .\!text-\[24px\] {
    font-size: 24px !important;
  }
  .text-\[16px\] {
    font-size: 16px;
  }
  .\!font-semibold {
    --tw-font-weight: var(--font-weight-semibold) !important;
    font-weight: var(--font-weight-semibold) !important;
  }
  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }
  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
  }
  .\!text-gray-400 {
    color: var(--color-gray-400) !important;
  }
  .\!text-gray-800 {
    color: var(--color-gray-800) !important;
  }
  .text-blue-600 {
    color: var(--color-blue-600);
  }
  .text-gray-500 {
    color: var(--color-gray-500);
  }
  .text-gray-600 {
    color: var(--color-gray-600);
  }
  .text-gray-700 {
    color: var(--color-gray-700);
  }
  .text-gray-800 {
    color: var(--color-gray-800);
  }
  .text-white {
    color: var(--color-white);
  }
  .transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .transition-transform {
    transition-property: transform, translate, scale, rotate;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .duration-200 {
    --tw-duration: 200ms;
    transition-duration: 200ms;
  }
  .last\:border-0 {
    &:last-child {
      border-style: var(--tw-border-style);
      border-width: 0px;
    }
  }
  .hover\:bg-blue-600 {
    &:hover {
      @media (hover: hover) {
        background-color: var(--color-blue-600);
      }
    }
  }
  .hover\:text-blue-600 {
    &:hover {
      @media (hover: hover) {
        color: var(--color-blue-600);
      }
    }
  }
  .hover\:text-white {
    &:hover {
      @media (hover: hover) {
        color: var(--color-white);
      }
    }
  }
  .sm\:grid-cols-3 {
    @media (width >= 40rem) {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  .md\:grid-cols-4 {
    @media (width >= 48rem) {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  .lg\:hidden {
    @media (width >= 64rem) {
      display: none;
    }
  }
  .lg\:w-1\/4 {
    @media (width >= 64rem) {
      width: calc(1/4 * 100%);
    }
  }
  .lg\:grid-cols-4 {
    @media (width >= 64rem) {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  .lg\:flex-row {
    @media (width >= 64rem) {
      flex-direction: row;
    }
  }
  .lg\:space-x-4 {
    @media (width >= 64rem) {
      :where(& > :not(:last-child)) {
        --tw-space-x-reverse: 0;
        margin-inline-start: calc(calc(var(--spacing) * 4) * var(--tw-space-x-reverse));
        margin-inline-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-x-reverse)));
      }
    }
  }
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}
@property --tw-space-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-space-x-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-font-weight {
  syntax: "*";
  inherits: false;
}
@property --tw-duration {
  syntax: "*";
  inherits: false;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-space-y-reverse: 0;
      --tw-space-x-reverse: 0;
      --tw-border-style: solid;
      --tw-font-weight: initial;
      --tw-duration: initial;
    }
  }
}


/* Hero Section Styles */
.fm-hero-section {
	position: relative;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e0e7ff 100%);
	overflow: hidden;
	padding: 80px 20px 50px;
}

.fm-hero-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.fm-hero-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

/* Badge Styling */
.fm-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: white;
	padding: 8px 20px;
	border-radius: 50px;
	box-shadow: 0 2px 10px rgba(13, 110, 253, 0.1);
	margin-bottom: 24px;
	font-size: 14px;
	font-weight: 600;
	color: #0d6efd;
	border: 1px solid rgba(13, 110, 253, 0.2);
}

/* Hero Title */
.fm-hero-title {
	font-size: 64px !important;
	font-weight: 700;
	line-height: 1.1;
	color: #1e293b;
	margin: 0 0 24px 0;
	letter-spacing: -0.02em;
}

.fm-hero-gradient-text {
	/* Fallback solid color for all browsers (loads first) */
	color: #0d6efd;
}

/* Modern browsers with gradient text support */
.fm-hero-gradient-text {
	/* Gradient background */
	background: linear-gradient(135deg, #0d6efd 0%, #8b5cf6 50%, #ec4899 100%);
	/* Webkit/Blink browsers (Chrome, Safari, Edge, Opera) */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	/* Standard syntax (Firefox 120+) */
	background-clip: text;
	text-fill-color: transparent;
}

/* Specific fallback for browsers that parse but don't support background-clip */
@supports (background-clip: text) or (-webkit-background-clip: text) {
	.fm-hero-gradient-text {
		color: transparent;
	}
}

/* Hero Description */
.fm-hero-description {
	font-size: 20px;
	line-height: 1.6;
	color: #64748b;
	margin: 0 0 40px 0;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

/* CTA Buttons */
.fm-hero-cta {
	display: flex;
	gap: 16px;
	justify-content: center;
	align-items: center;
	margin-bottom: 60px;
	flex-wrap: wrap;
}

.fm-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
	color: white;
	padding: 16px 32px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(13, 110, 253, 0.4);
	/* Prevent animation on page load */
	transform: translateY(0);
	will-change: transform;
}

.fm-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(13, 110, 253, 0.5);
	color: white;
	transition: all 0.3s ease;
}

.fm-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: white;
	color: #0d6efd;
	padding: 16px 32px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid #e2e8f0;
	/* Prevent animation on page load */
	transform: translateY(0);
	will-change: transform;
}

.fm-btn-secondary:hover {
	border-color: #0d6efd;
	background: #f8fafc;
	color: #0d6efd;
	transition: all 0.3s ease;
}

#browser-integrations {
	padding-top: 40px;
}

/* Decorative Elements */
.fm-hero-decoration {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.fm-circle-1,
.fm-circle-2,
.fm-circle-3 {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0) 70%);
	animation: float 20s infinite ease-in-out;
}

.fm-circle-1 {
	width: 400px;
	height: 400px;
	top: -200px;
	right: -100px;
	animation-delay: 0s;
}

.fm-circle-2 {
	width: 300px;
	height: 300px;
	bottom: -150px;
	left: -100px;
	animation-delay: 7s;
}

.fm-circle-3 {
	width: 250px;
	height: 250px;
	top: 50%;
	left: 10%;
	animation-delay: 14s;
}

@keyframes float {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(30px, -30px) scale(1.1);
	}
	66% {
		transform: translate(-20px, 20px) scale(0.9);
	}
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
	.fm-hero-section {
		padding: 60px 20px 80px;
	}

	.fm-hero-title {
		font-size: 40px !important;
	}

	.fm-hero-description {
		font-size: 18px;
	}

	.fm-hero-cta {
		flex-direction: column;
		width: 100%;
	}

	.fm-btn-primary,
	.fm-btn-secondary {
		width: 100%;
		justify-content: center;
	}

	.fm-hero-stats {
		flex-direction: column;
		gap: 24px;
		padding: 24px;
	}

	.fm-stat-divider {
		width: 60px;
		height: 1px;
	}

	.fm-circle-1,
	.fm-circle-2,
	.fm-circle-3 {
		width: 200px;
		height: 200px;
	}
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
	.fm-hero-title {
		font-size: 52px !important;
	}

	.fm-hero-description {
		font-size: 19px;
	}
}

/* Load More Button Styles */
.fm-load-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: #0d6efd;
	padding: 10px 28px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid #0d6efd;
	cursor: pointer;
	box-shadow: none;
	transition: all 0.3s ease;
	transform: translateY(0);
}

.fm-load-more-btn:hover {
	background: #0d6efd;
	color: white;
	border-color: #0d6efd;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.fm-load-more-btn:active {
	background: #0b5ed7;
	border-color: #0b5ed7;
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(13, 110, 253, 0.2);
}

@media screen and (max-width: 768px) {
	.fm-load-more-btn {
		width: 100%;
		justify-content: center;
		padding: 12px 24px;
		font-size: 14px;
	}
}

/* Footer CTA Section Styles */
.fm-footer-cta-section {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e0e7ff 100%);
	padding: 80px 20px;
	margin-top: 80px;
	position: relative;
	overflow: hidden;
	margin-bottom: -20px;
}

.fm-footer-cta-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

/* Left Text Content */
.fm-footer-cta-text {
	padding-right: 20px;
}

.fm-footer-cta-title {
	font-size: 42px;
	font-weight: 700;
	color: #1e293b;
	line-height: 1.2;
	margin: 0 0 20px 0;
	letter-spacing: -0.02em;
}

.fm-footer-cta-description {
	font-size: 18px;
	color: #64748b;
	line-height: 1.6;
	margin: 0 0 32px 0;
}

/* Features List */
.fm-footer-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.fm-footer-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #1e293b;
	font-size: 15px;
	font-weight: 500;
}

.fm-footer-feature svg {
	color: #10b981;
	flex-shrink: 0;
}

/* Right CTA Card */
.fm-footer-cta-action {
	display: flex;
	justify-content: center;
}

.fm-footer-cta-card {
	background: white;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	max-width: 480px;
	width: 100%;
	position: relative;
}

.fm-footer-cta-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	color: #92400e;
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 20px;
}

.fm-footer-cta-badge svg {
	color: #f59e0b;
}

.fm-footer-cta-card-title {
	font-size: 28px;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 12px 0;
	line-height: 1.3;
}

.fm-footer-cta-card-description {
	font-size: 16px;
	color: #64748b;
	line-height: 1.6;
	margin: 0 0 28px 0;
}

/* CTA Buttons */
.fm-footer-cta-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
}

.fm-footer-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
	color: white;
	padding: 16px 28px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(13, 110, 253, 0.4);
	transition: all 0.3s ease;
	transform: translateY(0);
}

.fm-footer-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(13, 110, 253, 0.5);
	color: white;
}

.fm-footer-btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: transparent;
	color: #0d6efd;
	padding: 14px 28px;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid #e2e8f0;
	transition: all 0.3s ease;
}

.fm-footer-btn-secondary:hover {
	border-color: #0d6efd;
	background: #f8fafc;
	color: #0d6efd;
}

/* Trust Badges */
.fm-footer-trust {
	display: flex;
	gap: 20px;
	padding-top: 24px;
	border-top: 1px solid #e2e8f0;
}

.fm-trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #64748b;
	font-weight: 500;
}

.fm-trust-item svg {
	color: #f59e0b;
	flex-shrink: 0;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
	.fm-footer-cta-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.fm-footer-cta-text {
		padding-right: 0;
		text-align: center;
	}

	.fm-footer-features {
		justify-content: center;
	}

	.fm-footer-cta-title {
		font-size: 36px;
	}
}

@media screen and (max-width: 768px) {
	.fm-footer-cta-section {
		padding: 60px 20px;
		margin-top: 60px;
	}

	.fm-footer-cta-title {
		font-size: 32px;
	}

	.fm-footer-cta-description {
		font-size: 16px;
	}

	.fm-footer-features {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.fm-footer-cta-card {
		padding: 32px 24px;
	}

	.fm-footer-cta-card-title {
		font-size: 24px;
	}

	.fm-footer-trust {
		flex-direction: column;
		gap: 12px;
	}

	.fm-footer-btn-primary,
	.fm-footer-btn-secondary {
		width: 100%;
	}
}

/* Search Field Styles */
.flowmattic-integrations-search {
	position: relative !important;
	margin-bottom: 20px !important;
}

.integrations-search-input {
	width: 100% !important;
	padding: 10px 40px 10px 16px !important;
	border: 1px solid #d2d2d2 !important;
	border-radius: 6px !important;
	font-size: 15px !important;
	transition: all 0.3s ease !important;
	outline: none !important;
}

.integrations-search-input:focus,
.integrations-search-input:active {
	border-color: #0d6efd !important;
	box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1) !important;
}

.integrations-search-input::placeholder {
	color: #9ca3af !important;
}

.integration-search-icon {
	position: absolute !important;
	right: 14px !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	pointer-events: none !important;
	color: #9ca3af !important;
	transition: color 0.3s ease !important;
}

.flowmattic-integrations-search:focus-within .integration-search-icon {
	color: #0d6efd !important;
}
