:root{
  --bg:#f4f7fb;
  --card:#ffffff;
  --ink:#0f172a;
  --muted:#5b6773;
  --border:#e2e8f0;

  --green:#12a85c;
  --green-dark:#0a7a3a;
  --red:#e53935;

  --shadow: 0 30px 80px rgba(15,23,42,.12);
  --shadow-soft: 0 15px 35px rgba(15,23,42,.08);

  --radius:20px;
}

/* Base */
body{
  margin:0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

/* Wrapper */
.rg-wrap{
  padding:40px 20px;
  display:flex;
  justify-content:center;
}

/* Card */
.rg-shell{
  width:1200px;
  max-width:100%;
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
  border:1px solid var(--border);
}

/* Decorative green shape */
.rg-angled{
  position:absolute;
  top:-150px;
  right:-200px;
  width:700px;
  height:420px;
  background:linear-gradient(135deg,var(--green),var(--green-dark));
  border-radius:140px;
  transform:rotate(12deg);
  z-index:0;
}

/* Navbar */
.rg-nav{
  position:relative;
  z-index:2;
  padding:22px 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* NAV ICONS - force visible */
.rg-nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.rg-nav-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-decoration: none;
}

    .rg-nav-icon svg {
        width: 22px !important;
        height: 22px !important;
        display: block !important;
    }

    /* Colors (important if your navbar links are white) */
    .rg-nav-icon.wa {
        color: #25D366 !important;
    }

    .rg-nav-icon.call {
        color: #ff4d4d !important;
    }

.rg-brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  font-size:18px;
}

.rg-brand img{
  width:38px;
  height:38px;
  border-radius:10px;
  padding:6px;
  background:#fff;
  border:1px solid var(--border);
}

.rg-links{
  display:flex;
  gap:20px;
  font-size:13px;
  font-weight:600;
}

    .rg-links a {
        color: var(--muted);
        opacity: .9;
    }

        .rg-links a:hover {
            opacity: 1;
            color: var(--ink);
        }

/* Nav button */
.rg-nav-btn{
  padding:10px 16px;
  border-radius:999px;
  background: linear-gradient(135deg, #e53935, #b91c1c);
  border:1px solid #e53935;
  color:#fff;
  font-weight:700;
  font-size:12px;
  text-decoration:none;
  box-shadow: 0 8px 20px rgba(229,57,53,.25);
  transition: all .2s ease;
}

.rg-nav-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(229,57,53,.35);
}

/* Content */
.rg-content{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:20px;
  padding:40px 40px 60px;
  align-items:center;
}

/* Left Side */
.rg-kicker{
  font-size:12px;
  letter-spacing:1.5px;
  font-weight:700;
  color:#94a3b8;
}

.rg-title{
  font-size:44px;
  line-height:1.1;
  margin:12px 0 0;
}


.rg-title-strong {
    display: block;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.05;
}

.rg-title-sub {
    display: block;
    font-weight: 600;
    font-size: 24px;
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.2;
}

.rg-sub{
  margin-top:15px;
  color:var(--muted);
  line-height:1.7;
  font-size:15px;
  max-width:600px;
}

/* Contact Box */
.rg-contact {
    margin-top: 25px;
    padding: 18px;
    border-radius: 22px;
    background: radial-gradient(700px 260px at 10% 0%, rgba(18,168,92,.18), transparent 55%), radial-gradient(700px 260px at 100% 40%, rgba(229,57,53,.14), transparent 55%), linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.86));
    border: 1px solid rgba(226,232,240,.55);
    box-shadow: 0 18px 45px rgba(15,23,42,.10), 0 1px 0 rgba(255,255,255,.8) inset;
    backdrop-filter: blur(10px);
}

.rg-contact-head {
    font-size: 12px;
    font-weight: 800;
    color: rgba(15,23,42,.65);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    box-shadow: 0 8px 18px rgba(18,168,92,.25);
}

.rg-phones{
  margin-top:10px;
}

.rg-phone{
  font-size:26px;
  font-weight:900;
  letter-spacing:.5px;
}

/* Buttons */
.rg-actions{
  margin-top:15px;
  display:flex;
  gap:12px;
}

.btn{
  padding:11px 18px;
  border-radius:12px;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  cursor:pointer;
  transition:.2s ease;
}

.btn.green{
  background:linear-gradient(135deg,var(--green),var(--green-dark));
  color:#fff;
  box-shadow:0 10px 25px rgba(18,168,92,.25);
}

.btn.red{
  background:linear-gradient(135deg,var(--red),#b91c1c);
  color:#fff;
  box-shadow:0 10px 25px rgba(229,57,53,.2);
}

.btn:hover{
  transform:translateY(-2px);
}

/* Right Image */
.rg-right{
  display:flex;
  justify-content:center;
}

.rg-hero-img{
  width:100%;
  max-width:520px;
  filter:drop-shadow(0 20px 40px rgba(0,0,0,.15));
}

/* Responsive */
@media(max-width:980px){
  .rg-content{
    grid-template-columns:1fr;
    padding:30px 20px 40px;
  }

  .rg-links{
    display:none;
  }

  .rg-right{
    order:-1;
  }

  .rg-title{
    font-size:34px;
  }

  .rg-phone{
    font-size:22px;
  }
}

/* Features section */
.rg-features {
    padding: 0 40px 36px;
}

@media(max-width:980px) {
    .rg-features {
        padding: 0 20px 28px;
    }
}

.rg-features-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding-top: 10px;
}

.rg-features-title {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.2px;
}

.rg-features-sub {
    max-width: 560px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
    font-weight: 600;
}

.rg-features-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

@media(max-width:980px) {
    .rg-features-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .rg-features-grid {
        grid-template-columns: 1fr;
    }
}

.rg-feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-soft);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .rg-feature-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 45px rgba(15,23,42,.10);
    }

.rg-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18,168,92,.10);
    color: var(--green-dark);
    border: 1px solid rgba(18,168,92,.18);
}

    .rg-feature-icon svg {
        width: 24px;
        height: 24px;
        display: block;
    }

.rg-feature-name {
    margin-top: 10px;
    font-weight: 900;
    font-size: 14px;
}

.rg-feature-desc {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
}

/* Smooth reveal animation */
.rg-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .55s ease, transform .55s ease;
}

    .rg-reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Micro-interaction hover */
.rg-feature-card {
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .rg-feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 45px rgba(15,23,42,.10);
        border-color: rgba(18,168,92,.25);
    }

/* Optional: animate hero image subtly */
.rg-hero-img {
    animation: rgFloat 5.5s ease-in-out infinite;
}

@keyframes rgFloat {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Make contact the first thing on mobile */
@media(max-width:980px) {
    .rg-contact-hero {
        order: -2;
    }
}

/* Nav links should be dark (more professional on white) */
.rg-links a {
    color: rgba(15,23,42,.70);
    opacity: 1;
}

    .rg-links a:hover {
        color: rgba(15,23,42,.95);
    }

/* Improve nav button (phone) to look like premium pill */
.rg-nav-btn {
    font-size: 13px;
    padding: 10px 14px;
}

/* Make contact box more premium */
.rg-contact {
    border-radius: 18px;
}

.rg-phone {
    font-size: 24px;
}

/* Sticky contact bar on mobile */
.rg-sticky {
    display: none;
}

@media(max-width:980px) {
    .rg-sticky {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        z-index: 9999;
    }

    .rg-sticky-btn {
        text-align: center;
        padding: 14px 12px;
        border-radius: 16px;
        font-weight: 900;
        text-decoration: none;
        color: #fff;
        box-shadow: 0 14px 30px rgba(15,23,42,.18);
    }

        .rg-sticky-btn.wa {
            background: linear-gradient(135deg, var(--green), var(--green-dark));
        }

        .rg-sticky-btn.call {
            background: linear-gradient(135deg, var(--red), #b91c1c);
        }

    /* give space so sticky bar doesn't cover content */
    .rg-wrap {
        padding-bottom: 100px;
    }
}


/* Professional Core Section */
.rg-core {
    padding: 70px 40px;
    background: #f8fafc;
}

.rg-core-head h2 {
    font-size: 32px;
    font-weight: 900;
    margin: 0;
}

.rg-core-head p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 15px;
}

.rg-core-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

@media(max-width:980px) {
    .rg-core {
        padding: 50px 20px;
    }

    .rg-core-grid {
        grid-template-columns: 1fr;
    }
}

.rg-core-card {
    display: flex;
    gap: 18px;
    padding: 26px;
    background: #fff;
    border-radius: 22px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: all .25s ease;
}

    .rg-core-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 60px rgba(15,23,42,.12);
    }

.rg-core-icon {
    min-width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

    .rg-core-icon svg {
        width: 26px;
        height: 26px;
    }

.rg-core-content h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
}

.rg-core-content p {
    margin-top: 8px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.rg-core-content span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--green-dark);
}

/* Modules section - add-on (does not replace anything) */
.rg-modules {
    padding: 70px 40px;
    background: radial-gradient(900px 380px at 15% 0%, rgba(18,168,92,.10), transparent 60%), radial-gradient(900px 380px at 85% 30%, rgba(229,57,53,.08), transparent 62%), #ffffff;
}

@media(max-width:980px) {
    .rg-modules {
        padding: 48px 20px;
    }
}

.rg-modules-head h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -.6px;
}

.rg-modules-head p {
    margin: 12px 0 0;
    max-width: 760px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 15px;
}

.rg-modules-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Tablet */
@media(max-width:1100px) {
    .rg-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media(max-width:768px) {
    .rg-modules-grid {
        grid-template-columns: 1fr;
    }
}

.rg-module {
    border-radius: 26px;
    padding: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.86));
    border: 1px solid rgba(226,232,240,.75);
    box-shadow: 0 18px 45px rgba(15,23,42,.08);
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .rg-module:before {
        content: "";
        position: absolute;
        inset: -80px -80px auto auto;
        width: 220px;
        height: 220px;
        border-radius: 60px;
        background: rgba(18,168,92,.10);
        transform: rotate(18deg);
    }

    .rg-module:hover {
        transform: translateY(-6px);
        box-shadow: 0 28px 70px rgba(15,23,42,.12);
        border-color: rgba(18,168,92,.22);
    }

.rg-module-top {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

    .rg-module-top h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 900;
    }

.rg-module-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    box-shadow: 0 16px 30px rgba(18,168,92,.18);
    flex: 0 0 auto;
}

    .rg-module-icon svg {
        width: 24px;
        height: 24px;
        display: block;
    }

.rg-module-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 1;
}

    .rg-module-list li {
        margin: 10px 0;
        padding-left: 18px;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.6;
        position: relative;
    }

        .rg-module-list li:before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: rgba(18,168,92,.85);
            position: absolute;
            left: 0;
            top: 9px;
        }

.rg-module-benefit {
    margin-top: 14px;
    position: relative;
    z-index: 1;
    font-weight: 800;
    color: var(--green-dark);
    font-size: 13px;
    line-height: 1.6;
    padding-top: 12px;
    border-top: 1px dashed rgba(148,163,184,.55);
}