/* Copyright Page Specific Styles - Modern & Professional */
.copyright-page {
    padding-bottom: 0;
}

/* Page Hero */
.copy-hero {
    position: relative;
    height: 480px;
    background: #0f0524;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.copy-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/banner.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.35;
    z-index: 1;
}

.copy-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 5, 36, 0.8) 0%, rgba(58, 21, 128, 0.6) 100%);
}

.copy-hero .container {
    position: relative;
    z-index: 2;
}

.copy-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.copy-hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
}

/* Section Common Header */
.copy-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.copy-section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.copy-section-header p {
    font-size: 18px;
    color: #666;
}

/* Three Pillars Section */
.pillars-section {
    padding: 120px 0;
    background: #fff;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pillar-card {
    padding: 60px 45px;
    background: #fbfaff;
    border-radius: 20px;
    border: 1px solid rgba(124, 58, 237, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pillar-card:hover {
    transform: translateY(-15px);
    background: #fff;
    box-shadow: 0 40px 80px rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.2);
}

.pillar-icon {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.08);
}

.pillar-card:hover .pillar-icon {
    background: #7c3aed;
}

.pillar-icon svg {
    width: 44px;
    height: 44px;
}

.pillar-card:hover .pillar-icon svg path {
    fill: #fff !important;
}

.pillar-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.pillar-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Detailed Feature Section */
.feature-detail-section {
    padding: 120px 0;
    background: #fcfbfe;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-bottom: 100px;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row.reverse {
    flex-direction: row-reverse;
}

.detail-visual {
    flex: 0 0 540px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-content {
    flex: 1;
}

.detail-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #7c3aed;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.detail-tag::before {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, transparent);
    border-radius: 2px;
}

.detail-content h3 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.detail-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 30px;
}

.detail-list {
    list-style: none;
}

.detail-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.detail-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #7c3aed;
    border-radius: 50%;
}

/* ROI Stats Section */
.roi-section {
    padding: 120px 0;
    background: #fff;
}

.roi-stats-box {
    background: #0f0524;
    border-radius: 60px;
    padding: 100px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.roi-stats-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.2), transparent);
}

.roi-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.roi-num {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, #c084fc 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.roi-label {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    letter-spacing: 1px;
}
