/* ============================================
   Spark Stream Online - Web Presence (Static)
   Same look & feel as main site, cPanel-ready
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #334155;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 67px;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* ----- Header ----- */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s;
  height: 50px;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.logo-text-fallback {
  display: none;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

/* Show fallback only when image fails to load (JS adds .logo-use-fallback to .logo) */
.logo.logo-use-fallback .logo-image {
  display: none;
}

.logo.logo-use-fallback .logo-text-fallback {
  display: block;
}

.nav-overlay {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

@media (min-width: 769px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    padding: 0.5rem 2rem;
    max-width: 1200px;
    margin-left: auto;
  }
  .nav-menu-close-item {
    display: none;
  }
}

.nav-menu li a {
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.625rem 1rem;
  border-radius: 8px;
  transition: all 0.3s;
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6 0%, #f97316 100%);
  border-radius: 2px;
  transition: transform 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #1e40af;
  background: rgba(59, 130, 246, 0.05);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #334155;
  border-radius: 2px;
  transition: all 0.3s;
}

.menu-toggle:hover span {
  background: #1e40af;
}

@media (max-width: 768px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff !important;
    background-image: none !important;
    z-index: 9998;
  }

  .nav-overlay.active {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    gap: 0.5rem;
    z-index: 9999;
    pointer-events: none;
  }

  .nav-menu.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu-close-item {
    width: 100%;
    margin: 0;
    padding: 1rem 1.5rem 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
  }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    font-size: 1.75rem;
    line-height: 1;
    color: #334155;
    background: #f1f5f9;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }

  .nav-close:hover {
    background: #e2e8f0;
    color: #0f172a;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    border-radius: 12px;
    color: #0f172a;
    font-weight: 600;
  }

  .nav-menu li a:hover,
  .nav-menu li a.active {
    background: #f1f5f9;
    color: #1e40af;
  }

  .nav-menu li a::after {
    display: none;
  }
}

/* ----- Footer ----- */
.footer {
  background: #1e293b;
  color: #e2e8f0;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p {
  color: #cbd5e1;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #fff;
}

.btn-contact {
  display: inline-block;
  background: #f97316;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  margin-top: 1rem;
  transition: background 0.3s;
}

.btn-contact:hover {
  background: #ea580c;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 1rem;
  text-align: center;
  color: #94a3b8;
}

.footer-bottom p {
  margin: 0.25rem 0;
  font-size: 0.875rem;
}

.company-registration {
  font-size: 0.75rem !important;
  color: #64748b !important;
  margin-top: 0.5rem !important;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 1.5rem;
  }
  .footer {
    padding: 2.5rem 0 1rem;
    margin-top: 3rem;
  }
  .footer-container {
    padding: 0 1.5rem;
  }
  .footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .footer-section p,
  .footer-section ul {
    font-size: 0.9375rem;
  }
  .footer-section ul li {
    margin-bottom: 0.35rem;
  }
  .btn-contact {
    padding: 0.65rem 1.25rem;
    margin-top: 0.75rem;
    font-size: 0.9375rem;
  }
}

/* Very narrow: two columns so links sit side-by-side, less vertical scroll */
@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
  }
  .footer-content .footer-section:first-child {
    grid-column: 1 / -1;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    margin-bottom: 0.25rem;
  }
  .footer-content .footer-section:last-child {
    grid-column: 1 / -1;
  }
  .footer {
    padding: 2rem 0 1rem;
    margin-top: 2.5rem;
  }
  .footer-container {
    padding: 0 1.25rem;
  }
  .footer-section h3 {
    font-size: 1.125rem;
  }
  .footer-section h4 {
    font-size: 0.9375rem;
  }
  .footer-bottom {
    padding-top: 0.75rem;
  }
  .footer-bottom p {
    font-size: 0.8125rem;
  }
}

/* Extra narrow: back to single column with minimal spacing */
@media (max-width: 400px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer-content .footer-section:first-child,
  .footer-content .footer-section:last-child {
    grid-column: 1;
  }
  .footer-content .footer-section:first-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .footer-container {
    padding: 0 1rem;
  }
}

/* ----- Shared: container, section labels, buttons ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #dbeafe 0%, #fef3c7 100%);
  color: #1e40af;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.5);
}

.btn-primary svg {
  transition: transform 0.3s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-ghost svg {
  transition: transform 0.3s;
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1) translate(20px, -20px);
    opacity: 0.5;
  }
}

/* ----- Scroll-triggered reveal ----- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal.revealed .reveal-delay-1 { transition-delay: 0.1s; }
.reveal.revealed .reveal-delay-2 { transition-delay: 0.2s; }
.reveal.revealed .reveal-delay-3 { transition-delay: 0.3s; }

/* ----- Tech stack strip ----- */
.tech-strip {
  padding: 3rem 2rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid #e2e8f0;
}

.tech-strip .container {
  max-width: 1000px;
  margin: 0 auto;
}

.tech-strip-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-bottom: 1.25rem;
}

.tech-strip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tech-strip-list li {
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.25s;
}

.tech-strip-list li:hover {
  border-color: #3b82f6;
  color: #1e40af;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

/* ----- Featured work ----- */
.featured-work {
  padding: 6rem 2rem;
  background: #ffffff;
}

.featured-work .section-header {
  margin-bottom: 3rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.work-card {
  background: white;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.work-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, #f97316 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
  z-index: 1;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.work-card:hover::before {
  transform: scaleX(1);
}

.work-card-image {
  height: 160px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.9);
}

.work-card-body {
  padding: 1.75rem;
}

.work-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.work-card-desc {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.work-card-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.work-card-tech span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
  color: #1e40af;
  border-radius: 6px;
}

/* ----- Testimonials ----- */
.testimonials-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.testimonials-section .section-header {
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.testimonial-quote-mark {
  font-size: 3.5rem;
  line-height: 1;
  color: #3b82f6;
  opacity: 0.2;
  font-family: Georgia, serif;
  margin-bottom: -0.5rem;
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
}

.testimonial-author-name {
  font-weight: 700;
  color: #0f172a;
  font-size: 1rem;
}

.testimonial-author-title {
  color: #64748b;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/* ----- What happens next (3 steps) ----- */
.what-happens-next {
  padding: 5rem 2rem;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.what-happens-next .section-header {
  margin-bottom: 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  position: relative;
}

.step-card:hover {
  background: white;
  border-color: #3b82f6;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
}

.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, #3b82f6 0%, #f97316 100%);
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .tech-strip-list {
    gap: 0.75rem 1rem;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== HOME PAGE ========== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: white;
  padding: 8rem 2rem 6rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.4;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

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

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fbbf24;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line {
  display: block;
}

.title-line.highlight {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 3rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.services {
  padding: 8rem 2rem;
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, #f97316 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.service-card-inner {
  position: relative;
  z-index: 1;
}

.service-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #dbeafe 0%, #fef3c7 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.service-icon {
  font-size: 2rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.service-description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.3s;
  cursor: pointer;
}

.service-card:hover .service-link {
  gap: 0.75rem;
}

.service-link svg {
  transition: transform 0.3s;
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

.cta-section {
  position: relative;
  padding: 8rem 2rem;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #f97316 100%);
  opacity: 0.95;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cta-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 6rem 1.5rem 4rem;
  }
  .hero-cta {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 0.75rem;
  }
  .services {
    padding: 4rem 1.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .cta-section {
    padding: 4rem 1.5rem;
  }
  .cta-buttons {
    flex-direction: column;
  }
}

/* ========== SERVICES PAGE ========== */
.services-page {
  min-height: 100vh;
  background: #ffffff;
}

.hero-section {
  position: relative;
  padding: 8rem 0 6rem;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero-section .hero-gradient {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

.hero-section .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-section .hero-badge {
  background: rgba(249, 115, 22, 0.2);
  color: #f97316;
}

.hero-section .hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-section .hero-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.services-detail {
  padding: 4rem 0;
  background: #ffffff;
}

.service-detail-section {
  margin-bottom: 5rem;
  scroll-margin-top: 100px;
}

.service-detail-section:last-child {
  margin-bottom: 0;
}

/* Compact service layout (less scrolling) */
.services-page .service-detail-section {
  margin-bottom: 4rem;
}

.services-page .service-intro {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.services-page .service-content-grid {
  gap: 2rem;
  margin-top: 2rem;
}

.services-page .service-features h3,
.services-page .service-tech h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.features-list-compact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.features-list-compact li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.9375rem;
  color: #475569;
}

.features-list-compact .feature-icon {
  width: 36px;
  height: 36px;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.features-list-compact li strong {
  color: #0f172a;
  font-weight: 600;
}

.service-detail-header {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.service-icon-large {
  font-size: 4rem;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe 0%, #fef3c7 100%);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-category {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, #dbeafe 0%, #fef3c7 100%);
  color: #1e40af;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.service-title-large {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.service-intro {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.8;
  max-width: 800px;
}

.service-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.service-features h3,
.service-tech h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.features-list-modern {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.features-list-modern li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe 0%, #fef3c7 100%);
  border-radius: 12px;
}

.features-list-modern li strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.features-list-modern li p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
  color: #1e40af;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s;
}

.tech-badge:hover {
  background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.how-we-build {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, #f97316 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.process-card:hover::before {
  transform: scaleX(1);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.process-number {
  font-size: 3rem;
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.process-card:hover .process-number {
  color: #3b82f6;
}

.process-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.process-card p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.tech-stack-section {
  padding: 8rem 0;
  background: #ffffff;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-category {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s;
}

.tech-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.tech-category h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.tech-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tech-item {
  padding: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s;
}

.tech-item:hover {
  background: #f1f5f9;
  transform: translateX(4px);
}

.tech-item strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.tech-item p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.tech-flexibility-section {
  padding: 8rem 0 10rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.flexibility-content {
  max-width: 1000px;
  margin: 0 auto;
}

.flexibility-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.flexibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.flexibility-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.flexibility-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, #f97316 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.flexibility-card:hover::before {
  transform: scaleX(1);
}

.flexibility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.flexibility-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.flexibility-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.flexibility-card p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.flexibility-note {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

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

.flexibility-note-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.flexibility-note-content p {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

.ai-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.ai-content {
  position: relative;
  z-index: 1;
}

.ai-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.ai-header .section-label {
  background: rgba(249, 115, 22, 0.2);
  color: #f97316;
}

.ai-header .section-title {
  color: #ffffff;
}

.ai-header .section-description {
  color: #cbd5e1;
}

.ai-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.ai-feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s;
}

.ai-feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.ai-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.ai-feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.ai-feature-card p {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

.ai-tech-note {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.ai-tech-note p {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

.ai-tech-note strong {
  color: #ffffff;
}

.services-page .cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.services-page .cta-gradient {
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.services-page .cta-title,
.services-page .cta-description {
  color: #ffffff;
}

.services-page .cta-description {
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .service-detail-header {
    flex-direction: column;
    gap: 1.5rem;
  }
  .service-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .process-grid,
  .tech-stack-grid,
  .ai-features-grid,
  .flexibility-grid {
    grid-template-columns: 1fr;
  }
  .hero-section {
    padding: 6rem 0 4rem;
  }
  .services-detail {
    padding: 4rem 0;
  }
  .how-we-build,
  .tech-stack-section,
  .tech-flexibility-section {
    padding: 4rem 0 6rem 0;
  }
  .ai-section {
    padding: 4rem 0;
  }
}

/* ----- Services: combined Tech & approach (single section) ----- */
.tech-approach-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.tech-approach-section .section-header {
  margin-bottom: 2.5rem;
}

.tech-approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.tech-approach-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.tech-approach-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.tech-approach-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tech-approach-card p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

.tech-approach-card .tech-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tech-approach-card .tech-mini-list span {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  background: #f1f5f9;
  color: #475569;
  border-radius: 6px;
}

/* ========== ABOUT PAGE ========== */
.about-page {
  min-height: calc(100vh - 200px);
}

.about-page .about-content,
.about-page .container.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-page .hero-section + .container {
  padding-top: 4rem;
}

.about-page h1 {
  font-size: 3rem;
  color: #1e293b;
  margin-bottom: 1rem;
  text-align: center;
}

.about-page .lead {
  font-size: 1.5rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 3rem;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  font-size: 2rem;
  color: #1e40af;
  margin-bottom: 1rem;
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #334155;
}

/* ========== CONTACT PAGE ========== */
.contact-page {
  min-height: 100vh;
  background: #f8fafc;
}

.contact-hero {
  position: relative;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.contact-hero .hero-gradient {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(234, 88, 12, 0.02) 100%);
}

.contact-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
  color: #f97316;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.contact-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.contact-header .lead {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content-section {
  padding: 4rem 0 6rem;
  background: #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-column {
  position: sticky;
  top: 2rem;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.info-card {
  background: white;
  padding: 1.75rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6 0%, #f97316 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.info-icon-wrapper {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.email-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.phone-icon {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

.address-icon {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.info-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.info-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.625rem;
}

.info-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

.info-link:hover {
  color: #2563eb;
}

.info-text {
  color: #475569;
  line-height: 1.8;
  margin: 0;
  font-size: 0.9375rem;
}

.contact-what-next {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
  border: 1px solid #bfdbfe;
  border-radius: 14px;
}

.contact-what-next-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.contact-what-next-list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.8;
}

.contact-what-next-list li {
  margin-bottom: 0.35rem;
}

.contact-note {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(234, 88, 12, 0.08) 100%);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.note-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.note-content strong {
  display: block;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.375rem;
  font-size: 1rem;
}

.note-content p {
  color: #64748b;
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.7;
}

.form-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  position: sticky;
  top: 2rem;
}

.form-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.form-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.form-header p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.5rem;
}

.required {
  color: #ef4444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  color: #0f172a;
  background: #f8fafc;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f97316;
  background: white;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
  font-family: inherit;
}

.btn-submit {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
  margin-top: 0.5rem;
}

.btn-submit:hover:not(:disabled) {
  background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.5);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-alert {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.form-alert.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.form-alert.success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.form-alert.success strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.form-alert.success p {
  margin: 0;
  opacity: 0.95;
  font-size: 0.875rem;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 968px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-info-column,
  .form-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .form-card {
    padding: 2rem 1.5rem;
  }
  .contact-header h1 {
    font-size: 2rem;
  }
}
