 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Segoe UI', system-ui, sans-serif;
     background: #fff;
     color: #0f172a;
 }


 .logo {
     font-size: 1.25rem;
     font-weight: 800;
     color: #0f172a;
     text-decoration: none;
 }

 .logo span {
     color: #10b981;
 }

 /* HERO */
 .hero {
     background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #064e3b 100%);
     color: #fff;
     padding: 7rem 2rem;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     bottom: 0;
     left: 0;
     background: radial-gradient(circle at 70% 40%, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
     pointer-events: none;
 }

 .hero-inner {
     position: relative;
     z-index: 1;
     max-width: 800px;
     margin: 0 auto;
 }

 .badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: rgba(16, 185, 129, 0.15);
     color: #6ee7b7;
     font-size: 0.7rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.12em;
     padding: 8px 18px;
     border-radius: 999px;
     border: 1px solid rgba(16, 185, 129, 0.3);
     margin-bottom: 1.5rem;
 }

 .hero h1 {
     font-size: clamp(2.5rem, 6vw, 4rem);
     font-weight: 900;
     line-height: 1.1;
     margin-bottom: 1.25rem;
 }

 .hero h1 span {
     color: #34d399;
 }

 .hero p {
     font-size: 1.15rem;
     color: #cbd5e1;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.7;
 }

 /* SECTIONS */
 section {
     padding: 5rem 2rem;
 }

 .container {
     max-width: 1100px;
     margin: 0 auto;
 }

 .section-label {
     color: #10b981;
     font-size: 0.75rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.1em;
 }

 .section-title {
     font-size: clamp(1.8rem, 4vw, 2.5rem);
     font-weight: 800;
     color: #0f172a;
     margin-top: 0.4rem;
     margin-bottom: 0;
 }

 .section-header {
     text-align: center;
     margin-bottom: 3.5rem;
 }

 /* TWO-COL GRID */
 .two-col {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
 }

 @media (max-width: 768px) {
     .two-col {
         grid-template-columns: 1fr;
         gap: 2.5rem;
     }

     .order-swap {
         order: -1;
     }

     .hero h1 {
         font-size: clamp(2rem, 6vw, 4rem);
     }
 }

 /* IMAGE BLOCK */
 .img-wrap {
     position: relative;
 }

 .img-wrap img {
     width: 100%;
     border-radius: 1.5rem;
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
     object-fit: cover;
     height: 380px;
 }

 .img-badge {
     position: absolute;
     bottom: -1.2rem;
     background: #fff;
     border-radius: 1rem;
     padding: 0.8rem 1.2rem;
     display: flex;
     align-items: center;
     gap: 0.75rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
 }

 .img-badge.left {
     left: -1.2rem;
 }

 .img-badge.right {
     right: -1.2rem;
 }

 .img-badge-icon {
     width: 40px;
     height: 40px;
     border-radius: 0.75rem;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .img-badge-icon.green {
     background: #d1fae5;
     color: #059669;
 }

 .img-badge-icon.amber {
     background: #fef3c7;
     color: #d97706;
 }

 .img-badge p {
     margin: 0;
 }

 .img-badge .lbl {
     font-size: 0.7rem;
     color: #94a3b8;
 }

 .img-badge .val {
     font-size: 0.85rem;
     font-weight: 800;
     color: #0f172a;
 }

 /* TEXT CONTENT */
 .text-content h2 {
     font-size: clamp(1.6rem, 3vw, 2.2rem);
     font-weight: 800;
     color: #0f172a;
     margin-bottom: 1.25rem;
     line-height: 1.25;
 }

 .text-content p {
     color: #475569;
     line-height: 1.8;
     margin-bottom: 1rem;
     font-size: 1rem;
 }

 .text-content p.small {
     font-size: 0.875rem;
     color: #94a3b8;
     font-style: italic;
 }

 /* SERVICE CARDS */
 .service-card {
     background: #fff;
     border-radius: 1.5rem;
     padding: 2rem;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
     border: 1px solid #f1f5f9;
     transition: box-shadow 0.2s;
 }

 .service-card:hover {
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
 }

 .service-card+.service-card {
     margin-top: 1.5rem;
 }

 .service-icon {
     width: 56px;
     height: 56px;
     border-radius: 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1.25rem;
 }

 .service-icon.green {
     background: #d1fae5;
     color: #059669;
 }

 .service-icon.amber {
     background: #fef3c7;
     color: #d97706;
 }

 .service-card h3 {
     font-size: 1.2rem;
     font-weight: 700;
     margin-bottom: 0.6rem;
     color: #0f172a;
 }

 .service-card p {
     color: #64748b;
     line-height: 1.7;
     font-size: 0.95rem;
 }

 /* VALUES GRID */
 .bg-slate {
     background: #f8fafc;
 }

 .values-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 1.5rem;
 }

 .value-card {
     background: #fff;
     border-radius: 1.25rem;
     padding: 1.75rem;
     text-align: center;
     box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
     border: 1px solid #f1f5f9;
     transition: box-shadow 0.2s;
 }

 .value-card:hover {
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
 }

 .value-icon {
     width: 48px;
     height: 48px;
     background: #d1fae5;
     border-radius: 0.875rem;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1rem;
     color: #059669;
 }

 .value-card h3 {
     font-size: 1.05rem;
     font-weight: 700;
     color: #0f172a;
     margin-bottom: 0.5rem;
 }

 .value-card p {
     font-size: 0.875rem;
     color: #64748b;
     line-height: 1.6;
 }

 /* CTA */
 .cta-section {
     background: linear-gradient(135deg, #0f172a 0%, #064e3b 50%, #0f172a 100%);
     color: #fff;
     text-align: center;
     padding: 6rem 2rem;
 }

 .cta-section h2 {
     font-size: clamp(1.8rem, 4vw, 2.8rem);
     font-weight: 800;
     margin-bottom: 1rem;
 }

 .cta-section p {
     font-size: 1.1rem;
     color: #cbd5e1;
     max-width: 500px;
     margin: 0 auto 2.5rem;
     line-height: 1.7;
 }

 .btn-cta {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: #10b981;
     color: #fff;
     font-weight: 700;
     font-size: 1.1rem;
     padding: 1rem 3rem;
     border-radius: 999px;
     border: none;
     cursor: pointer;
     text-decoration: none;
     transition: background 0.2s, transform 0.15s;
     box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
 }

 .btn-cta:hover {
     background: #059669;
     transform: translateY(-2px);
 }

 /* FADE-IN ANIMATION */
 .fade-up {
     opacity: 0;
     transform: translateY(24px);
     transition: opacity 0.5s ease, transform 0.5s ease;
 }

 .fade-up.visible {
     opacity: 1;
     transform: translateY(0);
 }