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

:root {
  --bg-color: #FAFAFA;
  --bg-color-hero: #0A0F1E;
  --text-main: #1D1D1F;
  --text-muted: #86868B;
  --text-invert: #F5F5F7;
  --text-invert-muted: #A1A1A6;
  
  --accent-color: #0A0F1E;
  --accent-blue: #0071E3;
  --border-color: rgba(0, 0, 0, 0.08);
  --border-invert: rgba(255, 255, 255, 0.1);
  --surface-color: #FFFFFF;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
  
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Syne', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  font-weight: 700;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* Utilities */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

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

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background-color: #1a2235;
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background-color: #fff;
  color: var(--accent-color);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--border-color);
}

.btn-outline-dark:hover {
  background-color: var(--accent-color);
  color: #fff;
}

/* Layout Maps */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .section {
    padding: 64px 0;
  }
}

/* Hide scrollbar but keep scroll functionality */

html {
  scrollbar-width: none; /* Firefox */
}

::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

img {
  max-width: 100%;
  height: auto;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 24px 0;
}

.navbar.scrolled {
  padding: 16px 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  color: var(--text-main);
}

.navbar.transparent {
  background-color: transparent;
  color: #fff;
}

.navbar.solid {
  background-color: #fff;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-main);
}

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

.brand-logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.brand-logo .dot {
  color: var(--accent-blue);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 500;
  font-size: 15px;
}

.nav-links a:hover {
  opacity: 0.8;
}

.search-container {
  position: relative;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 12px;
  opacity: 0.5;
}

.search-input-wrapper input {
  padding: 10px 16px 10px 40px;
  border-radius: 999px;
  border: 1px solid rgba(134, 134, 139, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  font-family: var(--font-body);
  font-size: 14px;
  width: 240px;
  transition: all 0.2s ease;
}

.search-input-wrapper input:focus {
  outline: none;
  border-color: var(--accent-color);
  background: #fff;
  color: var(--text-main);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.navbar.transparent .search-input-wrapper input {
  color: #fff;
}
.navbar.transparent .search-input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.navbar.scrolled .search-input-wrapper input,
.navbar.solid .search-input-wrapper input {
  background: #f5f5f7;
  color: var(--text-main);
}

.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  color: var(--text-main);
  z-index: 1001;
}

.search-result-item {
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.2s;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: #f5f5f7;
}

.result-info h4 {
  font-size: 14px;
  font-family: var(--font-body);
  margin-bottom: 4px;
}

.result-category {
  font-size: 12px;
  color: var(--text-muted);
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 4px;
}

.result-price {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-blue);
  white-space: nowrap;
  margin-left: 12px;
}

.no-results {
  padding: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

.btn-contact {
  padding: 10px 24px;
  font-size: 14px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 999;
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  color: var(--text-main);
}

.mobile-search {
  display: flex;
  align-items: center;
  background: #f5f5f7;
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.mobile-search input {
  border: none;
  background: transparent;
  width: 100%;
  margin-left: 12px;
  font-size: 16px;
  outline: none;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-heading);
}

.mobile-btn {
  margin-top: 24px;
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 16px;
  text-align: center;
  border-radius: 8px;
}

.mobile-search-results {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 24px;
  max-height: 200px;
  overflow-y: auto;
}

.mobile-search-item {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.mobile-search-item h4 {
  font-size: 14px;
}
.mobile-search-item small {
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
    z-index: 1001;
  }
}
.footer {
  background-color: var(--accent-color);
  color: #fff;
  padding: 80px 0 32px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

.footer-brand h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.footer-brand .tagline {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  font-size: 15px;
}

.footer-brand .address {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 24px;
  color: #fff;
  font-family: var(--font-body);
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

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

.social-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.social-links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
.service-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 113, 227, 0.3);
}

.highlight-card {
  border-color: rgba(0, 113, 227, 0.2);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.card-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.5px;
}

.card-category {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}

.card-title {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

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

.card-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.btn-card-link {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--accent-blue);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: gap 0.2s;
}

.btn-card-link:hover {
  gap: 8px;
}
.home {
  width: 100%;
  overflow-x: hidden;
}

.bg-light {
  background: #fff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1.3;
  padding-bottom: 8px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-muted);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-color-hero);
  color: #fff;
  overflow: hidden;
  text-align: center;
  padding-top: 136px;
  margin-top: -80px; /* offset navbar */
}

.hero-bg-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(10, 15, 30, 0.4) 0%, rgba(10, 15, 30, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg-fallback {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero-headline {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

/* Gradient shimmer on headline */
.hero-headline .shimmer-text {
  display: inline-block;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 40%,
    #8ec5fc 50%,
    #ffffff 60%,
    #ffffff 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: -100% 0; }
}

/* Subtle glow behind headline */
.hero-headline-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(0, 113, 227, 0.12) 0%, transparent 70%);
  z-index: -1;
  animation: glowPulse 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -60%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -60%) scale(1.15); }
}

/* Animated line under headline */
.hero-line {
  width: 80px;
  height: 3px;
  margin: 0 auto 32px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0071E3, #8b5cf6, #0071E3);
  background-size: 200% 100%;
  animation: lineGradient 3s ease infinite;
}

@keyframes lineGradient {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

.hero-subheadline {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero-btn {
  transition: all 0.3s ease !important;
}

.hero-btn:hover {
  background-color: #fff !important;
  color: var(--accent-color) !important;
  border-color: #fff !important;
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 40px;
  }
  .hero-subheadline {
    font-size: 16px;
  }
}

/* STATS SECTION */
.stats-section {
  padding: 64px 0;
  background: #fff;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-box h3 {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.stat-box p {
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .stat-box h3 { font-size: 36px; }
}

/* CATEGORIES */
.category-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,0,0,0.15);
  background: #fff;
}

.cat-icon {
  margin-bottom: 24px;
  color: var(--accent-blue);
}

.category-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.category-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent-blue);
  font-weight: 500;
  font-size: 14px;
}

/* HOW IT WORKS */
.steps-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 32px;
}

.step-card {
  flex: 1;
  background: var(--surface-color);
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 8px;
  line-height: 1.2;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 15px;
}

.step-connector {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--border-color) 0%, rgba(0,113,227,0.3) 50%, var(--border-color) 100%);
  z-index: 1;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
  }
  .step-connector {
    display: none;
  }
}

/* PORTFOLIO SNIPPET */
.portfolio-card {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-color);
}
.portfolio-visual {
  height: 200px;
  background: #eef2f6;
}
.portfolio-card h4 {
  padding: 20px 20px 4px;
  font-size: 18px;
}
.p-services {
  padding: 0 20px;
  font-size: 13px;
  color: var(--accent-blue);
  font-weight: 500;
  margin-bottom: 12px;
}
.p-result {
  padding: 0 20px 24px;
  font-size: 14px;
  color: var(--text-muted);
}

/* WHY KYSARI */
.why-grid {
  gap: 40px !important;
}
.why-item {
  text-align: center;
}
.why-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.why-item h4 {
  font-size: 18px;
}
.category-page {
  width: 100%;
}

.category-hero {
  background: var(--bg-color-hero);
  color: #fff;
  padding: 140px 0 80px;
  text-align: center;
}

.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: #fff;
}

.category-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.cat-hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cat-search-box {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.cat-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-blue);
}

.cat-search-box input {
  width: 100%;
  padding: 16px 24px 16px 56px;
  border-radius: 999px;
  border: none;
  font-size: 16px;
  outline: none;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.2s;
}

.cat-search-box input:focus {
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.3);
}

/* Dynamic Search Dropdown */
.cat-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  z-index: 100;
}

.cat-search-result-item {
  padding: 14px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.15s;
  color: var(--text-main);
}

.cat-search-result-item:last-child {
  border-bottom: none;
}

.cat-search-result-item:hover {
  background: #f5f5f7;
}

.cat-result-info h4 {
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 2px;
}

.cat-result-category {
  font-size: 12px;
  color: var(--text-muted);
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 4px;
}

.cat-result-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
}

/* LAYOUT */
.layout-with-sidebar {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.category-sidebar {
  width: 250px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}

.mobile-sidebar-toggle {
  display: none;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-links a {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.2s;
}

.sidebar-links a:hover {
  background: #f5f5f7;
  color: var(--text-main);
}

.sidebar-links a.active {
  background: rgba(0, 113, 227, 0.1);
  color: var(--accent-blue);
  font-weight: 600;
}

.category-content {
  flex-grow: 1;
}

.results-count {
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.no-services-found {
  text-align: center;
  padding: 80px 0;
  color: var(--text-muted);
}
.no-services-found svg {
  margin-bottom: 16px;
  opacity: 0.5;
}
.no-services-found h3 {
  font-size: 24px;
  color: var(--text-main);
  margin-bottom: 8px;
}

.cat-cta-banner {
  background: #f5f5f7;
  padding: 64px 0;
  border-top: 1px solid var(--border-color);
}

.cat-cta-banner h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.cat-cta-banner p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 16px;
}

@media (max-width: 900px) {
  .layout-with-sidebar {
    flex-direction: column;
  }
  .category-sidebar {
    width: 100%;
    position: static;
  }
  .mobile-sidebar-toggle {
    display: flex;
  }
  .sidebar-links {
    display: none;
  }
  .sidebar-links.open {
    display: flex;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .category-hero h1 {
    font-size: 36px;
  }
}
.portfolio-page {
  padding-top: 80px;
}

.portfolio-hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

.portfolio-hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  background: rgba(0,0,0,0.02);
  color: var(--text-main);
}

.filter-btn.active {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

.portfolio-card.full-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-visual {
  position: relative;
}

.visual-domain {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.9);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-color);
}

.portfolio-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.p-result-box {
  margin-top: auto;
  border-top: 1px dashed var(--border-color);
  padding: 20px;
  background: #fafafc;
}

.p-result {
  padding: 0 !important;
  font-style: italic;
  color: var(--text-main) !important;
  font-weight: 500;
}
.about-page {
  padding-top: 80px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.about-text p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.about-visual {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-color-hero);
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.tools-sub {
  color: var(--text-muted);
  margin-bottom: 48px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.tool-card {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 40px 24px;
  border-radius: 20px;
  transition: all 0.3s;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.tool-logo {
  width: 64px;
  height: 64px;
  background: #f5f5f7;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.tool-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.tool-card p {
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }
  .about-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}
.contact-page {
  padding-top: 80px;
}

.contact-hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

.contact-hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.form-row {
  display: flex;
  gap: 24px;
}
.form-row .form-group {
  flex: 1;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.2s;
  background: #fafafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

.contact-info-card {
  background: var(--bg-color-hero);
  color: #fff;
  padding: 40px;
  border-radius: 24px;
  height: 100%;
}

.contact-info-card h3 {
  font-size: 24px;
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.info-icon {
  background: rgba(255, 255, 255, 0.1);
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--accent-blue);
}

.info-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.info-value {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.info-value:hover {
  color: var(--accent-blue);
}

.whatsapp-cta {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  width: 100%;
  display: flex;
  gap: 8px;
  border: none;
}
.btn-whatsapp:hover {
  background: #1eb858;
}

/* Success State */
.success-message {
  text-align: center;
  padding: 64px 40px;
  background: #f9fbff;
  border: 1px dashed rgba(0, 113, 227, 0.3);
  border-radius: 24px;
}
.success-icon {
  width: 64px; height: 64px;
  background: #10b981;
  color: #fff;
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.success-message h3 { font-size: 20px; margin-bottom: 8px; }
.success-message p { color: var(--text-muted); }

/* Spinner */
.spinner {
  display: inline-block;
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Service Search Dropdown */
.service-search-group {
  position: relative;
}

.service-input-wrap {
  position: relative;
}

.service-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.service-input-wrap input {
  padding-left: 40px !important;
}

.service-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  z-index: 50;
  overflow: hidden;
}

.service-dropdown-item {
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.15s;
}

.service-dropdown-item:last-child {
  border-bottom: none;
}

.service-dropdown-item:hover {
  background: #f5f5f7;
}

.sdi-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
}

.sdi-category {
  font-size: 12px;
  color: var(--text-muted);
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .form-row { flex-direction: column; gap: 0; }
}
.service-detail-page {
  padding-top: 80px;
}

.detail-hero {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.back-btn {
  background: transparent;
  border: none;
  font-size: 14px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}

.back-btn:hover {
  color: var(--text-color);
}

.domain-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 113, 227, 0.1);
  color: var(--accent-blue);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
}

.detail-title {
  font-size: 48px;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.detail-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 800px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.action-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.price-tag {
  font-family: monospace;
  background: #f1f3f5;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 15px;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  padding: 64px 0;
}

.main-col h2 {
  font-size: 24px;
  margin-bottom: 24px;
}

.main-col p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.deliverables-list {
  list-style: none;
  padding: 0;
}

.deliverables-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.5;
}

.deliverables-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: bold;
}

.info-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: 16px;
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 24px;
}

.info-card p {
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .detail-title {
    font-size: 36px;
  }
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
