/* ========================================
   CONCHITEC STYLE - ProjektyStavby.cz
   Pixel-Perfect Dark Contractor Theme
   ======================================== */

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

:root {
  /* Background Colors */
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;

  /* Text Colors */
  --text-white: #ffffff;
  --text-light: #e5e5e5;
  --text-gray: #999999;
  --text-muted: #666666;

  /* Accent - Orange */
  --accent: #ff6a00;
  --accent-hover: #ff7a1a;
  --accent-dark: #cc5500;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 200ms var(--ease-out);
  --transition-base: 400ms var(--ease-out);
  --transition-slow: 600ms var(--ease-out);
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-gray);
  line-height: 1.6;
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grid texture background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

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

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

/* ========================================
   CONTAINER
   ======================================== */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

@media (min-width: 1400px) {
  .container {
    padding: 0 var(--space-3xl);
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ========================================
   HEADER
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(5, 5, 5, 0.98);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  gap: var(--space-lg);
}

@media (min-width: 1024px) {
  .header-inner {
    height: 90px;
  }
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.logo-text .subtitle {
  font-size: 0.6875rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Navigation */
.nav {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: var(--space-sm) 0;
  transition: color var(--transition-fast);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-base);
}

.nav a:hover {
  color: var(--text-white);
}

.nav a:hover::after {
  width: 100%;
}

.nav a.active {
  color: var(--accent);
}

.nav a.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.phone-display {
  display: none;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-white);
}

.phone-display svg {
  color: var(--accent);
}

@media (min-width: 1024px) {
  .phone-display {
    display: flex;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid var(--border-light);
  cursor: pointer;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.mobile-menu-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.mobile-menu-btn:hover svg {
  color: var(--bg-dark);
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  color: var(--text-white);
  transition: color var(--transition-fast);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-dark);
  z-index: 999;
  padding: var(--space-xl);
  overflow-y: auto;
}

.mobile-menu.open {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

.mobile-menu a {
  display: block;
  padding: var(--space-lg) 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--transition-fast);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--accent);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform var(--transition-fast);
}

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

/* Primary - Orange */
.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.3);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--text-white);
  border-color: var(--border-light);
}

.btn-outline:hover {
  background: var(--text-white);
  color: var(--bg-dark);
  border-color: var(--text-white);
}

/* Dark */
.btn-dark {
  background: var(--bg-card);
  color: var(--text-white);
  border-color: var(--bg-card);
}

.btn-dark:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 0.875rem;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
}

/* Play Button */
.play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--text-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  position: relative;
}

.play-btn::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pulse 2s infinite;
}

.play-btn svg {
  width: 24px;
  height: 24px;
  color: var(--bg-dark);
  margin-left: 4px;
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-darker);
  padding-top: 80px;
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 90px;
  }
}

/* Hero Background Grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
}

/* Hero Image */
.hero-image-container {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  display: none;
}

@media (min-width: 1024px) {
  .hero-image-container {
    display: block;
  }
}

.hero-image-container img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center top;
  transform: translateY(-10%);
}

.hero-image-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-darker) 0%, transparent 50%);
  z-index: 1;
}

/* Outlined Background Text */
.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 20vw;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  text-stroke: 1px rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  text-transform: uppercase;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--space-2xl) 0;
}

@media (min-width: 1024px) {
  .hero-content-wrapper {
    padding: var(--space-3xl) 0;
  }
}

.hero-content {
  max-width: 650px;
  animation: fadeInUp 1s var(--ease-out);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 106, 0, 0.15);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.6875rem;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  margin-bottom: var(--space-xl);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-left: 3px solid var(--accent);
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-white);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
}

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

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 6rem;
  }
}

@media (min-width: 1280px) {
  .hero h1 {
    font-size: 7rem;
  }
}

.hero h1 span {
  color: var(--accent);
  display: block;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 480px;
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
  animation: fadeInUp 1s var(--ease-out) 0.2s both;
}

/* Stats Block in Hero */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--border-subtle);
  animation: fadeInUp 1s var(--ease-out) 0.4s both;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-text {
  font-size: 0.875rem;
  color: var(--text-gray);
  max-width: 100px;
  line-height: 1.4;
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatars img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--bg-darker);
  margin-left: -12px;
  object-fit: cover;
}

.hero-avatars img:first-child {
  margin-left: 0;
}

.hero-join {
  display: flex;
  flex-direction: column;
  margin-left: var(--space-md);
}

.hero-join-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-join-link {
  font-size: 0.875rem;
  color: var(--text-white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-join-link:hover {
  color: var(--accent);
}

/* Hero Stats Mobile Responsive */
@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
  }
  
  .hero-avatars {
    flex-wrap: wrap;
  }
  
  .hero-join {
    margin-left: 0;
  }
  
  .hero-join-link {
    white-space: nowrap;
  }
}

/* ========================================
   DIAGONAL MARQUEE STRIPES
   ======================================== */

.marquee-section {
  position: relative;
  padding: var(--space-xl) 0;
  overflow: hidden;
  z-index: 10;
}

.marquee-stripe {
  display: flex;
  white-space: nowrap;
  padding: var(--space-md) 0;
  transform: rotate(-3deg) scale(1.1);
  margin: var(--space-sm) -5%;
}

.marquee-stripe.orange {
  background: var(--accent);
}

.marquee-stripe.dark {
  background: var(--bg-card);
  transform: rotate(3deg) scale(1.1);
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
}

.marquee-stripe.dark .marquee-track {
  animation: marqueeReverse 30s linear infinite;
}

.marquee-content {
  display: flex;
  gap: var(--space-3xl);
  padding-right: var(--space-3xl);
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.marquee-stripe.orange .marquee-item {
  color: var(--bg-dark);
}

.marquee-stripe.dark .marquee-item {
  color: var(--text-white);
}

.marquee-item::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.marquee-stripe.orange .marquee-item::after {
  background: var(--bg-dark);
}

.marquee-stripe.dark .marquee-item::after {
  background: var(--accent);
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
  padding: var(--space-5xl) 0;
  position: relative;
  z-index: 1;
}

.section-dark {
  background: var(--bg-dark);
}

.section-darker {
  background: var(--bg-darker);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-xl);
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .section-title h2 {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title h2 {
    font-size: 4rem;
  }
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.7;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-card);
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  gap: var(--space-xl);
  text-align: center;
}

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

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

.stat-item {
  padding: var(--space-lg);
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-subtle);
  display: none;
}

@media (min-width: 1024px) {
  .stat-item:not(:last-child)::after {
    display: block;
  }
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  color: var(--text-gray);
  margin-top: var(--space-sm);
  font-weight: 500;
  font-size: 0.9375rem;
}

/* ========================================
   SERVICE CARDS
   ======================================== */

.services-grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

.service-card {
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--border-subtle);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-card.featured {
  border-color: var(--accent);
}

.service-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.service-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.1);
}

.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 50%);
}

.service-card-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 0.625rem;
  font-weight: 800;
  padding: 0.375rem 0.75rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.service-card-content {
  padding: var(--space-xl);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
}

.service-card:hover .service-card-icon {
  background: var(--accent);
}

.service-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
  transition: color var(--transition-base);
}

.service-card:hover .service-card-icon svg {
  color: var(--bg-dark);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.service-card p {
  color: var(--text-gray);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: all var(--transition-fast);
}

.service-link:hover {
  color: var(--accent-hover);
}

.service-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform var(--transition-fast);
}

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

/* ========================================
   FEATURES
   ======================================== */

.features-grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.feature-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.feature-item h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.feature-item p {
  color: var(--text-gray);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ========================================
   TWO COLUMN LAYOUT
   ======================================== */

.two-col-layout {
  display: grid;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col-layout {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========================================
   CONTACT BOX
   ======================================== */

.contact-box {
  background: var(--bg-card);
  border-radius: 8px;
  padding: var(--space-2xl);
  border: 1px solid var(--border-subtle);
}

.contact-box-header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.contact-box-header .icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-box-header .icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--bg-dark);
}

.contact-box-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
}

.contact-box > p {
  color: var(--text-gray);
  font-size: 0.9375rem;
  margin-bottom: var(--space-xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-darker);
  border-radius: 4px;
}

.contact-info-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item .small {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.contact-box-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

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

.contact-box-buttons .btn {
  flex: 1;
}

/* ========================================
   CHECK LIST
   ======================================== */

.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  color: var(--text-gray);
}

.check-list svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.check-list strong {
  color: var(--text-white);
}

/* ========================================
   PROCESS GRID
   ======================================== */

.process-grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

.process-step {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.process-step:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.process-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.process-step p {
  color: var(--text-gray);
  font-size: 0.9375rem;
}

/* ========================================
   CTA SECTION
   ======================================== */

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

.cta-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
  padding: var(--space-4xl) var(--space-2xl);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.08;
  pointer-events: none;
}

.cta-card h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  position: relative;
}

@media (min-width: 768px) {
  .cta-card h2 {
    font-size: 3.5rem;
  }
}

.cta-card p {
  color: var(--text-gray);
  font-size: 1.0625rem;
  max-width: 540px;
  margin: 0 auto var(--space-xl);
  position: relative;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--bg-darker);
  color: var(--text-gray);
  border-top: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1;
}

.footer-main {
  padding: var(--space-4xl) 0 var(--space-3xl);
}

.footer-grid {
  display: grid;
  gap: var(--space-2xl);
}

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

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-brand .icon {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand .icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--bg-dark);
}

.footer-brand span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-white);
  text-transform: uppercase;
}

.footer-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-gray);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  font-size: 1.125rem;
}

.footer-links ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--text-gray);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 0.9375rem;
  color: var(--text-gray);
}

.footer-contact svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact .small {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-bottom {
  background: var(--bg-dark);
  padding: var(--space-lg) 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

.footer-bottom a {
  color: var(--text-gray);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
  background: var(--bg-darker);
  padding: 140px 0 var(--space-4xl);
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

@media (min-width: 1024px) {
  .page-header {
    padding: 160px 0 var(--space-5xl);
  }
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  position: relative;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .page-header h1 {
    font-size: 5.5rem;
  }
}

.page-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.7;
  position: relative;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-grid {
  display: grid;
  gap: var(--space-2xl);
  max-width: 1000px;
  margin: 0 auto;
}

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

.contact-form-card,
.contact-info-card {
  background: var(--bg-card);
  padding: var(--space-2xl);
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
}

.contact-form-card h2,
.contact-info-card h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
}

.form-row {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: all var(--transition-fast);
  background: var(--bg-darker);
  color: var(--text-white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.form-consent input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-consent label {
  font-size: 0.8125rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.form-consent a {
  color: var(--accent);
  text-decoration: underline;
}

.form-consent a:hover {
  color: var(--accent-hover);
}

.contact-info-section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
}

.contact-info-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info-section h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.contact-info-section > p {
  color: var(--text-gray);
  font-size: 0.9375rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-detail-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-item .main {
  font-weight: 700;
  color: var(--text-white);
}

.contact-detail-item .sub {
  font-size: 0.875rem;
  color: var(--text-gray);
}

/* ========================================
   SERVICES PAGE - Large Grid
   ======================================== */

.services-grid-large {
  display: grid;
  gap: var(--space-xl);
}

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

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

.service-card-large {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.service-card-large:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.service-icon-large {
  width: 60px;
  height: 60px;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.service-icon-large svg {
  color: var(--accent);
}

.service-card-large h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: var(--space-md);
}

.service-card-large p {
  color: var(--text-gray);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.service-card-large ul {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.service-card-large ul li {
  color: var(--text-light);
  padding: var(--space-xs) 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-card-large ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ========================================
   UTILITIES
   ======================================== */

.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: inline-flex;
  }
}

.text-accent {
  color: var(--accent);
}

/* ========================================
   FORM MESSAGES
   ======================================== */

.form-message {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: 8px;
  margin-bottom: var(--space-lg);
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message.fade-out {
  animation: fadeOut 0.3s ease-out forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.form-message-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message-success .form-message-icon {
  color: #22c55e;
}

.form-message-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-message-error .form-message-icon {
  color: #ef4444;
}

.form-message-icon {
  flex-shrink: 0;
}

.form-message-icon svg {
  width: 24px;
  height: 24px;
}

.form-message-text {
  color: var(--text-white);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Field error highlighting */
.field-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
}

.field-error:focus {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3) !important;
}
