@font-face {
  font-family: 'AA Stetica';
  src: url('fonts/AA Stetica Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AA Stetica';
  src: url('fonts/AA Stetica Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'AA Stetica';
  src: url('fonts/AA Stetica Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'AA Stetica';
  src: url('fonts/AA Stetica Black_0.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'AA Stetica';
  src: url('fonts/AA Stetica Italic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'AA Stetica';
  src: url('fonts/AA Stetica Bold Italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}

/* Custom styles for the close icon */
.mobile-menu-open .menu-icon {
  display: none;
}
.mobile-menu-open .close-icon {
  display: block;
}
.close-icon {
  display: none;
}

/* Notion-like styles with blue theme */
:root {
  --primary-blue: #189cdf;
  --primary-blue-dark: #1584bf;
  --primary-blue-light: #e6f4fa;
  --text-primary: #2c3e50;
  --text-secondary: #4a5568;
  --bg-light: #f8fafc;
}

body {
  font-family: 'AA Stetica', sans-serif;
  background-color: #ffffff;
  color: var(--text-primary);
}

.notion-card {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.notion-card:hover {
  box-shadow: rgba(24, 156, 223, 0.1) 0px 0px 0px 1px,
    rgba(24, 156, 223, 0.1) 0px 2px 4px;
}

.notion-button {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-align: center;
  color: #189cdf;
  cursor: pointer;
}

.notion-button:hover {
  background: #f7f7f7;
}

.notion-button-primary {
  background: #189cdf;
  color: #ffffff;
  border: none;
}

.notion-button-primary:hover {
  background: #1584bf;
}

.notion-heading {
  font-family: 'AA Stetica', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.notion-text {
  font-family: 'AA Stetica', sans-serif;
  font-weight: normal;
  color: var(--text-secondary);
  line-height: 1.5;
}

.notion-nav {
  border-bottom: 1px solid #e9e9e9;
  background: #ffffff;
}

.notion-nav-link {
  font-family: 'AA Stetica', sans-serif;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.notion-nav-link:hover {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
}

.notion-section {
  padding: 48px 0;
}

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

.notion-grid {
  display: grid;
  gap: 24px;
}

.notion-feature-icon {
  background: var(--primary-blue-light);
  border-radius: 8px;
  padding: 16px;
  color: var(--primary-blue);
}

.notion-input {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  font-size: 16px;
  transition: all 0.2s ease;
}

.notion-input:focus {
  border-color: var(--primary-blue);
  outline: none;
  box-shadow: 0 0 0 2px rgba(24, 156, 223, 0.1);
}

.notion-input.error {
  border-color: #ef4444;
}

.notion-input.error:focus {
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
}

.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.notion-textarea {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  min-height: 120px;
  font-size: 16px;
  transition: all 0.2s ease;
}

.notion-textarea:focus {
  border-color: var(--primary-blue);
  outline: none;
  box-shadow: 0 0 0 2px rgba(24, 156, 223, 0.1);
}

.notion-badge {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.notion-section-alt {
  background: var(--primary-blue-light);
}

.notion-card-alt {
  background: var(--primary-blue);
  color: white;
}

.notion-card-alt .notion-heading,
.notion-card-alt .notion-text {
  color: white;
}

/* Section specific padding adjustments */
.notion-section.hero {
  padding: 32px 0;
}

.notion-section.features {
  padding: 48px 0;
}

.notion-section.stats {
  padding: 48px 0;
}

.notion-section.integrations {
  padding: 48px 0;
}

.notion-section.cta {
  padding: 48px 0;
}

.notion-section.faq {
  padding: 48px 0;
}

.notion-section.contact {
  padding: 48px 0;
}

.notion-section.footer {
  padding: 48px 0;
}

html {
  scroll-behavior: smooth;
}

/* Add animation styles */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.clients-container {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.clients-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.clients-track:hover {
  animation-play-state: paused;
}

.clients-track img {
  height: 50px;
  margin: 0 2rem;
  object-fit: contain;
}

/* Enhanced styles */
.notion-section {
  position: relative;
  overflow: hidden;
}

.notion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
  opacity: 0.1;
}

.notion-card {
  position: relative;
  overflow: hidden;
}

.notion-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(24, 156, 223, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.notion-card:hover::after {
  opacity: 1;
}

.notion-feature-icon {
  position: relative;
  background: linear-gradient(135deg, var(--primary-blue), #055ece);
  color: white;
  border-radius: 12px;
  padding: 16px;
  transition: transform 0.3s ease;
}

.notion-feature-icon:hover {
  transform: translateY(-2px);
}

.notion-button {
  position: relative;
  overflow: hidden;
}

.notion-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.notion-button:hover::after {
  opacity: 1;
}

.notion-button-primary {
  background: linear-gradient(135deg, var(--primary-blue), #055ece);
}

.notion-button-primary:hover {
  background: linear-gradient(135deg, #1584bf, #055ece);
}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), #055ece);
  border-radius: 3px;
}

.hero-gradient {
  background: linear-gradient(135deg, rgba(24, 156, 223, 0.1), transparent);
  border-radius: 24px;
  padding: 2rem;
}

.pricing-card {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 2px solid var(--primary-blue);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), #055ece);
}

.contact-card {
  background: linear-gradient(135deg, var(--primary-blue), #055ece);
  color: white;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover::after {
  opacity: 1;
}

.footer-gradient {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

/* Additional enhanced styles */
.cta-gradient {
  background: linear-gradient(135deg, rgba(24, 156, 223, 0.05), rgba(44, 82, 130, 0.05));
  border-radius: 24px;
  padding: 1.5rem; /* Default padding for mobile and tablet */
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) { /* md breakpoint */
  .cta-gradient {
    padding: 3rem; /* Padding for desktop */
  }
  .contact-gradient {
    padding: 3rem;
  }
}

.cta-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(24, 156, 223, 0.1), transparent 70%);
  pointer-events: none;
}

.cta-block {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.cta-block:hover {
  transform: translateY(-5px);
}

.cta-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(24, 156, 223, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-block:hover::after {
  opacity: 1;
}

.cta-icon {
  background: linear-gradient(135deg, var(--primary-blue), #055ece);
  color: white;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 1rem;
  display: inline-flex;
  transition: transform 0.3s ease;
}

.cta-block:hover .cta-icon {
  transform: scale(1.1);
}

.clients-section {
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(24, 156, 223, 0.05), transparent);
  pointer-events: none;
}

.clients-track img {
  transition: transform 0.3s ease;
}

.clients-track img:hover {
  transform: scale(1.1);
}

.form-input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-input-group label {
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  background: white;
  padding: 0 0.5rem;
  color: var(--primary-blue);
  font-size: 0.875rem;
  font-weight: 500;
}

.form-input-group input,
.form-input-group textarea {
  border: 2px solid #e9e9e9;
  border-radius: 12px;
  padding: 1rem;
  width: 100%;
  transition: all 0.3s ease;
}

.form-input-group input:focus,
.form-input-group textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(24, 156, 223, 0.1);
}

.submit-button {
  position: relative;
  overflow: hidden;
}

.submit-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.submit-button:hover::after {
  opacity: 1;
}

/* Enhanced contact and footer styles */
.contact-gradient {
  background: linear-gradient(135deg, rgba(24, 156, 223, 0.05), rgba(24, 156, 223, 0.02));
  border-radius: 24px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.contact-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(24, 156, 223, 0.1), transparent 70%);
  pointer-events: none;
}

.contact-info-card {
  background: linear-gradient(135deg, #189cdf, #055ece);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
}

.contact-info-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-info-card:hover::after {
  opacity: 1;
}

.contact-icon-wrapper {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  display: inline-flex;
  transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
  transform: scale(1.1);
}

.footer-gradient {
  background: linear-gradient(135deg, rgba(24, 156, 223, 0.05), rgba(24, 156, 223, 0.02));
  position: relative;
  overflow: hidden;
}

.footer-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24, 156, 223, 0.2), transparent);
}

.footer-link {
  position: relative;
  transition: color 0.3s ease;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #189cdf, #055ece);
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-icon {
  background: linear-gradient(135deg, rgba(24, 156, 223, 0.1), rgba(24, 156, 223, 0.05));
  border-radius: 8px;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.footer-icon:hover {
  transform: translateY(-2px);
}

.social-icon {
  background: linear-gradient(135deg, #189cdf, #055ece);
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
}

/* Add new form container styles */
.contact-form-container {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  padding: 1.3rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-form-container:hover {
  box-shadow: rgba(24, 156, 223, 0.1) 0px 0px 0px 1px,
    rgba(24, 156, 223, 0.1) 0px 2px 4px;
}

/* Add new styles for loading and modal */
.submit-button.loading {
  position: relative;
  color: transparent;
}

.submit-button.loading .button-text {
  visibility: hidden;
}

.submit-button.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23189cdf' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='2' x2='12' y2='6'%3E%3C/line%3E%3Cline x1='12' y1='18' x2='12' y2='22'%3E%3C/line%3E%3Cline x1='4.93' y1='4.93' x2='7.76' y2='7.76'%3E%3C/line%3E%3Cline x1='16.24' y1='16.24' x2='19.07' y2='19.07'%3E%3C/line%3E%3Cline x1='2' y1='12' x2='6' y2='12'%3E%3C/line%3E%3Cline x1='18' y1='12' x2='22' y2='12'%3E%3C/line%3E%3Cline x1='4.93' y1='19.07' x2='7.76' y2='16.24'%3E%3C/line%3E%3Cline x1='16.24' y1='7.76' x2='19.07' y2='4.93'%3E%3C/line%3E%3C/svg%3E");
  animation: button-loading-spinner 1s linear infinite;
}

@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modal-slide-in 0.3s ease-out;
}

@keyframes modal-slide-in {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--primary-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 0.5rem;
}

.modal-close:hover {
  color: var(--text-primary);
}

/* FAQ styles */
.faq-item {
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 8px rgba(24, 156, 223, 0.1);
  transform: translateY(-2px);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-button {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.faq-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--primary-blue);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.active .faq-button::before {
  opacity: 1;
}

.faq-button:hover {
  background: var(--primary-blue-light);
}

.faq-button:focus {
  outline: none;
}

.faq-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  color: var(--primary-blue);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  padding: 0 1.5rem;
  background: var(--primary-blue-light);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 1.5rem;
}

.faq-item.active .faq-button {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-question-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.faq-section-title {
  background: linear-gradient(135deg, var(--primary-blue), #2c5282);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
}

.partnership-item {
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.partnership-item:hover {
  box-shadow: 0 4px 8px rgba(24, 156, 223, 0.1);
  transform: translateY(-2px);
}

.partnership-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.partnership-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.partnership-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.partnership-list {
  list-style: none;
  padding: 0;
}

.partnership-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.partnership-list li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--primary-blue);
  margin-right: 0.75rem;
  margin-top: 4px;
}

/* Mobile menu display */
#mobile-menu {
  display: none;
}

body.mobile-menu-open #mobile-menu {
  display: block;
}

/* Footer styles */
.footer {
  background: linear-gradient(to bottom, #ffffff, var(--bg-light));
}

.footer-link {
  transition: color 0.2s ease;
}

.social-icon {
  transition: color 0.2s ease;
}

.social-icon:hover {
  color: var(--primary-blue);
} 