/* Reusable styling utilities */

.container {
  width: 100%;
  max-width: var(--width-medium);
  margin: 0 auto;
  padding: 1rem 2rem;
}

h1::selection,
h2::selection {
  color: var(--text-color-two);
  background: var(--primary-color);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 1.9rem;
  border: 1px solid transparent;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: 0.3s;
  margin: 5px 0;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--text-color-two);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background-color: var(--bg-secondary);
  color: var(--bg-primary);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--secondary-color);
  color: var(--text-color-two);
}

/* Dark mode toggle */
#switch {
  display: none;
}

.toggle-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.toggle-icons > img {
  transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  width: 30px;
}

.moon {
  transform: rotate(10deg);
}

#switch:checked + .toggle-icons .moon {
  transform: rotate(250deg);
}

#switch:checked + .toggle-icons .sun {
  transform: rotate(100deg);
}

/* Header Container */
.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 7.5rem;
  padding: 1rem;
  max-width: 100%;
}

@media (min-width: 901px) {
/* Availability Badge */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: color-mix(in srgb, var(--card-background) 88%, var(--surface-warm));
  border: 2px solid var(--primary-color);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  animation: pulse-border 2s infinite;
}

.status-dot {
  width: 12px;
  height: 12px;
  background: #07b500;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-border {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(119, 97, 79, 0.28);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(119, 97, 79, 0);
  }
}

@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(7, 181, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(7, 181, 0, 0);
  }
}

.header-container > div {
  margin-top: 1rem;
}

.content-text {
  text-align: center;
  margin: 1rem 0;
  max-width: 100%;
}

.content-text h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.2;
  transition: 0.2s ease-in-out;
  letter-spacing: 0;
}

.content-text p {
  padding: 0.5rem;
  margin: 0 auto;
  max-width: 700px;
}

.header-container .content-text h2 {
  background: linear-gradient(
    100deg,
    var(--text-primary) 0%,
    var(--text-primary) 38%,
    var(--primary-color) 50%,
    var(--text-primary) 62%,
    var(--text-primary) 100%
  );
  background-size: 220% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hero-title-shimmer 5.5s ease-in-out infinite;
}

@keyframes hero-title-shimmer {
  0%, 100% {
    background-position: 130% 0;
  }
  50% {
    background-position: -30% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-container .content-text h2 {
    animation: none;
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    color: var(--text-primary);
  }
}

.hero-console {
  width: min(860px, calc(100% - 32px));
  margin: 38px auto 0;
  overflow: hidden;
  background: var(--console-bg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 26px 80px rgba(57, 42, 31, 0.24);
  color: #f7efe3;
  font-family: var(--font-mono);
  text-align: left;
}

.console-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--console-muted);
  font-size: 0.78rem;
}

.console-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e16f4b;
}

.console-header span:nth-child(2) {
  background: #d9a441;
}

.console-header span:nth-child(3) {
  background: #74a36f;
  margin-right: 8px;
}

.console-body {
  display: grid;
  gap: 10px;
  padding: 18px;
  font-size: 0.9rem;
}

.console-body p {
  margin: 0;
  color: #f7efe3;
}

.console-command {
  min-height: 1.4em;
}

.console-output {
  display: grid;
  gap: 10px;
}

.console-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: #f7efe3;
  opacity: 0;
  transform: translateY(4px);
  animation: console-line-in 0.24s ease forwards;
}

.prompt {
  color: var(--secondary-color);
  font-weight: 700;
  margin-right: 8px;
}

.console-ok {
  color: #79d839;
  font-weight: 700;
  margin-right: 8px;
}

.console-warn {
  color: #f0b85a;
  font-weight: 700;
  margin-right: 8px;
}

.console-tag {
  color: var(--console-muted);
}

.console-cursor {
  display: inline-block;
  width: 0.58em;
  height: 1.05em;
  margin-left: 2px;
  vertical-align: -0.15em;
  background: #79d839;
  animation: console-cursor-blink 0.9s steps(2, start) infinite;
}

@keyframes console-line-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes console-cursor-blink {
  50% {
    opacity: 0;
  }
}

/* Project cards */
.card {
  background: color-mix(in srgb, var(--card-background) 92%, var(--surface-warm));
  border: 1px solid var(--border-color);
  color: var(--text-color);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

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

.card a {
  color: var(--text-color);
  transition: 0.25s ease-in-out;
  font-size: 1.1rem;
  margin-right: 0.3rem;
}

.card a:hover {
  color: var(--primary-color);
}

.card .project-info {
  opacity: 1;
  position: static;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 10px;
}

.card .project-bio {
  flex: 1;
  position: static;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card .project-bio h3 {
  color: var(--text-primary);
  margin-bottom: 10px;
}

.card .project-bio p {
  color: var(--text-color);
  margin: 5px 0;
  line-height: 1.6;
}

.project-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 8px 0;
  color: var(--text-color);
  opacity: 0.85;
}

.project-stats {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 8px;
  font-weight: 600;
}

.card .project-link {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.card .project-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--text-color-two);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.card .project-link a:hover {
  transform: scale(1.1);
  background: var(--secondary-color);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.btn-icon i {
  margin: 0;
}

/* Custom Timeline Styles */
.timeline {
  position: relative;
  padding-left: 40px;
  margin: 40px 0;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: -45px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-dot.active {
  background: #07b500;
  box-shadow: 0 0 0 3px #07b500;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(7, 181, 0, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(7, 181, 0, 0); }
}

.timeline::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-content h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.timeline-content h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.timeline-date {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 15px;
}

.timeline-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.timeline-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Tech Tags */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.tech-tags span {
  padding: 5px 12px;
  background: var(--card-background);
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.skill-category {
  background: var(--card-background);
  padding: 16px 18px;
  border-radius: 10px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.skill-category:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.skill-category h3 {
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--text-primary);
  font-weight: var(--weight-bold);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 0.9rem;
  opacity: 0.85;
}

.skill-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.skill-tag {
  padding: 4px 10px;
  background: var(--bg-primary);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.skill-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.skill-tag.expert {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  border-color: #f59e0b;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(245, 158, 11, 0.3);
}

.skill-tag.expert:hover {
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.skill-tag.advanced {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  border-color: #10b981;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.3);
}

.skill-tag.advanced:hover {
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.skill-tag.expert-badge {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: #ffffff;
  border-color: #1f2937;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Achievements Grid */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.achievement-card {
  background: var(--card-background);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.achievement-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.achievement-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.achievement-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.achievement-card .year {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-color);
  color: var(--text-color-two);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Social Links in Header */
.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  max-width: 100%;
}

/* Stats Section */
.stats-container {
  margin: 40px auto;
  padding: 20px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: color-mix(in srgb, var(--card-background) 88%, var(--surface-warm));
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Clients */
.clients-container {
  margin: 10px auto 30px;
}

.compact-heading h2 {
  font-size: 1.8rem;
}

.client-marquee {
  position: relative;
  max-width: 980px;
  margin: 20px auto 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: clients-scroll 28s linear infinite;
}

.client-marquee:hover .client-track {
  animation-play-state: paused;
}

.client-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 72px;
  padding: 14px 20px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.client-logo-dark {
  background: #25211c;
  border-color: rgba(255, 255, 255, 0.12);
}

.client-logo img {
  display: block;
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.client-logo:hover img {
  opacity: 1;
  transform: scale(1.04);
}

@keyframes clients-scroll {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }

  .client-track [aria-hidden="true"] {
    display: none;
  }
}

/* Case Studies */
.case-studies-container {
  margin: 30px auto;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 25px 0;
}

.case-card {
  background: color-mix(in srgb, var(--card-background) 94%, var(--surface-warm));
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 28px;
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
}

.case-meta {
  display: inline-block;
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 800;
  font-family: var(--font-mono);
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.case-card h3 {
  color: var(--text-primary);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.case-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.case-result {
  color: var(--text-primary) !important;
  font-weight: 700;
  margin-bottom: 0 !important;
}

/* Conversion Sections */
.audit-express-container,
.proof-links-container,
.brief-container,
.deliverables-container {
  margin: 30px auto;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.split-content,
.audit-card,
.proof-link,
.brief-form {
  background: color-mix(in srgb, var(--card-background) 94%, var(--surface-warm));
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

.split-content,
.audit-card {
  padding: 30px;
}

.split-content h2,
.audit-card h3 {
  color: var(--text-primary);
  margin-bottom: 14px;
}

.split-content p,
.audit-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.audit-card {
  border: 2px solid var(--primary-color);
  box-shadow: 0 14px 36px rgba(119, 97, 79, 0.16);
}

.compact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 9px 0;
  color: var(--text-color);
  line-height: 1.5;
}

.compact-list li i {
  color: var(--primary-color);
  margin-top: 3px;
  min-width: 16px;
}

.proof-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.proof-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 78px;
  padding: 18px;
  color: var(--text-primary);
  font-weight: 800;
  transition: all 0.3s ease;
}

.proof-link i {
  color: var(--primary-color);
  font-size: 1.4rem;
}

.proof-link:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
}

.brief-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
}

.brief-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-primary);
  font-weight: 700;
}

.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font: inherit;
}

.brief-form input:focus,
.brief-form select:focus,
.brief-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(119, 97, 79, 0.18);
}

.brief-form-full,
.brief-form-submit {
  grid-column: 1 / -1;
}

.brief-form-submit {
  justify-self: center;
  border: 0;
  cursor: pointer;
}

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

.brief-form-status {
  grid-column: 1 / -1;
  text-align: center;
  margin: 0;
  min-height: 1.2em;
  font-size: 0.95rem;
}

.brief-form-status.is-success {
  color: #2e7d32;
}

.brief-form-status.is-error {
  color: #c62828;
}

.hero-cta-hint,
.brief-cta-hint,
.cta-cta-hint,
.explore-cta-hint {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  color: var(--text-secondary);
  opacity: 0.85;
}

.explore-cta-hint {
  justify-content: flex-start;
  margin: 6px 0 0 10%;
}

.clients-container {
  position: relative;
}

.trust-stamp {
  position: absolute;
  top: 6px;
  right: 3%;
  width: 132px;
  color: var(--text-secondary);
  opacity: 1;
  transform: rotate(-11deg);
  z-index: 2;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
  transition: transform 0.2s ease;
}

.trust-stamp:hover,
.trust-stamp:focus-visible {
  transform: rotate(-11deg) scale(1.06);
}

.trust-stamp-badge {
  width: 100%;
  height: auto;
  display: block;
}

.header-container {
  position: relative;
}

.hero-cert-badges {
  position: absolute;
  top: 24px;
  right: 1.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.hero-cert-row {
  display: contents;
}

.hero-cert-badge {
  display: block;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.hero-cert-badge:hover,
.hero-cert-badge:focus-visible {
  transform: scale(1.07);
}

.hero-cert-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(1.02);
}

.hero-cert-row-bottom .hero-cert-badge {
  border: 2px solid var(--border-color);
}

.hero-cert-row-top .hero-cert-badge {
  width: 78px;
  height: 78px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.hero-cert-row-top .hero-cert-badge img {
  transform: none;
}

.hero-cert-badge-ibexa img {
  transform: scale(1.12);
}

.hero-cert-badge-ccna img {
  transform: scale(1.35);
}

@media (max-width: 900px) {
  .hero-cert-badges {
    position: static;
    margin: 0 auto 18px;
    gap: 20px;
  }
  .hero-cert-badge {
    width: 76px;
    height: 76px;
  }
  .hero-cert-row-top .hero-cert-badge {
    width: 116px;
    height: 116px;
  }
}

.services-container,
.pricing-container,
.experience-container {
  position: relative;
}

.trust-stamp-inline {
  top: 78px;
  right: 2%;
  width: 108px;
}

@media (max-width: 900px) {
  .trust-stamp {
    position: static;
    margin: 14px auto 0;
    transform: rotate(-7deg);
    opacity: 1;
  }
  .trust-stamp:hover,
  .trust-stamp:focus-visible {
    transform: rotate(-7deg) scale(1.04);
  }
}

.cta-cta-hint {
  justify-content: center;
  margin: 6px 0 0;
  color: #ffffff;
}

.hero-cta-hint {
  justify-content: flex-start;
  margin: 8px 0 0 6px;
}

.brief-cta-hint {
  justify-content: center;
  margin: 4px 0 0;
}

.doodle-note {
  font-family: "Caveat", cursive;
  font-size: 1.5rem;
  line-height: 1;
  transform: rotate(-4deg);
}

.hero-paths {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 180px));
  justify-content: center;
  align-items: end;
  gap: 14px;
  width: 100%;
  margin: 26px 0 18px;
}

.hero-cta-cell {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  min-width: 0;
}

.hero-cta-prompt {
  position: relative;
  min-height: 84px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero-path-q {
  font-family: "Caveat", cursive;
  font-size: 1.35rem;
  line-height: 1.05;
  color: var(--text-primary);
  transform: rotate(-2deg);
  max-width: 340px;
  text-align: center;
}

.hero-action-btn,
.header-container > .social-links .btn {
  width: 100%;
  min-height: 44px;
  text-transform: none !important;
  white-space: nowrap;
}

.hero-path-arrow {
  position: absolute;
  left: 6px;
  bottom: -7px;
  width: 58px;
  color: var(--primary-color);
  transform: rotate(-8deg);
  flex-shrink: 0;
}

.doodle-arrow {
  width: 74px;
  height: auto;
  flex-shrink: 0;
}

.doodle-arrow-down {
  width: 58px;
}

@media (max-width: 980px) {
  .hero-paths {
    grid-template-columns: repeat(4, minmax(140px, 170px));
    gap: 10px;
  }

  .hero-action-btn {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 640px) {
  .hero-paths {
    grid-template-columns: repeat(4, 150px);
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .hero-cta-prompt {
    min-height: 0;
    display: none;
  }

  .hero-cta-hint,
  .brief-cta-hint,
  .cta-cta-hint,
  .explore-cta-hint {
    display: none;
  }
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.deliverables-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 15px 16px;
  background: color-mix(in srgb, var(--card-background) 92%, var(--surface-warm));
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.35;
}

.deliverables-grid i {
  color: var(--primary-color);
  font-size: 1.1rem;
  min-width: 20px;
  text-align: center;
}

/* Services Section */
.services-container {
  margin: 30px auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 25px 0;
}

.service-card {
  background: var(--card-background);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

.service-icon {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.service-card > p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.service-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-benefits li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* CTA Section */
.cta-container {
  background: linear-gradient(135deg, #2b261f, var(--primary-color));
  padding: 50px 20px;
  margin: 40px 0 0 0;
}

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

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--text-color-two);
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-content > p {
  font-size: 1.2rem;
  color: var(--text-color-two);
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-large {
  padding: 1.1rem 2.8rem;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn-primary {
  background: var(--bg-secondary);
  color: var(--bg-primary);
  border: 3px solid var(--bg-secondary);
}

.cta-buttons .btn-primary:hover {
  background: transparent;
  color: var(--bg-secondary);
  border-color: var(--bg-secondary);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: var(--bg-secondary);
  border: 3px solid var(--bg-secondary);
}

.cta-buttons .btn-secondary:hover {
  background: var(--bg-secondary);
  color: var(--bg-primary);
}

.cta-guarantee {
  font-size: 0.95rem;
  color: #ffffff;
  margin-top: 30px;
  font-weight: 600;
  opacity: 0.9;
}

.cta-signature-line {
  margin-top: 26px;
  font-size: 0.9rem;
  color: #ffffff;
  opacity: 0.75;
}

.cta-signature {
  font-family: "Caveat", cursive;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  margin-top: 2px;
  color: var(--primary-color);
  transform: rotate(-4deg);
  display: inline-block;
}

/* Footer Customization */
footer .email-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-block;
  margin: 15px 0;
}

footer .phone {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 10px 0;
}

footer .copyright {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    margin-top: 7rem;
    text-align: center;
    padding: 1rem 1.5rem;
    width: 100%;
    overflow: hidden;
  }

  .header-container h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    padding: 0 10px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .availability-badge {
    font-size: 0.8rem;
    padding: 10px 16px;
    text-align: center;
    max-width: 90%;
  }

  .content-text h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .content-text p {
    font-size: 0.95rem;
    padding: 0.5rem 0.25rem;
    line-height: 1.6;
  }

  .timeline {
    padding-left: 30px;
  }

  .timeline-dot {
    left: -35px;
  }

  .timeline::before {
    left: -28px;
  }

  .skills-grid,
  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 340px;
    padding: 0 10px;
    align-items: stretch;
    margin-left: auto;
    margin-right: auto;
  }

  .social-links .btn {
    width: 100%;
    max-width: 100%;
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-console {
    width: min(100%, 340px);
    margin-top: 26px;
  }

  .console-body {
    font-size: 0.78rem;
    overflow-wrap: anywhere;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .split-section,
  .brief-form {
    grid-template-columns: 1fr;
  }

  .proof-links-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content > p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-large {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .header-container {
    margin-top: 6rem;
    padding: 1rem;
  }

  .header-container h1 {
    font-size: 1.5rem;
    line-height: 1.4;
    max-width: 320px;
  }

  .availability-badge {
    font-size: 0.75rem;
    padding: 8px 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .content-text h2 {
    font-size: 1.35rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .content-text p {
    font-size: 0.9rem;
    max-width: 320px;
  }

  .social-links .btn {
    font-size: 0.8rem;
    padding: 0.65rem 1rem;
    white-space: normal;
  }

  .hero-console {
    width: min(100%, 300px);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .cta-container {
    padding: 50px 15px;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content > p {
    font-size: 0.95rem;
  }

  .cta-guarantee {
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .header-container,
  .stats-container,
  .clients-container,
  .case-studies-container,
  .audit-express-container,
  .proof-links-container,
  .brief-container,
  .deliverables-container,
  .pricing-container {
    max-width: min(390px, calc(100% - 24px));
    margin-left: auto;
    margin-right: auto;
  }

  .header-container h1,
  .content-text h2,
  .content-text p {
    max-width: 100%;
  }
}

/* Responsive project grid */
@media (max-width: 992px) {
  .project {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Pricing Section */
.pricing-container {
  margin: 24px auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.pricing-note-layout {
  position: relative;
}

.pricing-side-note {
  position: absolute;
  top: 18px;
  right: -132px;
  width: 150px;
  margin: 0;
  z-index: 2;
}

.pricing-side-note .sticky-note {
  font-size: 1.15rem;
  padding: 13px 15px;
  transform: rotate(4deg);
}

.offer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-grid .pricing-card {
  min-height: 100%;
}

.offer-grid .price {
  min-height: 72px;
}

.offer-grid .price .amount {
  font-size: 1.85rem;
}

.offer-grid .pricing-card.featured .price .amount {
  font-size: 2.25rem;
}

.pricing-card {
  background: color-mix(in srgb, var(--card-background) 94%, var(--surface-warm));
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  box-shadow: 0 16px 40px rgba(119, 97, 79, 0.18);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary-color);
  color: var(--text-color-two);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: var(--weight-bold);
  font-family: var(--font-mono);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.price {
  margin: 8px 0 16px;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.price .amount {
  font-size: 2.5rem;
  font-weight: var(--weight-bold);
  color: var(--primary-color);
  line-height: 1.2;
}

.price .old-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 2px;
  padding: 5px 10px;
  color: var(--text-secondary);
  background: color-mix(in srgb, var(--card-background) 72%, var(--surface-warm));
  border: 1px solid color-mix(in srgb, var(--text-secondary) 22%, transparent);
  border-radius: 999px;
  font-size: 0.9rem;
  line-height: 1.2;
}

.price .old-price-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-primary);
}

.price .old-price-amount {
  font-weight: var(--weight-bold);
  color: var(--text-secondary);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--text-secondary);
}

.price .amount .hl-hand {
  background-size: 100% 46%;
  background-position: 0 85%;
  padding: 0 6px;
}

.pricing-card:last-child .price .amount {
  font-size: 1.8rem;
}

.offer-grid .pricing-card:last-child .price .amount {
  font-size: 2rem;
}

.price .period {
  font-size: 1rem;
  color: var(--text-secondary);
}

.pricing-description {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.pricing-card > .btn {
  margin-top: auto;
}

.pricing-offer {
  background: rgba(119, 97, 79, 0.08);
  border: 2px dashed var(--primary-color);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.pricing-offer h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.pricing-offer p {
  margin: 5px 0;
}

.pricing-offer .offer-detail {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
}

.pricing-features {
  list-style: none;
  margin-top: 18px;
  flex-grow: 1;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.section-kicker {
  margin-top: 10px;
  font-size: 1.05rem;
  color: var(--primary-color);
  font-weight: 600;
}

.section-spacer {
  margin-top: 28px;
}

.section-spacer-lg {
  margin-top: 32px;
}

.compact-section-title {
  font-size: 1.6rem;
}

.compact-subtitle {
  font-size: 1.3rem;
}

.compact-copy {
  font-size: 0.98rem;
}

.narrow-offer {
  max-width: 440px;
  margin: 0 auto;
}

.pricing-footnote {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 16px;
}

.pricing-footnote.is-subtle {
  font-size: 0.85rem;
  margin-top: 8px;
  font-style: italic;
}

.pricing-features li i {
  color: #06a000;
  font-size: 1rem;
}

/* Process Section */
.process-container {
  margin: 30px auto;
}

.process-timeline {
  margin: 30px 0;
  position: relative;
}

.process-step {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 60px;
  width: 2px;
  height: calc(100% + 10px);
  background: linear-gradient(to bottom, var(--primary-color), var(--border-color));
}

.step-number {
  min-width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--text-color-two);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: var(--weight-bold);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(119, 97, 79, 0.26);
  z-index: 1;
}

.step-content {
  flex: 1;
  background: var(--card-background);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.step-content:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
  transform: translateX(5px);
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.step-content p {
  color: var(--text-secondary);
  margin: 10px 0;
}

.step-content ul {
  list-style: none;
  margin-top: 15px;
}

.step-content ul li {
  padding: 8px 0;
  color: var(--text-primary);
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.step-content ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: var(--weight-bold);
}

.process-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.highlight-card {
  background: var(--card-background);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

.highlight-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.highlight-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.highlight-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .pricing-side-note {
    position: static;
    width: auto;
    margin: 16px 0 0 auto;
    text-align: right;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-side-note {
    margin: 16px auto 0;
    text-align: center;
  }

  .pricing-side-note .sticky-note {
    transform: rotate(-2deg);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    flex-direction: row;
    gap: 15px;
  }

  .process-step:not(:last-child)::after {
    left: 24px;
  }

  .step-number {
    min-width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .step-content {
    padding: 20px;
  }

  .step-content h3 {
    font-size: 1.1rem;
  }

  .process-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .project {
    grid-template-columns: 1fr !important;
  }

  .pricing-card {
    padding: 25px;
  }

  .price .amount {
    font-size: 2rem;
  }
}

.hand-underline {
  position: relative;
  display: inline-block;
}

.hand-underline::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: -14px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 14' fill='none' stroke='%23ffcd42' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M4 9C60 3 130 4 180 7C220 9 260 8 296 5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* --- Hand-drawn toolkit --- */
.hl-hand {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 40' preserveAspectRatio='none'%3E%3Cpath d='M4 26C50 18 150 16 196 22C160 30 60 32 8 34' fill='%23ffcd42' opacity='0.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 88%;
  background-position: 0 60%;
  padding: 0 4px;
}

.circle-hand {
  position: relative;
  display: inline-block;
  padding: 2px 10px;
}

.circle-hand::before {
  content: "";
  position: absolute;
  inset: -8px -6px -6px -6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 70' fill='none' stroke='%23ffcd42' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M80 5C30 4 6 18 6 35C6 54 40 66 84 65C128 64 156 50 154 32C152 16 120 6 78 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.margin-note {
  font-family: "Caveat", cursive;
  font-size: 1.4rem;
  color: var(--text-secondary);
  transform: rotate(-4deg);
  display: inline-block;
  line-height: 1.1;
  margin-left: 6px;
}

.star-hand {
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  vertical-align: middle;
  margin: 0 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffcd42' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3L14.5 9L21 9.5L16 14L17.5 20.5L12 17L6.5 20.5L8 14L3 9.5L9.5 9Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.check-hand {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  vertical-align: -0.2em;
  margin-right: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2379d839' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 13L9 19L20 5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.wave-divider {
  height: 16px;
  margin: 30px auto;
  max-width: 320px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 16' fill='none' stroke='%23ffcd42' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M4 8C24 2 44 14 64 8C84 2 104 14 124 8C144 2 164 14 184 8C204 2 224 14 244 8C264 2 284 14 304 8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.7;
}

.brace-hand {
  position: relative;
  padding-left: 22px;
}

.brace-hand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 100' fill='none' stroke='%23ffcd42' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M11 3C6 3 4 8 4 20C4 34 3 44 2 50C3 56 4 66 4 80C4 92 6 97 11 97'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* --- Hand-drawn toolkit: extension --- */
.sticky-note {
  position: relative;
  display: inline-block;
  font-family: "Caveat", cursive;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #4a3c1a;
  background: #ffe27a;
  padding: 16px 20px;
  transform: rotate(-2deg);
  box-shadow: 3px 5px 12px rgba(0, 0, 0, 0.18);
  border-radius: 2px;
}

.sticky-note::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(4deg);
  width: 46px;
  height: 20px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.box-hand {
  position: relative;
  display: inline-block;
}

.box-hand::before {
  content: "";
  position: absolute;
  inset: -14px -16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 160' fill='none' stroke='%23ffcd42' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 14C90 8 210 10 290 12C293 55 292 110 288 148C200 152 90 151 12 147C8 100 9 55 10 16'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: -1;
}

.strike-hand {
  position: relative;
  display: inline-block;
}

.strike-hand::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 10px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10' preserveAspectRatio='none' fill='none' stroke='%23e05a4b' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M3 7C30 3 70 8 117 3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.cross-hand {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  margin-right: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e05a4b' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M5 5L19 19M19 5L5 19'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.num-hand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  font-weight: 700;
  color: var(--primary-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 44' fill='none' stroke='%23ffcd42' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M22 3C10 3 4 11 4 22C4 34 12 41 23 41C35 41 41 32 40 21C39 10 32 3 21 3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.bubble-hand {
  position: relative;
  display: inline-block;
  padding: 6px 14px;
  font-family: "Caveat", cursive;
  font-size: 1.3rem;
  color: var(--text-secondary);
}

.bubble-hand::before {
  content: "";
  position: absolute;
  inset: -4px -2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 60' fill='none' stroke='%23ffcd42' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M70 4C30 4 6 15 6 30C6 42 22 50 45 52L38 60L58 51C62 51 66 52 70 52C114 52 134 42 134 28C134 14 110 4 70 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

/* Infra capabilities grid */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0 10px;
}

.infra-card {
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.infra-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.infra-card h4 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.infra-card h4 i {
  color: var(--primary-color);
}

.infra-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.infra-card li {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

/* Collapsible experience details */
.exp-toggle {
  margin-top: 12px;
  border-left: 3px solid var(--primary-color);
  border-radius: 8px;
  background: color-mix(in srgb, var(--card-background) 92%, var(--surface-warm));
  overflow: hidden;
}

.exp-toggle summary {
  cursor: pointer;
  list-style: none;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}

.exp-toggle summary::-webkit-details-marker {
  display: none;
}

.exp-toggle summary::before {
  content: "\25B6";
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.exp-toggle[open] > summary::before {
  transform: rotate(90deg);
}

.exp-toggle-inner {
  padding: 0 16px 14px;
}

.exp-toggle-inner ul {
  margin: 0;
  padding-left: 18px;
}

.exp-toggle-inner li {
  margin-bottom: 8px;
  line-height: 1.55;
  color: var(--text-color);
  font-size: 0.95rem;
}
