/* ==========================================================================
   Multicode Tech V2 - Modern SaaS/Business Design
   Professional, Clean, Attractive
   ========================================================================== */

/* ==========================================================================
   CSS Variables - Sophisticated Palette
   ========================================================================== */
:root {
  /* Colors from Logo */
  --color-primary: #FF6B35;
  --color-secondary: #F7B731;
  --color-navy: #1A2332;
  
  /* Neutral Palette */
  --color-white: #FFFFFF;
  --color-gray-50: #F8FAFC;
  --color-gray-100: #F1F5F9;
  --color-gray-200: #E2E8F0;
  --color-gray-300: #CBD5E1;
  --color-gray-400: #94A3B8;
  --color-gray-500: #64748B;
  --color-gray-600: #475569;
  --color-gray-700: #334155;
  --color-gray-800: #1E293B;
  --color-gray-900: #0F172A;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7B731 100%);
  --gradient-primary-hover: linear-gradient(135deg, #E85A28 0%, #E6A520 100%);
  --gradient-subtle: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  --gradient-hero: linear-gradient(135deg, #F8FAFC 0%, #EEF2F6 100%);
  
  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Typography */
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout */
  --container-max: 1280px;
  --nav-height: 80px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 2rem);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-gray-700);
  background-color: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gray-900);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   Container
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-2xl);
  }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-gray-200);
  transition: all var(--transition-base);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.logo {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: none;
  gap: var(--space-xl);
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-gray-700);
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: none;
  gap: var(--space-md);
}

@media (min-width: 1024px) {
  .nav-actions {
    display: flex;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-xs);
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-gray-900);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile menu */
@media (max-width: 1023px) {
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: var(--space-xl);
    gap: var(--space-lg);
    box-shadow: var(--shadow-lg);
    animation: slideDown var(--transition-base);
  }
  
  .nav-actions.active {
    display: flex;
    flex-direction: column;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}

.btn:focus-visible {
  outline: 3px solid rgba(255, 107, 53, 0.3);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.btn-primary:hover {
  background: var(--gradient-primary-hover);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-gray-700);
  border: 1.5px solid var(--color-gray-300);
}

.btn-outline:hover {
  background: var(--color-gray-50);
  border-color: var(--color-gray-400);
}

.btn-white {
  background: white;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-text {
  background: transparent;
  color: var(--color-gray-600);
  padding: 0.5rem 0;
}

.btn-text:hover {
  color: var(--color-primary);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn-icon-left {
  width: 18px;
  height: 18px;
  margin-right: -4px;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-5xl) 0;
  }
}

.section-label {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background: rgba(255, 107, 53, 0.1);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.section-header {
  max-width: 800px;
  margin-bottom: var(--space-4xl);
}

.section-header-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-4xl);
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  line-height: 1.8;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding-top: calc(var(--nav-height) + var(--space-4xl));
  padding-bottom: var(--space-5xl);
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem 1rem;
  background: white;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-700);
  margin-bottom: var(--space-xl);
}

.badge-icon {
  width: 18px;
  height: 18px;
  color: var(--color-secondary);
}

.hero-title {
  margin-bottom: var(--space-xl);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--color-gray-600);
  margin-bottom: var(--space-2xl);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

.stat-divider {
  width: 1px;
  background: var(--color-gray-200);
}

.hero-visual {
  position: relative;
  height: 500px;
  display: none;
}

@media (min-width: 1024px) {
  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
  }
  
  .hero-visual {
    display: block;
  }
}

/* Floating cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  top: 40%;
  right: 10%;
  animation-delay: 2s;
}

.floating-card.card-3 {
  bottom: 15%;
  left: 5%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.card-icon {
  width: 48px;
  height: 48px;
  padding: var(--space-sm);
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  color: white;
  flex-shrink: 0;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-shape.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--gradient-primary);
  top: -200px;
  right: -100px;
}

.hero-shape.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--color-navy);
  bottom: -150px;
  left: -100px;
}

/* ==========================================================================
   Solutions Section
   ========================================================================== */
.section-solutions {
  background: white;
}

.solutions-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.solution-card {
  padding: var(--space-2xl);
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-2xl);
  transition: all var(--transition-base);
  position: relative;
}

.solution-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.solution-card.featured {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(247, 183, 49, 0.02) 100%);
}

.solution-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.solution-icon {
  width: 56px;
  height: 56px;
  padding: var(--space-md);
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  color: white;
}

.solution-icon svg {
  width: 100%;
  height: 100%;
}

.solution-badge {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.solution-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.solution-description {
  color: var(--color-gray-600);
  margin-bottom: var(--space-xl);
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--color-gray-700);
}

.solution-features svg {
  width: 20px;
  height: 20px;
  color: var(--color-secondary);
  flex-shrink: 0;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.section-services {
  background: var(--color-gray-50);
}

.services-layout {
  display: grid;
  gap: var(--space-4xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .services-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.service-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.service-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.service-icon-wrapper {
  flex-shrink: 0;
}

.service-icon {
  width: 48px;
  height: 48px;
  padding: var(--space-sm);
  background: rgba(255, 107, 53, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
}

.service-title {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.service-description {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
}

/* Visual card */
.visual-card {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.visual-header {
  display: flex;
  align-items: center;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-gray-200);
  margin-bottom: var(--space-lg);
}

.visual-dots {
  display: flex;
  gap: 6px;
}

.visual-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-gray-300);
}

.visual-dots span:nth-child(1) {
  background: #FF5F57;
}

.visual-dots span:nth-child(2) {
  background: #FFBD2E;
}

.visual-dots span:nth-child(3) {
  background: #28CA42;
}

.visual-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.visual-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.visual-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-100);
  border-radius: var(--radius-md);
  color: var(--color-gray-400);
  flex-shrink: 0;
}

.visual-icon.active {
  background: rgba(255, 107, 53, 0.1);
  color: var(--color-primary);
}

.visual-icon.pending {
  background: rgba(247, 183, 49, 0.1);
  color: var(--color-secondary);
}

.visual-icon svg {
  width: 20px;
  height: 20px;
}

.visual-text {
  flex: 1;
}

.visual-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-700);
  margin-bottom: var(--space-xs);
}

.visual-progress {
  height: 6px;
  background: var(--color-gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-slow);
}

/* ==========================================================================
   Why Us Section
   ========================================================================== */
.section-why {
  background: white;
}

.why-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  padding: var(--space-2xl);
  background: var(--color-gray-50);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.why-card:hover {
  background: white;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.why-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
}

.why-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.why-description {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.section-process {
  background: var(--color-gray-50);
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: var(--gradient-primary);
}

@media (min-width: 768px) {
  .process-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.process-step {
  display: flex;
  gap: var(--space-xl);
  position: relative;
}

@media (min-width: 768px) {
  .process-step:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
  }
  
  .process-step:nth-child(odd) .step-marker {
    order: 2;
  }
  
  .process-step:nth-child(even) {
    padding-left: 50%;
  }
  
  .process-step:nth-child(odd) {
    padding-right: 50%;
  }
}

.step-marker {
  flex-shrink: 0;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  background: var(--gradient-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--color-gray-50), var(--shadow-md);
}

.step-content {
  flex: 1;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.step-content:hover {
  box-shadow: var(--shadow-md);
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.step-description {
  color: var(--color-gray-600);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.section-cta {
  background: var(--color-gray-900);
  position: relative;
  overflow: hidden;
}

.cta-card {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: var(--space-lg);
}

.cta-description {
  font-size: 1.25rem;
  color: var(--color-gray-400);
  margin-bottom: var(--space-2xl);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.cta-visual {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  z-index: 1;
}

.cta-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--gradient-primary);
  border-radius: 50%;
  top: -300px;
  right: -200px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.section-contact {
  background: white;
}

.contact-layout {
  display: grid;
  gap: var(--space-4xl);
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1.5fr;
  }
}

.contact-title {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.contact-description {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  margin-bottom: var(--space-2xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 1rem;
  color: var(--color-gray-900);
  line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
  padding: var(--space-2xl);
  background: var(--color-gray-50);
  border-radius: var(--radius-2xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-row {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gray-700);
}

.form-input,
.form-textarea {
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-gray-900);
  background: white;
  border: 1.5px solid var(--color-gray-300);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.checkbox-text {
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

.form-error {
  display: none;
  font-size: 0.875rem;
  color: #EF4444;
}

.form-group.error .form-input,
.form-group.error .form-textarea {
  border-color: #EF4444;
}

.form-group.error .form-error {
  display: block;
}

.form-messages {
  display: none;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 500;
}

.form-messages.success {
  display: block;
  background: #D1FAE5;
  color: #065F46;
  border: 1px solid #6EE7B7;
}

.form-messages.error {
  display: block;
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  padding: var(--space-4xl) 0 var(--space-2xl);
  background: var(--color-gray-900);
  color: var(--color-gray-400);
}

.footer-content {
  display: grid;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr;
  }
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: var(--space-md);
  filter: brightness(0) invert(1);
}

.footer-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 400px;
}

.footer-links {
  display: grid;
  gap: var(--space-2xl);
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  font-size: 0.9375rem;
  color: var(--color-gray-400);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-primary);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-gray-800);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-link-small {
  font-size: 0.875rem;
  color: var(--color-gray-400);
  transition: color var(--transition-fast);
}

.footer-link-small:hover {
  color: var(--color-primary);
}

/* ==========================================================================
   Toast
   ========================================================================== */
.toast {
  position: fixed;
  bottom: -100px;
  right: var(--space-lg);
  min-width: 320px;
  max-width: 480px;
  padding: var(--space-md) var(--space-lg);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  z-index: 9999;
  transition: bottom var(--transition-slow);
}

.toast.show {
  bottom: var(--space-lg);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.toast-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.toast.success {
  border-left: 4px solid #10B981;
}

.toast.success .toast-icon {
  color: #10B981;
}

.toast.error {
  border-left: 4px solid #EF4444;
}

.toast.error .toast-icon {
  color: #EF4444;
}

.toast-message {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-gray-900);
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in-up {
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*:focus-visible {
  outline: 3px solid rgba(255, 107, 53, 0.3);
  outline-offset: 2px;
}

.spinner {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

.spinner-circle {
  stroke: currentColor;
  stroke-dasharray: 60;
  stroke-dashoffset: 15;
  stroke-linecap: round;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

