/*
Theme Name: ARIVO Studio
Theme URI: https://arivostudio.com/
Author: ARIVO Studio
Author URI: https://arivostudio.com/
Description: Professional design studio theme converted from Figma design to WordPress.
Version: 1.0.0
License: GPL v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: arivo-studio
*/

/* ==========================================================================
   FONT IMPORTS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=general-sans@500&display=swap');

/* ==========================================================================
   CSS VARIABLES (Design Tokens from Figma)
   ========================================================================== */

:root {
  /* Colors */
  --color-primary: #161a18;
  --color-secondary: #6366f1;
  --color-accent: #dfba6b;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-slate-200: #e2e8f0;
  --color-slate-300: #cbd5e1;
  --color-slate-400: #94a3b8;
  --color-slate-500: #64748b;
  --color-slate-600: #475569;
  --color-white: #ffffff;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Font Sizes (from Figma) */
  --text-xs: 14px;
  --text-sm: 16px;
  --text-base: 18px;
  --text-lg: 20px;
  --text-xl: 24px;
  --text-2xl: 32px;
  --text-3xl: 48px;
  --text-4xl: 64px;
  --text-5xl: 80px;
  --text-6xl: 197px;
  
  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.15;
  --leading-snug: 1.2;
  --leading-normal: 1.4;
  --leading-relaxed: 1.5;
  --leading-loose: 1.55;
  
  /* Spacing */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 56px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-15: 120px;
  
  /* Border Radius */
  --radius-sm: 20px;
  --radius-md: 40px;
  --radius-lg: 128px;
  
  /* Shadows */
  --shadow-sm: 0px 8px 32px 0px rgba(0, 0, 0, 0.04);
  
  /* Container */
  --container-max-width: 1424px;
  --container-padding: 100px;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
  color: var(--color-primary);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* White border for desktop and tablet */
@media (min-width: 768px) {
  html {
    background-color: var(--color-gray-200);
  }
  
  body {
    box-shadow: inset 0 0 0 8px white;
    min-height: 100vh;
    padding: 8px;
  }
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: var(--leading-tight);
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}

h1 {
  font-size: var(--text-5xl);
  line-height: var(--leading-none);
    letter-spacing: -2.4px;
  margin-bottom: var(--space-5);
}

h2 {
  font-family: 'General Sans', sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: -2%;
  margin-bottom: 64px;
}

h3 {
  font-family: 'General Sans', sans-serif;
  font-size: var(--text-3xl);
  font-weight: 500;
  line-height: var(--leading-snug);
  letter-spacing: -2%;
  margin-bottom: var(--space-5);
}

h4 {
  font-size: var(--text-2xl);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-3);
}

h5 {
  font-size: var(--text-xl);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-2);
}

p {
  margin-bottom: var(--space-2);
  line-height: var(--leading-relaxed);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-secondary);
}

/* Override link color for buttons */
a.btn:hover {
  color: inherit;
}

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */

.container {
  max-width: 1424px; /* Maksymalna szerokość zgodna z Figmą */
  margin: 0 auto;
  padding: 0;
}

/* Responsive container for larger screens */
@media (min-width: 1920px) {
  .container {
    max-width: 1920px; /* Dostosowanie dla większych ekranów */
  }
}

.section {
  padding: var(--space-15) 0;
}

.section-sm {
  padding: var(--space-10) 0;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.header {
  background-color: var(--color-gray-50);
  border-radius: var(--radius-lg);
  padding: 16px var(--space-6);
  margin-top: 2rem;
  margin-bottom: 96px;
  position: sticky;
  top: 2rem;
  z-index: 1000;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
}

.nav {
  display: flex;
    align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.logo {
  height: 17.79px;
  width: 156.703px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  font-size: 14px;
    font-weight: 500;
  color: var(--color-primary);
    text-decoration: none;
  padding: 12px 24px;
  border-radius: 9999px;
    transition: all 0.3s ease;
}

.nav-item:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  color: var(--color-primary);
  z-index: 1001;
  position: relative;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-gray-50);
  z-index: 1000;
  display: none;
  flex-direction: column;
  padding: 2rem;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  display: flex;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding: 8px 0;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  color: var(--color-primary);
  font-size: 24px;
  line-height: 1;
}

.mobile-menu-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu-items .nav-item {
  padding: 0.75rem 0;
  font-size: 32px;
  color: var(--color-primary);
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.mobile-menu-items .nav-item:hover {
  color: var(--color-secondary);
  background-color: transparent;
}

.nav-button {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-lg);
  font-size: var(--text-xs);
    font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-button:hover {
  background-color: var(--color-secondary);
}

.menu-toggle {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero {
    text-align: center;
  margin-bottom: 128px;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.hero-title {
  font-family: 'General Sans', sans-serif;
  font-size: 120px;
  font-weight: 500;
  line-height: var(--leading-none);
  letter-spacing: -3%;
  color: var(--color-primary);
  margin: 0;
  max-width: 960px;
}

.hero-subtitle {
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: var(--leading-normal);
  color: var(--color-gray-500);
    max-width: 820px;
}

.hero-buttons {
    display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.btn {
  display: flex;
    align-items: center;
    justify-content: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
  transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
  background-color: #4338ca;
  color: var(--color-white);
  padding-left: 36px;
  padding-right: 32px;
}

.btn-primary:hover {
  background-color: #3730a3;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 1.3px solid var(--color-gray-300);
  padding-left: 36px;
  padding-right: 32px;
}

.btn-secondary:hover {
  background-color: #ffffff !important;
  color: #6b7280 !important;
  border-color: var(--color-gray-300) !important;
}

.hero-buttons .btn-secondary:hover,
.hero-buttons a.btn-secondary:hover {
  background-color: #ffffff !important;
  color: #6b7280 !important;
  border-color: var(--color-gray-300) !important;
}

/* Force gray text on button hover */
.btn.btn-secondary:hover,
a.btn.btn-secondary:hover,
.btn-secondary:hover,
a.btn-secondary:hover {
  color: #6b7280 !important;
}

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

.content-section {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-15) var(--container-padding);
  margin-bottom: 0.5rem; /* 0.5rem między sekcjami */
}

.section-tag {
  display: inline-flex;
    align-items: center;
  justify-content: center;
  padding: var(--space-1) 1rem;
  border-radius: var(--radius-lg);
  border: 1.3px solid var(--color-gray-300);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 40px;
}

.section-tag-white {
  background-color: transparent;
  border: 1px solid #475569;
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: 9999px;
  display: inline-flex;
  width: auto;
  align-self: flex-start;
}

.section-tag-dark {
  background-color: transparent;
  border-color: var(--color-slate-600);
  color: var(--color-white);
}

.section-title {
  font-size: var(--text-3xl);
  font-weight: 500;
  line-height: var(--leading-snug);
  letter-spacing: -0.48px;
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}

.section-description {
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: var(--leading-loose);
  color: var(--color-gray-500);
  max-width: 1024px;
}

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

.hero-video-section {
  margin-bottom: 8px;
  width: 100%;
  padding: 0;
}

.hero-video {
  aspect-ratio: 2/1;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  border-radius: 40px;
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img,
.hero-slide iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.hero-video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(13, 13, 13, 0.68);
  border-radius: 159.554px;
  width: 173.447px;
  height: 126.143px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-video-play-button:hover {
  background: rgba(13, 13, 13, 0.8);
}

.hero-video-play-icon {
  width: 78.839px;
  height: 78.839px;
  color: white;
}

.hero-slider-dots {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--color-white);
  transform: scale(1.2);
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Hero Slider Navigation Arrows */
.hero-slider-prev,
.hero-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 13, 13, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: white;
  padding: 0;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
  background: rgba(13, 13, 13, 0.8);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
  left: var(--space-6);
}

.hero-slider-next {
  right: var(--space-6);
}

.hero-slider-prev svg,
.hero-slider-next svg {
  width: 24px;
  height: 24px;
}

.about-section {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-15) var(--container-padding);
  margin-bottom: 0.5rem; /* 0.5rem między sekcjami */
}


.about-section .section-description {
  font-family: 'General Sans', sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: -2%;
  color: var(--color-primary);
  max-width: 75%;
  margin-bottom: 64px;
}

/* ==========================================================================
   SERVICES SECTION - Pixel Perfect from Figma
   ========================================================================== */

.services-section {
  background: radial-gradient(circle at center, rgba(255, 164, 37, 0.35) 0%, #f9fafb 65%);
  border-radius: 40px;
  padding: 120px 100px;
  margin-bottom: 8px;
  position: relative;
}

.services-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0;
}

.services-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.services-title {
  font-family: 'General Sans', sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: -2%;
  color: var(--color-primary);
  margin: 0;
  margin-bottom: 64px;
  width: 80%;
}

.services-middle {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.services-right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card {
  background-color: var(--color-white);
  border-radius: 40px;
  padding: 56px 40px;
  flex: 1;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.04);
}

.service-title {
  font-family: 'General Sans', sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-primary);
  margin: 0;
}

.service-description {
  font-family: 'General Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #6b7280;
  margin: 0;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'General Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: #6b7280;
}

.service-list li {
  margin-left: 0;
  margin-bottom: 0;
  padding-left: 0;
}

.service-list li:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   CASE STUDIES SECTION - Pixel Perfect from Figma
   ========================================================================== */

.case-studies-section {
  background-color: var(--color-primary);
  border-radius: 40px;
  padding: 120px 100px;
  margin-bottom: 8px;
  overflow: hidden;
  position: relative;
}

.dark-veil-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}

.case-studies-section > .container {
  position: relative;
  z-index: 2;
}

.case-studies-header {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 64px;
}

.case-studies-header-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.case-studies-title {
  font-family: 'General Sans', sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: -2%;
  color: var(--color-white);
  margin: 0;
  margin-bottom: 0;
}

.case-studies-subtitle {
  font-family: 'General Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #cbd5e1;
  text-align: left;
  margin: 0;
}

.projects-carousel-wrapper {
  width: 100%;
}

.projects-scroll-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 24px;
}

.projects-scroll-container::-webkit-scrollbar {
  display: none;
}

.projects-grid {
  display: flex;
  gap: 8px;
  padding: 8px 0;
}

.project-item {
  flex: 0 0 calc(33.333% - 5.33px);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.project-link {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-decoration: none;
  color: inherit;
}

.project-image-wrapper {
  aspect-ratio: 1/1;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.project-image-wrapper:hover {
  transform: translateY(-4px);
}

.project-image-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-title {
  font-family: 'General Sans', sans-serif;
  font-size: var(--text-lg);
  font-weight: 500;
  color: #ffffff;
  text-align: left;
  margin: 0;
  margin-top: var(--space-2);
  transition: opacity 0.3s ease;
}

.project-link:hover .project-title {
  opacity: 0.8;
}

.projects-nav-controls {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
}

.projects-nav-button {
  background-color: transparent;
  border: 1.3px solid #475569;
  border-radius: 128px;
  padding: 0;
  width: 80px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.projects-nav-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #64748b;
}

.projects-nav-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.projects-nav-icon {
  width: 16px;
  height: 16px;
  color: #cbd5e1;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */

.pricing-section {
  background-color: #0f172a;
  border-radius: var(--radius-md);
  padding: var(--space-15) var(--container-padding);
  margin-bottom: 0.5rem;
}

.pricing-header {
  margin-bottom: 64px;
}

.pricing-header-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pricing-title {
  font-family: 'General Sans', sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: -2%;
  color: var(--color-white);
  margin-bottom: 0;
}

.pricing-subtitle {
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: var(--leading-normal);
  color: var(--color-slate-300);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-1);
  margin-bottom: var(--space-7);
}

.pricing-card {
  border-radius: var(--radius-md);
  padding: var(--space-7) var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.pricing-card-basic {
  background-color: #e5e7eb;
}

.pricing-card-advanced {
  background-color: #1e293b;
  border: 2px solid #334155;
}

.pricing-card-premium {
  background-color: #eab308;
}

.pricing-plan-name {
  font-size: var(--text-3xl);
  font-weight: 500;
  line-height: var(--leading-snug);
  letter-spacing: -0.48px;
  margin-bottom: var(--space-2);
}

.pricing-plan-name-white {
  color: var(--color-white);
}

.pricing-plan-description {
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--text-base);
}

.pricing-plan-description-white {
  color: var(--color-gray-100);
}

.pricing-features {
  margin-bottom: var(--space-4);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-bottom: var(--space-1);
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: var(--leading-loose);
}

.pricing-feature-white {
  color: var(--color-white);
}

.pricing-price-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 2.5rem;
}

.pricing-price {
  font-size: var(--text-2xl);
  font-weight: 500;
  line-height: var(--leading-snug);
}

.pricing-price-white {
  color: var(--color-white);
}

.pricing-price-old {
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: var(--leading-relaxed);
  text-decoration: line-through;
  color: var(--color-gray-500);
}

.pricing-price-old-white {
  color: var(--color-slate-300);
}

.pricing-button {
  width: 100%;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.pricing-button-dark {
  background-color: #1e293b;
  color: var(--color-white);
  border-radius: 9999px;
  padding: 16px 32px;
}

.pricing-button-light {
  background-color: #cbd5e1;
  color: #1e293b;
  border-radius: 9999px;
  padding: 16px 32px;
}

.pricing-button:hover {
  transform: translateY(-1px);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #cbd5e1;
  color: #1e293b;
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.pricing-feature svg {
  flex-shrink: 0;
  stroke: #1e293b;
}

.pricing-feature-white svg {
  stroke: #ffffff;
}

.pricing-card-premium .pricing-feature svg {
  stroke: #1e293b;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-section {
  background-color: var(--color-gray-100);
  border-radius: var(--radius-md);
  padding: var(--space-15) var(--container-padding);
  margin-bottom: 0.5rem;
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 64px;
}

.testimonials-header .section-tag {
  align-self: flex-start;
  margin-bottom: 0;
}

.testimonials-title {
  font-family: 'General Sans', sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: -2%;
  color: var(--color-primary);
  max-width: 720px;
  margin-bottom: 0;
}

.testimonials-stats {
  display: flex;
  gap: var(--space-4);
}

.testimonial-stat {
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: var(--leading-normal);
  color: var(--color-slate-400);
}

.testimonials-carousel-wrapper {
  width: 100%;
  margin-bottom: var(--space-7);
  overflow: hidden;
}

.testimonials-carousel {
  display: flex;
  gap: var(--space-1);
  transition: transform 0.6s ease-in-out;
}

.testimonial-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-10) var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  flex: 0 0 calc(33.333% - 5.33px);
}

.testimonial-text {
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: var(--leading-normal);
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.testimonial-author {
  font-size: var(--text-base);
  font-weight: 500;
  line-height: var(--leading-relaxed);
  color: var(--color-slate-400);
  margin-bottom: var(--space-2);
}

.testimonial-rating {
  width: 120px;
  height: 24px;
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */

.process-section {
  background-color: var(--color-gray-50);
  border-radius: var(--radius-md);
  padding: var(--space-15) var(--container-padding);
  margin-bottom: var(--space-8);
}

.process-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: 64px;
}

.process-title {
  font-family: 'General Sans', sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: -2%;
  color: var(--color-primary);
  margin-bottom: 2rem;
  max-width: 600px;
}

.process-description {
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: var(--leading-normal);
  color: var(--color-gray-500);
  max-width: 600px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-1);
  margin-bottom: var(--space-7);
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.process-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.process-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-content {
  padding: 0 var(--space-2);
}

.process-step-title {
  font-size: var(--text-2xl);
  font-weight: 500;
  line-height: var(--leading-snug);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.process-step-description {
  font-size: var(--text-base);
  font-weight: 400;
  line-height: var(--leading-relaxed);
  color: var(--color-gray-500);
}

/* ==========================================================================
   FEATURED PROJECT DETAIL SECTION - Pixel Perfect from Figma
   ========================================================================== */

.featured-project-detail-section {
  background-color: var(--color-white);
  border-radius: 40px;
  padding: 120px 100px;
  margin-bottom: 8px;
}

.featured-project-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: stretch;
}

.featured-project-image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 40px;
  overflow: hidden;
  background-color: #000000;
}

.featured-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-project-detail {
  width: 100%;
  background-color: var(--color-primary);
  border-radius: 40px;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-project-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
  color: var(--color-white);
}

.featured-project-detail-title {
  font-family: 'General Sans', sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: -2%;
  color: var(--color-white);
  margin-bottom: 64px;
}

.featured-project-detail-subtitle {
  font-family: 'General Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #cbd5e1;
  margin-bottom: 32px;
}

.featured-project-detail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
}

.featured-project-detail-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.featured-project-detail-item-icon {
  width: 24px;
  height: 24px;
  color: var(--color-white);
  flex-shrink: 0;
}

.featured-project-detail-item-text {
  font-family: 'General Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #cbd5e1;
  margin: 0;
}

.featured-project-detail-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.featured-project-nav-button {
  background-color: transparent;
  border: 1.3px solid #475569;
  border-radius: 128px;
  padding: 0;
  width: 80px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.featured-project-nav-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #64748b;
}

.featured-project-nav-icon {
  width: 16px;
  height: 16px;
  color: #cbd5e1;
}

/* ==========================================================================
   TRUST SECTION
   ========================================================================== */

.trust-section {
  background-color: #F3F4F6;
  border-radius: var(--radius-md);
  padding: var(--space-15) var(--container-padding);
  margin-bottom: 0.5rem;
}

.trust-title {
  font-family: 'General Sans', sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: -2%;
  color: var(--color-primary);
  max-width: 50%;
  margin-top: 0;
  margin-bottom: 64px;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-1);
}

.trust-logo {
  height: 128px;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.trust-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-placeholder {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-gray-400);
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */

.how-it-works-section {
  background-color: #4338ca;
  border-radius: var(--radius-md);
  padding: var(--space-15) var(--container-padding);
  margin-bottom: 0.5rem;
}

.how-it-works-content {
  margin-bottom: 64px;
}

.how-it-works-text {
  max-width: 100%;
}

.how-it-works-title {
  font-family: 'General Sans', sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: -2%;
  color: var(--color-white);
  margin-bottom: 2rem;
  max-width: 50%;
}

.how-it-works-description {
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: var(--leading-normal);
  color: #c7d2fe;
  max-width: 50%;
}

.how-it-works-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-1);
}

.step-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-7) var(--space-5);
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.04);
}

.step-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-3);
  color: var(--color-primary);
}

.step-title {
  font-size: var(--text-2xl);
  font-weight: 500;
  line-height: var(--leading-snug);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.step-description {
  font-size: var(--text-base);
  font-weight: 400;
  line-height: var(--leading-relaxed);
  color: var(--color-gray-500);
}


.author-name {
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: var(--leading-normal);
  color: var(--color-gray-400);
}

.stars {
  font-size: var(--text-xl);
  color: #000000;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
  background-color: #F9FAFB;
  border-radius: var(--radius-md);
  padding: var(--space-15) var(--container-padding);
  margin-bottom: 0.5rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-12);
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 100px;
}

.faq-header .section-tag {
  margin-bottom: 40px;
}

.faq-title {
  font-family: 'General Sans', sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: var(--leading-tight);
  color: var(--color-primary);
  margin-top: 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: #ffffff;
  border: none;
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: 'General Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-primary);
  transition: all 0.3s ease;
  margin-bottom: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-question:hover {
  color: var(--color-secondary);
}

.faq-question span {
  flex: 1;
  padding-right: var(--space-4);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  margin-top: var(--space-3);
  margin-bottom: var(--space-2);
}

.faq-answer p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-600);
  margin: 0;
  padding-left: var(--space-6);
}

.cta-section {
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-15) var(--container-padding) 140px;
  margin-bottom: 0.5rem; /* 0.5rem między sekcjami */
}

.cta-content {
    text-align: center;
  margin-bottom: var(--space-7);
}

.cta-title {
  font-family: 'General Sans', sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: -2%;
  color: var(--color-white);
  margin-bottom: 2rem;
}

.cta-description {
  font-size: var(--text-base);
  font-weight: 400;
  line-height: var(--leading-relaxed);
  color: var(--color-slate-200);
  max-width: 800px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
}

.cta-button-primary {
  background-color: var(--color-white);
  color: var(--color-primary);
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-button-primary:hover {
  color: var(--color-slate-400);
}

.cta-button-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 1.3px solid var(--color-slate-600);
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-button-secondary:hover {
  color: var(--color-slate-300);
}

/* ==========================================================================
   SINGLE PROJECT PAGE
   ========================================================================== */

/* Project Details Section - Combined Hero + Details */
.project-details-section {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-15) var(--container-padding);
  margin-bottom: 0.5rem;
}

.project-header {
  margin-bottom: var(--space-8);
}

.project-hero-title {
  font-family: 'General Sans', sans-serif;
  font-size: 72px;
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  text-align: left;
}

.project-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.project-tech-tag {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: var(--text-sm);
  font-weight: 500;
}

.project-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
}

.project-detail-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.project-detail-heading {
  font-family: 'General Sans', sans-serif;
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-primary);
  margin: 0;
}

.project-detail-text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-600);
  margin: 0;
}

.project-scope-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.project-scope-list li {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-600);
  padding-left: var(--space-6);
  position: relative;
}

.project-scope-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

/* Project Screenshots */
.project-screenshot-section {
  border-radius: var(--radius-md);
  padding: var(--space-15) var(--container-padding);
  margin-bottom: 0.5rem;
}

.project-screenshot-wrapper {
  width: 100%;
  margin: 0 auto var(--space-6);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.1);
}

.project-screenshot-image {
  width: 100%;
  height: auto;
  display: block;
}

.project-screenshot-description {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Project Navigation */
.project-navigation-section {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-10) var(--container-padding);
  margin-bottom: 0.5rem;
}

.project-navigation-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
}

.project-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-decoration: none;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  transition: background-color 0.3s ease;
}

.project-nav-item:hover {
  background-color: var(--color-gray-50);
}

.project-nav-label {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-nav-title {
  font-family: 'General Sans', sans-serif;
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-primary);
  margin: 0;
}

.project-nav-prev {
  text-align: left;
}

.project-nav-next {
  text-align: right;
}

.project-nav-back {
  text-align: center;
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: var(--color-secondary);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

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

.footer {
  background-color: var(--color-gray-50);
  border-radius: var(--radius-md);
  padding: var(--space-15) var(--container-padding);
}

.footer-content {
  text-align: center;
  margin-bottom: var(--space-7);
}

.footer-logo {
  font-family: 'General Sans', sans-serif;
  font-size: 220px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -3%;
  color: var(--color-primary);
  margin-bottom: var(--space-10);
  width: 100%;
}

.footer-nav {
    display: flex;
  gap: var(--space-4);
    justify-content: center;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
}

.footer-nav a {
  color: var(--color-primary);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  display: flex;
    align-items: center;
  justify-content: space-between;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-gray-200);
}

.footer-copyright {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
}

.footer-links {
  display: flex;
  gap: var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
}

.footer-links a {
  color: var(--color-primary);
  text-decoration: none;
}

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

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .container {
    max-width: 1600px;
  }
}

/* Desktop (1024px - 1439px) */
@media (max-width: 1439px) and (min-width: 1024px) {
  .container {
    padding: 0;
}

.hero-title {
    font-size: 100px;
  }
  
  
  .project-item {
    flex: 0 0 calc(33.333% - 5.33px);
  }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
  .container {
    padding: 0;
  }
  
  /* Section padding */
  .services-section {
    padding: 96px 2.5rem;
  }
  
  .case-studies-section {
    padding: 96px 2.5rem;
  }
  
  .featured-project-detail-section {
    padding: 96px 2.5rem;
  }
  
  /* Navigation */
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero Section */
  .hero-title {
    font-size: 72px;
    line-height: var(--leading-tight);
}

.hero-subtitle {
    font-size: var(--text-lg);
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
  }

  /* About Section */
  .about-section .section-description {
    font-size: var(--text-2xl);
  }
  
  /* Services Section */
  .services-content {
    grid-template-columns: 1fr;
  }
  
  .services-title {
    font-size: var(--text-3xl);
    max-width: 100%;
  }
  
  /* Featured Project Detail */
  .featured-project-detail-content {
    flex-direction: column;
    gap: var(--space-8);
  }
  
  .featured-project-image {
    aspect-ratio: 16/9;
  }
  
  /* Case Studies */
  .project-item {
    flex: 0 0 calc(50% - 4px);
  }
  
  .projects-nav-button {
    width: 64px;
    height: 40px;
  }
  
  .projects-nav-icon {
    width: 14px;
    height: 14px;
  }
  
  /* Trust Section */
  .trust-logos {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-1);
  }
  
  /* How It Works */
  .how-it-works-steps {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .how-it-works-title {
    font-size: var(--text-3xl);
  }
  
  /* Testimonials */
  .testimonials-header {
    flex-direction: column;
    gap: var(--space-6);
  }
  
  .testimonials-title {
    font-size: var(--text-3xl);
  }
  
  .testimonials-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .pricing-title {
    font-size: var(--text-3xl);
  }
  
  /* FAQ */
  .faq-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .faq-header {
    position: static;
  }
  
  .faq-title {
    font-size: 48px;
  }
  
  .faq-question {
    font-size: var(--text-lg);
    padding: var(--space-4) var(--space-5);
  }
  
  .faq-answer p {
    font-size: var(--text-base);
    padding-left: var(--space-5);
  }
  
  /* CTA */
  .cta-title {
    font-size: var(--text-3xl);
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .container {
    padding: 0;
  }
  
  /* Typography */
  h2 {
    font-size: 40px;
  }
  
  /* Section padding */
  .services-section {
    padding: 64px 1.5rem;
  }
  
  .case-studies-section {
    padding: 64px 1.5rem;
  }
  
  .featured-project-detail-section {
    padding: 64px 1.5rem;
  }
  
  /* Navigation */
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero Section */
  .hero {
    padding: var(--space-8) 0;
    margin-bottom: 64px;
  }
  
  .hero-title {
    font-size: 56px;
    line-height: var(--leading-tight);
    text-align: center;
  }
  
  .hero-subtitle {
    font-size: var(--text-base);
    text-align: center;
  }
  
  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: var(--space-3) !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }
  
  .hero-buttons .btn {
    width: 280px !important;
    max-width: 280px !important;
    min-width: 280px !important;
    flex-shrink: 0 !important;
  }
  
  /* Hero Video */
  .hero-video {
    aspect-ratio: 2/1;
  }
  
  .hero-video-play-button {
    width: 120px;
    height: 80px;
  }
  
  .hero-video-play-icon {
    width: 50px;
    height: 50px;
  }
  
  .hero-slider-dots {
    bottom: var(--space-4);
  }
  
  /* Hero Slider Arrows - smaller on mobile */
  .hero-slider-prev,
  .hero-slider-next {
    width: 40px;
    height: 40px;
  }
  
  .hero-slider-prev {
    left: var(--space-3);
  }
  
  .hero-slider-next {
    right: var(--space-3);
  }
  
  .hero-slider-prev svg,
  .hero-slider-next svg {
    width: 20px;
    height: 20px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
  
  /* About Section */
  .about-section {
    padding: var(--space-8) var(--space-4);
  }
  
  .about-section .section-description {
    font-family: 'General Sans', sans-serif;
    font-size: 40px !important;
    font-weight: 500;
    line-height: 1.2 !important;
    text-align: left !important;
    max-width: 100% !important;
    width: 100%;
    margin-bottom: 64px;
  }
  
  /* Services Section */
  .services-section {
    padding: 64px 24px;
    border-radius: 32px;
  }
  
  .services-content {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-top: 2.5rem;
  }
  
  .services-title {
    font-size: 48px;
    width: 100%;
  }
  
  .services-middle,
  .services-right {
    gap: 0.5rem;
  }
  
  .service-card {
    padding: 40px 32px;
    min-height: 280px;
  }
  
  .service-title {
    font-size: 24px;
  }
  
  .service-description {
    font-size: 16px;
  }
  
  .service-list {
    font-size: 16px;
    line-height: 28px;
  }
  
  /* Featured Project Detail */
  .featured-project-detail-section {
    padding: 64px 24px;
    border-radius: 32px;
  }
  
  .featured-project-detail-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .featured-project-image {
    aspect-ratio: 1/1;
    border-radius: 32px;
  }
  
  .featured-project-detail {
    padding: 48px 32px;
    border-radius: 32px;
  }
  
  .featured-project-icon {
    margin-bottom: 24px;
  }
  
  .featured-project-detail-title {
    font-size: 32px;
  }
  
  .featured-project-detail-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .featured-project-detail-list {
    gap: 12px;
    margin-bottom: 40px;
  }
  
  .featured-project-detail-nav {
    justify-content: center;
    gap: 16px;
  }
  
  /* Case Studies */
  .case-studies-section {
    padding: 64px 24px;
    border-radius: 32px;
  }
  
  .case-studies-header {
    gap: 24px;
    margin-bottom: 48px;
  }
  
  .case-studies-header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  .case-studies-title {
    font-size: 48px;
  }
  
  .case-studies-subtitle {
    font-size: 18px;
    text-align: left;
  }
  
  .projects-grid {
    flex-wrap: wrap;
  }
  
  .project-item {
    flex: 0 0 100%;
  }
  
  .projects-nav-controls {
    display: none;
  }
  
  /* Trust Section */
  .trust-section {
    padding: var(--space-8) var(--space-4);
  }
  
  .trust-title {
    max-width: 100%;
    text-align: left;
    font-size: 40px;
  }
  
  .trust-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-1);
  }
  
  .trust-logo {
    min-width: 150px;
    height: 80px;
  }
  
  /* How It Works */
  .how-it-works-section {
    padding: var(--space-8) var(--space-4);
  }
  
  .how-it-works-title {
    font-size: 40px;
    text-align: left;
    max-width: 100%;
  }
  
  .how-it-works-description {
    max-width: 100%;
    text-align: left;
    font-size: var(--text-lg);
  }
  
  .how-it-works-steps {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .step-card {
    padding: var(--space-6) var(--space-5);
  }
  
  .step-title {
    font-size: var(--text-xl);
  }
  
  /* Testimonials */
  .testimonials-section {
    padding: var(--space-8) var(--space-4);
  }
  
  .testimonials-header {
    flex-direction: column;
    gap: var(--space-4);
    text-align: left;
  }
  
  .testimonials-title {
    font-size: 40px;
    text-align: left;
  }
  
  .testimonials-stats {
    justify-content: center;
  }
  
  .testimonials-carousel-wrapper {
    overflow: hidden;
  }
  
  .testimonials-carousel {
    display: flex;
    gap: var(--space-1);
  }
  
  .testimonial-card {
    flex: 0 0 100%;
    padding: var(--space-6) var(--space-5);
    min-width: 100%;
  }
  
  .testimonial-text {
    font-size: var(--text-lg);
  }
  
  /* Pricing */
  .pricing-section {
    padding: var(--space-8) var(--space-4);
  }
  
  .pricing-header {
    text-align: center;
  }
  
  .pricing-title {
    font-size: var(--text-2xl);
  }
  
  .pricing-subtitle {
    font-size: var(--text-lg);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .pricing-card {
    padding: var(--space-8) var(--space-6);
  }
  
  .pricing-plan-name {
    font-size: var(--text-2xl);
  }
  
  .pricing-plan-description {
    font-size: var(--text-base);
  }
  
  .pricing-feature {
    font-size: var(--text-sm);
  }
  
  /* Projects */
  .project-item {
    gap: var(--space-6);
    margin-bottom: var(--space-6);
  }
  
  .project-link {
    gap: var(--space-2);
  }
  
  .project-title {
    margin-top: var(--space-2);
  }
  
  /* FAQ */
  .faq-section {
    padding: var(--space-8) var(--space-4);
  }
  
  .faq-layout {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .faq-header {
    position: static;
  }
  
  .faq-title {
    font-size: 40px;
    text-align: left;
    margin-bottom: var(--space-4);
  }
  
  .faq-accordion {
    gap: 8px;
  }
  
  .faq-question {
    font-size: var(--text-base);
    padding: var(--space-4);
  }
  
  .faq-answer p {
    font-size: var(--text-sm);
    padding-left: var(--space-4);
  }
  
  /* CTA */
  .cta-section {
    padding: var(--space-8) var(--space-4);
  }
  
  .cta-title {
    font-size: 48px;
    text-align: center;
  }
  
  .cta-description {
    font-size: var(--text-base);
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
    width: 100%;
  }
  
  .cta-button-primary,
  .cta-button-secondary {
    width: 280px;
  }
  
  /* Footer */
  .footer {
    padding: var(--space-8) var(--space-4);
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-6);
    text-align: center;
  }
  
  .footer-logo {
    font-size: var(--text-4xl);
  }
  
  .footer-nav {
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }
  
  /* Single Project Page - Mobile */
  .project-hero-title {
    font-size: 48px;
  }
  
  .project-details-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .project-screenshot-wrapper {
    margin-bottom: var(--space-4);
  }
  
  /* Project Navigation - Mobile */
  .project-navigation-content {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .project-nav-item {
    text-align: center !important;
  }
  
  .project-nav-prev,
  .project-nav-next {
    text-align: center !important;
  }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0;
  }
  
  /* Section padding */
  .services-section {
    padding: 64px 1.5rem;
  }
  
  .case-studies-section {
    padding: 64px 1.5rem;
  }
  
  .featured-project-detail-section {
    padding: 64px 1.5rem;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }
  
  .hero-buttons .btn {
    width: 280px !important;
    max-width: 280px !important;
    min-width: 280px !important;
  }
  
  .about-section .section-description {
    font-family: 'General Sans', sans-serif;
    font-size: 40px !important;
    font-weight: 500;
    line-height: 1.2 !important;
    text-align: left !important;
    max-width: 100% !important;
    width: 100%;
  }
  
  .services-section {
    padding: 48px 16px;
    border-radius: 24px;
  }
  
  .services-content {
    margin-top: 2.5rem;
    gap: 0.5rem;
  }
  
  .services-middle,
  .services-right {
    gap: 0.5rem;
  }
  
  .services-title {
    font-size: 32px;
    width: 100%;
  }
  
  .service-card {
    padding: 32px 24px;
    border-radius: 32px;
  }
  
  .service-title {
    font-size: 20px;
  }
  
  .service-list {
    font-size: 14px;
    line-height: 24px;
  }
  
  .featured-project-detail-section {
    padding: 48px 16px;
    border-radius: 24px;
  }
  
  .featured-project-image {
    border-radius: 24px;
  }
  
  .featured-project-detail {
    padding: 32px 24px;
    border-radius: 24px;
  }
  
  .featured-project-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  
  .featured-project-detail-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  
  .featured-project-detail-subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  .featured-project-detail-list {
    gap: 8px;
    margin-bottom: 32px;
  }
  
  .featured-project-detail-item {
    gap: 12px;
  }
  
  .featured-project-detail-item-icon {
    width: 20px;
    height: 20px;
  }
  
  .featured-project-detail-item-text {
    font-size: 14px;
  }
  
  .featured-project-nav-button {
    width: 64px;
    height: 40px;
  }
  
  .case-studies-section {
    padding: 48px 16px;
    border-radius: 24px;
  }
  
  .case-studies-title {
    font-size: 32px;
  }
  
  .case-studies-subtitle {
    font-size: 16px;
  }
  
  .projects-grid {
    flex-wrap: wrap;
  }
  
  .project-item {
    flex: 0 0 100%;
    width: 100%;
  }
  
  .how-it-works-title {
    font-size: var(--text-xl);
  }
  
  .testimonials-title {
    font-size: var(--text-xl);
  }
  
  .pricing-title {
    font-size: var(--text-xl);
  }
  
  .faq-title {
    font-size: 28px;
  }
  
  .cta-title {
    font-size: var(--text-xl);
  }
  
  .footer-logo {
    font-size: var(--text-3xl);
    }
}

/* ============================================================================
   CONTACT MODAL
   ============================================================================ */

.contact-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.contact-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.contact-modal-content {
  position: relative;
  background: white;
  border-radius: 32px;
  padding: var(--space-8);
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.contact-modal-content::-webkit-scrollbar {
  width: 6px;
}

.contact-modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.contact-modal-content::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.contact-modal-content::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

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

.contact-modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: none;
  border: none;
  font-size: 32px;
  color: var(--color-gray-400);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.contact-modal-close:hover {
  background-color: var(--color-gray-100);
  color: var(--color-gray-600);
}

.contact-modal-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--space-2);
}

.contact-modal-subtitle {
  font-size: var(--text-base);
  color: var(--color-gray-600);
  margin-bottom: var(--space-6);
}

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

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

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gray-700);
}

.form-group input,
.form-group textarea {
  padding: var(--space-3);
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  transition: all 0.2s;
  height: 56px;
}

.form-group textarea {
  height: auto;
  min-height: 120px;
  resize: vertical; /* Allow only vertical resize */
  max-width: 100%; /* Prevent horizontal overflow */
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-option-label {
  position: relative;
  cursor: pointer;
}

.service-option-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.service-option-label span {
  display: inline-block;
  padding: 12px 32px;
  background-color: white;
  border: 1px solid var(--color-gray-300);
  border-radius: 9999px;
  font-size: var(--text-base);
  color: var(--color-gray-700);
  text-align: center;
  transition: all 0.2s;
  white-space: nowrap;
}

.service-option-label:hover span {
  border-color: var(--color-gray-400);
}

.service-option-label input[type="radio"]:checked + span {
  background-color: #000000;
  color: white;
  border-color: #000000;
}

.contact-submit-btn {
  padding: 16px 32px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  height: auto;
}

.contact-submit-btn:hover {
  background-color: #000000;
  color: #d1d5db;
}

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

.form-message {
  padding: var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  text-align: center;
  display: none;
}

.form-message.success {
  display: block;
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.form-message.error {
  display: block;
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

#open-contact-modal {
  background: white;
  border: 2px solid var(--color-gray-900);
  padding: 16px 32px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .contact-modal-content {
    padding: var(--space-6);
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .contact-modal-title {
    font-size: var(--text-2xl);
  }
  
  .service-option-label span {
    padding: 10px 24px;
    font-size: var(--text-sm);
  }
}

/* ============================================================================
   PRICING PAGE
   ============================================================================ */

body.page-template-page-pricing {
  background-color: #0f172a;
}

.pricing-page {
  background-color: #0f172a;
  min-height: 100vh;
}

.pricing-page .header {
  background-color: #0f172a;
}

.pricing-page nav {
  background-color: #0f172a;
}

.pricing-page .pricing-section {
  padding-top: 0;
  margin-top: 0;
}

.pricing-page .pricing-header {
  margin-bottom: var(--space-8);
}

.pricing-page .pricing-header-text {
  gap: 0;
}

.pricing-page .pricing-title {
  margin-bottom: 32px;
}

.pricing-page .section-tag {
  color: var(--color-white);
  align-self: flex-start;
  margin-bottom: 40px;
}

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

.contact-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.contact-page-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.contact-page-title {
  font-size: 64px;
  font-weight: 500;
  line-height: var(--leading-tight);
  color: var(--color-primary);
  margin: 24px 0;
}

.contact-page-subtitle {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-600);
  margin: 0;
}

.contact-page-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

/* Contact Info Column */
.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 120px;
}

.contact-info-title {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 0 16px;
}

.contact-info-description {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-600);
  margin: 0 0 40px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--color-gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-value {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-value:hover {
  color: var(--color-secondary);
}

/* Social Links */
.contact-social {
  padding-top: 32px;
  border-top: 1px solid var(--color-gray-200);
}

.contact-social-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 16px;
}

.contact-social-links {
  display: flex;
  gap: 12px;
}

.contact-social-link {
  width: 40px;
  height: 40px;
  background: var(--color-gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-social-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Contact Form Column */
.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 0 16px;
}

.contact-form-description {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-600);
  margin: 0 0 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.form-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--color-primary);
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

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

.btn-large {
  padding: 18px 36px;
  font-size: var(--text-lg);
}

.form-message {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  text-align: center;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-page-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact-info-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: 80px 0 60px;
  }
  
  .contact-page-header {
    margin-bottom: 60px;
  }
  
  .contact-page-title {
    font-size: 48px;
  }
  
  .contact-page-subtitle {
    font-size: var(--text-lg);
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 32px 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-page-title {
    font-size: 36px;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 24px 20px;
  }
}
