@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500&display=swap');

:root {
    --pd-primary: #0e3b2e;
    --pd-bg: #fdfbf3;
    --pd-accent-bg: #e9eee2;
    --pd-text-muted: #555;
    --pd-white: #ffffff;
}

.pd-hero-section {
    background-color: var(--pd-bg);
    font-family: 'Inter', sans-serif;
    padding: 60px 20px;
    overflow: hidden;
}

.pd-hero-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* Header Styles */
.pd-hero-badge {
    display: inline-block;
    background-color: #f0f4e9;
    border-bottom: 2px solid #a8c17b;
    padding: 4px 12px;
    font-size: 14px;
    color: var(--pd-primary);
    margin-bottom: 20px;
}

.pd-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    color: var(--pd-primary);
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}

.pd-hero-subtitle {
    color: var(--pd-primary);
    opacity: 0.8;
    line-height: 1.5;
    font-size: 18px;
    margin-bottom: 30px;
}

.pd-hero-btn {
    background-color: var(--pd-primary);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    transition: transform 0.2s;
}

.pd-hero-btn:hover {
    transform: scale(1.05);
}

/* Visuals and Floating elements */
.pd-hero-visuals-wrapper {
    position: relative;
    margin-top: 50px;
    padding-bottom: 50px;
}

.pd-hero-bg-band {
    position: absolute;
    top: 30%;
    left: -50vw;
    right: -50vw;
    height: 300px;
    background-color: var(--pd-accent-bg);
    border-radius: 40px;
    z-index: 1;
}

.pd-hero-visuals-inner {
    position: relative;
    z-index: 2;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

/* Stats */
.pd-hero-stat {
    position: absolute;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--pd-primary);
    text-align: left;
}

.pd-stat-left { left: 0; }
.pd-stat-right { right: 0; }

.pd-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
}

.pd-stat-label {
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 600;
}

/* Floating Cards */
.pd-hero-floating-card {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 140px;
    text-align: center;
    z-index: 5;
}

.pd-hero-floating-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    margin: 10px 0;
    color: var(--pd-primary);
    line-height: 1.2;
}

.pd-card-left {
    left: 40px;
    top: 50px;
    width: 160px;
    padding: 30px 20px;
}

.pd-card-top-right {
    right: 15%;
    top: 20px;
    width: 130px;
}

.pd-card-bottom-right {
    right: 5%;
    bottom: 20px;
    width: 110px;
}

.pd-card-icon { font-size: 24px; color: #a8c17b; }
.pd-card-icon.star { color: #d4e157; }

/* Phone Mockups */
.pd-hero-phones {
    display: flex;
    gap: -20px;
    align-items: flex-end;
}

.pd-phone {
    width: 220px;
    height: 476px;
    /* background: #333; */
    border-radius: 30px;
    border: 8px solid transparent;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.pd-phone-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    background: #f0f0f0; /* Replace with Image later */
    font-size: 12px;
}

.pd-phone-secondary {
    margin-left: -40px;
    height: 380px;
    z-index: -1;
}

/* Responsive */
@media (max-width: 768px) {
    .pd-hero-title { font-size: 36px; }
    .pd-hero-stat, .pd-hero-floating-card { display: none; } /* Hide clutter on mobile */
    .pd-hero-phones { transform: scale(0.8); }
}


:root {
    --df-purple: #5c4db1;
    --df-light-grey: #f8f9fa;
    --df-text-dark: #1a1a1a;
    --df-text-muted: #666;
}

.df-section {
    padding: 100px 20px;
    background-color: #fff;
    font-family: 'Inter', -apple-system, sans-serif;
}

.df-container {
    max-width: 900px;
    margin: 0 auto;
}

.df-header {
    text-align: center;
    margin-bottom: 50px;
}

.df-pre-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--df-text-dark);
    margin-bottom: 10px;
}

.df-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--df-text-dark);
}

.df-accent {
    color: var(--df-purple);
}

/* Accordion Styling */
.df-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.df-item {
    background-color: var(--df-light-grey);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.df-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--df-text-dark);
    transition: color 0.3s ease;
}

/* Plus/Minus Icon using pseudo-elements */
.df-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.df-icon::before,
.df-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

/* Horizontal line */
.df-icon::before {
    width: 16px;
    height: 2px;
}

/* Vertical line (plus sign) */
.df-icon::after {
    width: 2px;
    height: 16px;
}

/* Active State Styles */
.df-item.df-active {
    background-color: var(--df-purple);
    color: white;
}

.df-item.df-active .df-question {
    color: white;
}

.df-item.df-active .df-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0; /* Hide vertical line to make it a minus */
}

/* Answer Area */
.df-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.df-item.df-active .df-answer {
    max-height: 200px; /* Adjust based on content */
    padding: 0 30px 30px 30px;
}

.df-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 600px) {
    .df-title { font-size: 32px; }
    .df-question { padding: 20px; font-size: 16px; }
}


.pd-hero-cta-group{
    display:flex;
    gap:16px;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
}

.pd-hero-btn{
    text-decoration:none;
}

.pd-hero-btn-outline{
    background:#fff;
    color:var(--pd-primary);
    border:1px solid rgba(14,59,46,0.18);
}

.pd-phone img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.rtrs-demo-section{
    padding:90px 20px;
    background:linear-gradient(180deg,#ffffff 0%,#f7faf6 100%);
}

.rtrs-demo-container,
.rtrs-caf-container,
.rtrs-aaf-container,
.rtrs-tech-container,
.rtrs-support-container{
    max-width:1180px;
    margin:0 auto;
}

.rtrs-demo-head,
.rtrs-caf-head,
.rtrs-aaf-head,
.rtrs-tech-head{
    text-align:center;
    margin-bottom:38px;
}

.rtrs-demo-badge,
.rtrs-caf-mini,
.rtrs-aaf-mini,
.rtrs-tech-mini,
.rtrs-support-mini{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    background:#eef4ea;
    color:#0e3b2e;
    font-size:14px;
    font-weight:600;
    margin-bottom:14px;
}

.rtrs-demo-head h2,
.rtrs-caf-head h2,
.rtrs-aaf-head h2,
.rtrs-tech-head h2,
.rtrs-support-box h2{
    margin:0 0 12px;
    font-size:42px;
    line-height:1.15;
    color:#0e3b2e;
    font-family:'Playfair Display', serif;
}

.rtrs-demo-head p,
.rtrs-tech-head p,
.rtrs-support-box p{
    max-width:820px;
    margin:0 auto;
    color:#5f6f67;
    line-height:1.7;
    font-size:17px;
}

.rtrs-demo-frame-wrap{
    background:#fff;
    padding:18px;
    border-radius:28px;
    box-shadow:0 24px 80px rgba(0,0,0,0.08);
    border:1px solid rgba(14,59,46,0.08);
    width:100%;
    max-width:520px;
    margin:0 auto;
}

.rtrs-demo-frame-wrap iframe{
    width:100%;
    height:720px;
    border:0;
    border-radius:18px;
    background:#f4f4f4;
}

.rtrs-demo-actions,
.rtrs-support-actions{
    display:flex;
    gap:16px;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    margin-top:28px;
}

.rtrs-demo-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 26px;
    border-radius:999px;
    background:#0e3b2e;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border:1px solid #0e3b2e;
    transition:all .25s ease;
}

.rtrs-demo-btn:hover{
    transform:translateY(-2px);
}

.rtrs-demo-btn-outline{
    background:#fff;
    color:#0e3b2e;
}

.rtrs-caf-section,
.rtrs-aaf-section,
.rtrs-tech-section{
    padding:90px 20px;
    background:#fff;
}

.rtrs-aaf-section{
    background:#fbfcfa;
}

.rtrs-caf-grid,
.rtrs-aaf-grid,
.rtrs-tech-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
}

.rtrs-caf-card,
.rtrs-aaf-card,
.rtrs-tech-card{
    background:#fff;
    border-radius:22px;
    padding:28px;
    box-shadow:0 14px 45px rgba(0,0,0,0.05);
    border:1px solid rgba(14,59,46,0.08);
}

.rtrs-caf-card h3,
.rtrs-aaf-card h3,
.rtrs-tech-card h3{
    margin:0 0 12px;
    font-size:22px;
    color:#0e3b2e;
}

.rtrs-caf-card p,
.rtrs-aaf-card p,
.rtrs-tech-card p{
    margin:0;
    color:#66756d;
    line-height:1.7;
    font-size:15px;
}

.rtrs-support-section{
    padding:90px 20px;
    background:linear-gradient(180deg,#f7faf6 0%,#ffffff 100%);
}

.rtrs-support-box{
    text-align:center;
    background:#ffffff;
    border-radius:28px;
    padding:54px 28px;
    box-shadow:0 22px 70px rgba(0,0,0,0.06);
    border:1px solid rgba(14,59,46,0.08);
}

@media (max-width: 991px){
    .rtrs-caf-grid,
    .rtrs-aaf-grid,
    .rtrs-tech-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .rtrs-demo-frame-wrap iframe{
        height:560px;
    }
}

@media (max-width: 767px){
    .rtrs-demo-head h2,
    .rtrs-caf-head h2,
    .rtrs-aaf-head h2,
    .rtrs-tech-head h2,
    .rtrs-support-box h2{
        font-size:30px;
    }

    .rtrs-caf-grid,
    .rtrs-aaf-grid,
    .rtrs-tech-grid{
        grid-template-columns:1fr;
    }

    .rtrs-demo-frame-wrap iframe{
        height:420px;
    }

    .pd-hero-cta-group{
        flex-direction:column;
    }
}



.pd-hero-badge-icon,
.pd-card-icon,
.pd-card-app-icon i,
.pd-card-logos i,
.pd-hero-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pd-hero-badge-icon {
    margin-right: 8px;
    font-size: 14px;
    color: #d97706;
}

.pd-hero-btn {
    gap: 10px;
}

.pd-hero-btn i {
    font-size: 15px;
}

.pd-card-icon {
    font-size: 22px;
    color: #c96b45;
    margin-bottom: 8px;
}

.pd-card-icon.star {
    color: #6b7280;
}

.pd-card-app-icon {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--pd-primary);
}

.pd-card-app-icon i {
    font-size: 12px;
    margin-right: 4px;
}

.pd-card-logos {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.pd-card-logos i {
    font-size: 7px;
    color: #1f2937;
}

.er-section {
    padding: 90px 20px;
    background: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow: hidden;
}

.er-container {
    max-width: 1180px;
    margin: 0 auto;
}

.er-header {
    text-align: center;
    margin-bottom: 60px;
}

.er-subtitle {
    margin: 0 0 12px;
    color: #635ad9;
    font-size: 22px;
    font-weight: 600;
}

.er-title {
    margin: 0;
    color: #222;
    font-size: 52px;
    line-height: 1.15;
    font-weight: 700;
}

.er-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 70px;
}

.er-visual-wrapper {
    position: relative;
    min-height: 560px;
}

.er-visual-icons-layout .er-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: #f0eeee;
    z-index: 1;
}

.er-shape-top {
    width: 340px;
    height: 340px;
    top: 0;
    right: 40px;
}

.er-shape-left {
    width: 230px;
    height: 230px;
    top: 70px;
    left: 20px;
}

.er-shape-right {
    width: 230px;
    height: 230px;
    bottom: 65px;
    right: 55px;
}

.er-shape-bottom {
    width: 250px;
    height: 250px;
    bottom: 0;
    left: 0;
    background: #f2f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.er-swirl {
    width: 120%;
    opacity: 0.22;
}

.er-phone-stack {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.er-phone-mockup {
    position: absolute;
    width: 215px;
    height: 474px;
    border-radius: 34px;
    overflow: hidden;
    /* background: #111; */
    /* border: 7px solid #1f1f1f; */
    /* box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12); */
}

.er-phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.er-phone-front {
    left: 85px;
    top: 145px;
    z-index: 4;
}

.er-phone-back {
    left: 280px;
    top: 225px;
    z-index: 3;
}

.er-badge {
    position: absolute;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.er-badge-purple {
    background: linear-gradient(135deg, #7a68ff, #5c54d8);
    left: 135px;
    top: 360px;
}

.er-badge-orange {
    background: linear-gradient(135deg, #ff7a00, #ea580c);
    left: 285px;
    top: 455px;
}

.er-steps-list {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.er-step-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.er-icon-container {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0,0,0,0.04);
}

.er-icon-black {
    background: #111317;
    color: #fff;
}

.er-icon-light {
    background: #f3f4f7;
    color: #1f2937;
}

.er-icon {
    font-size: 20px;
    font-weight: 600;
}

.er-icon-container i {
    font-size: 28px;
    line-height: 1;
}

.er-step-content h4 {
    margin: 0 0 8px;
    font-size: 21px;
    font-weight: 700;
    color: #222;
}

.er-step-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #6b7280;
    max-width: 470px;
}

@media (max-width: 1100px) {
    .er-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .er-visual-wrapper {
        min-height: 620px;
        max-width: 700px;
        margin: 0 auto;
    }

    .er-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .er-section {
        padding: 70px 16px;
    }

    .er-title {
        font-size: 30px;
    }

    .er-subtitle {
        font-size: 20px;
    }

    .er-visual-wrapper {
        min-height: 470px;
    }

    .er-shape-top {
        width: 230px;
        height: 230px;
        top: 10px;
        right: 20px;
    }

    .er-shape-left {
        width: 170px;
        height: 170px;
        top: 80px;
        left: 10px;
    }

    .er-shape-right {
        width: 170px;
        height: 170px;
        bottom: 55px;
        right: 20px;
    }

    .er-shape-bottom {
        width: 180px;
        height: 180px;
    }

    .er-phone-mockup {
        width: 150px;
        height: 310px;
        border-radius: 26px;
        border-width: 5px;
    }

    .er-phone-front {
        left: 45px;
        top: 135px;
    }

    .er-phone-back {
        left: 165px;
        top: 200px;
    }

    .er-badge {
        font-size: 14px;
        padding: 10px 18px;
    }

    .er-badge-purple {
        left: 78px;
        top: 285px;
    }

    .er-badge-orange {
        left: 185px;
        top: 355px;
    }

    .er-icon-container {
        width: 58px;
        height: 58px;
        min-width: 58px;
    }

    .er-icon-container i,
    .er-icon {
        font-size: 22px;
    }

    .er-step-content h4 {
        font-size: 18px;
    }

    .er-step-content p {
        font-size: 14px;
    }
}
