@import "https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap";
/* [project]/app/globals.css [app-client] (css) */
:root {
  --background: #f9fafb;
  --foreground: #111827;
  --primary-gradient-start: #ff7e21;
  --primary-gradient-end: #ffb74d;
  --card-background: #fff;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --border-color: #e5e7eb;
  --radius: 12px;
  --shadow-sm: 0 1px 2px 0 #0000000d;
  --shadow-md: 0 4px 6px -1px #0000001a, 0 2px 4px -1px #0000000f;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: var(--text-primary);
  background: var(--background);
  flex-direction: column;
  min-height: 100vh;
  font-family: Outfit, sans-serif;
  display: flex;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 9999px;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: opacity .2s;
  display: inline-flex;
  box-shadow: 0 4px 6px -1px #ff7e214d;
}

.btn-primary:hover {
  opacity: .9;
}

.btn-secondary {
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  cursor: pointer;
  background: #fff;
  border-radius: 9999px;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
}

.btn-secondary:hover {
  background: var(--background);
  border-color: var(--text-secondary);
}

.card {
  background: var(--card-background);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}

/* [project]/components/Header.module.css [app-client] (css) */
.Header-module__Af2_WG__header {
  z-index: 50;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  background: #fffc;
  padding: 1rem 0;
  position: sticky;
  top: 0;
}

.Header-module__Af2_WG__headerContent {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.Header-module__Af2_WG__logo {
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  display: flex;
}

.Header-module__Af2_WG__logoIcon {
  background: #ff7e211a;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.Header-module__Af2_WG__logoText {
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-size: 1.5rem;
  font-weight: 700;
}

.Header-module__Af2_WG__nav {
  align-items: center;
  gap: 2rem;
  display: flex;
}

.Header-module__Af2_WG__navLink {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color .2s;
}

.Header-module__Af2_WG__navLink:hover {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .Header-module__Af2_WG__navLink, .Header-module__Af2_WG__desktopOnly {
    display: none;
  }
}

/* [project]/components/Footer.module.css [app-client] (css) */
.Footer-module__EZoWya__footer {
  margin-top: auto;
  padding: 4rem 0 2rem;
}

.Footer-module__EZoWya__ctaSection {
  text-align: center;
  background: linear-gradient(#fff8f3 0%, #fff 100%);
  border-radius: 24px;
  margin-bottom: 4rem;
  padding: 4rem 1rem;
}

.Footer-module__EZoWya__ctaSection h2 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.Footer-module__EZoWya__ctaSection p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.Footer-module__EZoWya__bottomBar {
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: .9rem;
  display: flex;
}

.Footer-module__EZoWya__links {
  gap: 2rem;
  display: flex;
}

@media (max-width: 768px) {
  .Footer-module__EZoWya__bottomBar {
    text-align: center;
    flex-direction: column;
    gap: 1rem;
  }
}

/*# sourceMappingURL=_2a7eab40._.css.map*/