/* ============================================
   PHILIPP KRISPER – Midnight Prism Design
   PHP/HTML/CSS/JS Version
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #0B0F1A;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', system-ui, sans-serif;
  line-height: 1.1;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* === UTILITIES === */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; max-width: 1280px; }
}

.section-padding {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .section-padding { padding: 8rem 0; }
}

.gradient-text {
  background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 50%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card-hover:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-gradient {
  background: linear-gradient(135deg, #3B82F6, #8B5CF6);
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-gradient:hover {
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Scroll animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0B0F1A; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.25); }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(11, 15, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.navbar-logo .accent {
  background: linear-gradient(135deg, #3B82F6, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-logo .dot {
  color: rgba(255, 255, 255, 0.4);
}

.nav-links {
  display: none;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

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

.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
  border-radius: 0.5rem;
}

.nav-links a:hover {
  color: white;
}

.nav-cta {
  padding: 0.625rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
}

.mobile-toggle {
  display: flex;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: rgba(11, 15, 26, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 5rem 2rem 2rem;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  visibility: hidden;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu a:hover {
  color: white;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 26, 0.6);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: pulse 4s ease-in-out infinite;
}

.hero-orb-1 {
  top: 25%;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(59, 130, 246, 0.1);
}

.hero-orb-2 {
  bottom: 25%;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(139, 92, 246, 0.1);
  animation-delay: 2s;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 6rem 0 4rem;
}

@media (min-width: 768px) {
  .hero-content { padding: 8rem 0 6rem; }
}

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

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.hero-badge .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #34D399;
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero h1 { font-size: 4.5rem; } }

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 36rem;
}

@media (min-width: 768px) {
  .hero-description { font-size: 1.25rem; }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.hero-buttons a {
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  text-align: center;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-stats .stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

@media (min-width: 768px) {
  .hero-stats .stat-number { font-size: 1.875rem; }
}

.hero-stats .stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.25rem;
}

.hero-photo {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-photo { justify-content: flex-end; }
}

.photo-wrapper {
  position: relative;
}

.photo-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(139,92,246,0.2));
  border-radius: 1rem;
  filter: blur(30px);
}

.photo-container {
  position: relative;
  width: 18rem;
  aspect-ratio: 3/4;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) { .photo-container { width: 20rem; } }
@media (min-width: 1024px) { .photo-container { width: 24rem; } }

.photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 33%;
  background: linear-gradient(to top, #0B0F1A, transparent);
}

.price-badge {
  position: absolute;
  right: -1rem;
  bottom: 4rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

@media (min-width: 640px) {
  .price-badge { right: -2rem; }
}

.price-badge .label { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.price-badge .price { font-family: 'Sora', sans-serif; font-size: 1.25rem; font-weight: 700; color: white; }
.price-badge .unit { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s;
}

.scroll-indicator:hover { color: rgba(255, 255, 255, 0.5); }
.scroll-indicator span { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }

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

.scroll-indicator svg { animation: bounce 2s ease-in-out infinite; }

/* === SECTION HEADERS === */
.section-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #60A5FA;
  margin-bottom: 1rem;
  display: block;
}

.section-label.amber { color: #FBBF24; }

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }

.section-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 42rem;
  margin: 0 auto;
}

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

/* === WHY ME SECTION === */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(139,92,246,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #60A5FA;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* === SERVICES SECTION === */
.services-section {
  position: relative;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 26, 0.8);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  border-radius: 1rem;
  padding: 1.75rem;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #60A5FA;
  transition: background 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(59, 130, 246, 0.2);
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.service-card-centered {
  max-width: 28rem;
  margin: 0 auto;
}

/* === PRICING SECTION === */
.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

.pricing-card {
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.pricing-card.highlighted {
  background: linear-gradient(to bottom, rgba(59,130,246,0.1), rgba(139,92,246,0.1));
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.pricing-card:not(.highlighted) {
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: linear-gradient(135deg, #3B82F6, #8B5CF6);
  color: white;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.pricing-card .plan-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.pricing-price .amount {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: white;
}

.pricing-price .unit {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.4);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pricing-features .check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #60A5FA;
}

.pricing-features .check svg {
  width: 0.75rem;
  height: 0.75rem;
}

.pricing-features span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-cta {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
}

/* === PROJECTS SECTION === */
.projects-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }

.project-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s;
}

.project-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

.project-preview {
  position: relative;
  height: 12rem;
  overflow: hidden;
  background: #1A1F2E;
}

.project-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s;
}

.project-card:hover .project-preview img {
  transform: scale(1.05);
}

.project-preview-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3rem;
  background: linear-gradient(to top, rgba(11,15,26,0.8), transparent);
}

.project-info {
  padding: 1.5rem;
}

.project-info .category {
  font-size: 0.75rem;
  color: rgba(96, 165, 250, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.project-info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  transition: color 0.3s;
}

.project-card:hover .project-info h3 {
  color: #93C5FD;
}

/* === TRUST SECTION === */
.trust-section {
  position: relative;
  overflow: hidden;
}

.trust-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.trust-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 26, 0.85);
}

.amber-gradient-text {
  background: linear-gradient(to right, #FBBF24, #F97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quote-card {
  max-width: 48rem;
  margin: 0 auto 4rem;
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: rgba(251, 191, 36, 0.2);
}

.quote-card blockquote {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  font-style: italic;
}

@media (min-width: 768px) {
  .quote-card blockquote { font-size: 1.5rem; }
}

.quote-card .author {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

.trust-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

.trust-card {
  border-radius: 1rem;
  padding: 1.75rem;
  height: 100%;
  transition: all 0.3s;
}

.trust-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #FBBF24;
  transition: background 0.3s;
}

.trust-card:hover .trust-icon {
  background: rgba(245, 158, 11, 0.2);
}

.trust-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.trust-badges .badge {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(245, 158, 11, 0.1);
}

/* === PROCESS SECTION === */
.process-grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}

.process-line {
  display: none;
}

@media (min-width: 768px) {
  .process-line {
    display: block;
    position: absolute;
    top: 4rem;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(to right, rgba(59,130,246,0.3), rgba(139,92,246,0.3), rgba(59,130,246,0.3));
  }
}

.process-step {
  text-align: center;
  position: relative;
}

.step-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(139,92,246,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  color: #60A5FA;
}

.step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #3B82F6, #8B5CF6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  z-index: 2;
}

.process-step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* === FAQ SECTION === */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(59, 130, 246, 0.2);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item.open .faq-question {
  color: #93C5FD;
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: rgba(255, 255, 255, 0.4);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* === CONTACT SECTION === */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 26, 0.7);
}

.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 3fr 2fr; }
}

.contact-form {
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group { margin-bottom: 1.5rem; }
.form-group:last-child { margin-bottom: 2rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
  font-family: 'Sora', sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  outline: none;
  transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
}

.form-group textarea {
  resize: none;
  min-height: 8rem;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #60A5FA;
}

.contact-info-card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.contact-info-card a,
.contact-info-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.contact-info-card a:hover {
  color: #60A5FA;
}

.response-badge {
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.1);
  background: rgba(59, 130, 246, 0.05);
  text-align: center;
}

.response-badge .time {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.response-badge p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === FOOTER === */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #080B14;
  padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
  .footer { padding: 4rem 0 2rem; }
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.footer-brand .logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 20rem;
}

.footer h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.footer-nav {
  list-style: none;
}

.footer-nav li { margin-bottom: 0.75rem; }

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.footer-nav a:hover { color: rgba(255, 255, 255, 0.7); }

.footer-company {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

.footer-company .name {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.footer-company a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.footer-company a:hover { color: rgba(255, 255, 255, 0.7); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s;
}

.footer-legal a:hover { color: rgba(255, 255, 255, 0.5); }
