.challenge-box {
  padding: 35px 30px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  height: 100%;
  position: relative;
  margin-top: 40px;
  transition: all 0.3s ease;
}

.challenge-box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.challenge-box.dark {
  background-color: #1a1a1a;
  color: #fff;
}

.challenge-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: #1a1a1a;
}

.challenge-box.dark .challenge-icon {
  background: #1a1a1a;
  border-color: #444;
  color: #a9e448;
}

.challenge-box h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #a9e448;
}

.challenge-box.dark h3 {
  color: #fff;
}

.challenge-box ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.challenge-box ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 14px;
  color: #555;
}

.challenge-box.dark ul li {
  color: #ccc;
}

.challenge-box ul li::before {
  content: "►";
  position: absolute;
  left: 0;
  color: #a9e448;
  font-size: 10px;
  top: 8px;
}

/*about profile*/
.about-section {
    background: #ffffff;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    font-family: 'Syne', sans-serif;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: #f5f5f0;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image-wrap {
    position: relative;
}

.img-bg-block {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 85%;
    height: 85%;
    background: #0d0d0d;
    border-radius: 4px;
    z-index: 0;
}

.img-lime-corner {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #a8e63d;
    border-radius: 4px;
    z-index: 3;
}

.img-main {
    position: relative;
    z-index: 2;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.img-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.img-main:hover img {
    transform: scale(1.04);
}

.exp-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: #a8e63d;
    color: #0d0d0d;
    padding: 22px 28px;
    border-radius: 6px;
    z-index: 4;
    text-align: center;
    box-shadow: 0 10px 40px rgba(168, 230, 61, 0.4);
    animation: ownerFloat 3s ease-in-out infinite;
}

@keyframes ownerFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.exp-badge .num {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.exp-badge .label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-top: 4px;
}

.about-content {
    padding-left: 20px;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0d0d0d;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.about-tag .dot {
    width: 8px;
    height: 8px;
    background: #a8e63d;
    border-radius: 50%;
}

.about-heading {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: #0d0d0d;
    line-height: 1.1;
    margin-bottom: 10px;
}

.about-heading span {
    color: #8fcc28;
    font-style: italic;
}

.owner-name {
    font-size: 15px;
    font-weight: 700;
    color: #666;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.owner-name::after {
    content: '';
    flex: 1;
    height: 2px;
    background: #a8e63d;
    max-width: 80px;
}

.owner-title {
    font-size: 12px;
    color: #8fcc28;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.about-desc {
    font-size: 15px;
    color: #444;
    line-height: 1.85;
    margin-bottom: 32px;
}

.stats-row {
    display: flex;
    margin-bottom: 36px;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.stat-item {
    flex: 1;
    padding: 18px 20px;
    border-right: 1.5px solid #e8e8e8;
    text-align: center;
    transition: background 0.3s;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: #0d0d0d;
}

.stat-item:hover .stat-num {
    color: #a8e63d;
}

.stat-item:hover .stat-label {
    color: #fff;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    color: #0d0d0d;
    display: block;
    transition: color 0.3s;
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.spec-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 12px;
}

.spec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 38px;
}

.spec-tag {
    padding: 7px 16px;
    border: 1.5px solid #0d0d0d;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #0d0d0d;
    transition: all 0.25s ease;
}

.spec-tag:hover {
    background: #a8e63d;
    border-color: #a8e63d;
}

.about-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0d0d0d;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about-primary:hover {
    background: #a8e63d;
    color: #0d0d0d;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(168, 230, 61, 0.4);
}

.btn-about-primary .arr {
    width: 20px;
    height: 20px;
    background: #a8e63d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #0d0d0d;
    transition: background 0.3s;
    flex-shrink: 0;
}

.btn-about-primary:hover .arr {
    background: #0d0d0d;
    color: #fff;
}

.btn-about-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0d0d0d;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 2px solid #a8e63d;
    transition: all 0.3s;
}

.btn-about-secondary:hover {
    color: #8fcc28;
    border-bottom-color: #0d0d0d;
}

/* PHILOSOPHY STRIP */
.philosophy-strip {
    background: #0d0d0d;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.philosophy-strip::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 4%;
    font-family: 'Playfair Display', serif;
    font-size: 320px;
    color: rgba(168, 230, 61, 0.05);
    line-height: 1;
    pointer-events: none;
}

.philosophy-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 70px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.phil-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #a8e63d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.phil-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: #a8e63d;
}

.phil-heading {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
}

.phil-heading em {
    color: #a8e63d;
    font-style: italic;
}

.phil-quote {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.85;
    margin-bottom: 40px;
    border-left: 3px solid #a8e63d;
    padding-left: 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s;
}

.service-item:hover {
    border-color: #a8e63d;
    background: rgba(168, 230, 61, 0.06);
}

.service-arrow {
    width: 28px;
    height: 28px;
    background: #a8e63d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #0d0d0d;
    font-weight: 900;
    flex-shrink: 0;
}

.service-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

/* Animations */
.owner-fade-left {
    opacity: 0;
    transform: translateX(-40px);
    animation: ownerFL 0.9s ease forwards;
}

.owner-fade-right {
    opacity: 0;
    transform: translateX(40px);
    animation: ownerFR 0.9s ease 0.2s forwards;
}

.owner-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: ownerFU 0.9s ease 0.15s forwards;
}

@keyframes ownerFL {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ownerFR {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ownerFU {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .about-section::before {
        display: none;
    }

    .about-container,
    .philosophy-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-heading {
        font-size: 34px;
    }

    .phil-heading {
        font-size: 30px;
    }

    .exp-badge {
        right: 10px;
    }

    .about-content {
        padding-left: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
