/* ==========================================================
   GROWTH PACKAGE PAGE — CSS (Redesigned)
   Theme: Green + Blue (Same as Cogentix)
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=JetBrains+Mono:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --gr-bg:        #0a1f3d;
    --gr-surface:   #121a2b;
    --gr-border:    #24304a;
    --gr-text:      #e7edf6;
    --gr-text-dim:  #8b97ad;
    --gr-green:     #7ee787;
    --gr-green-2:   #539E10;
    --gr-cyan:      #5fe6d6;
    --gr-blue:      #4a9eff;
    --gr-amber:     #ffb86c;
}

/* ==========================================================
   SECTION 1: HERO — Split layout with visual panel
   ========================================================== */

.gr-hero-section {
    position: relative;
    padding: 170px 0 100px 0;
    min-height: 660px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a1f3d 0%, #143d5c 40%, #1d5c4a 70%, #0a1a0f 100%);
    overflow: hidden;
    isolation: isolate;
}

.gr-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 30% 40%, #000 0%, transparent 80%);
            mask-image: radial-gradient(ellipse 90% 70% at 30% 40%, #000 0%, transparent 80%);
    z-index: 0;
}

.gr-hero-section::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(45, 122, 74, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.gr-hero-section .container {
    position: relative;
    z-index: 1;
}

.gr-hero-content {
    max-width: 640px;
    position: relative;
}

/* Tag */
.gr-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 600;
    color: #7ee787;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(126, 231, 135, 0.08);
    border: 1px solid rgba(126, 231, 135, 0.25);
    margin-bottom: 26px;
}

.gr-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7ee787;
    box-shadow: 0 0 12px rgba(126, 231, 135, 0.9);
    animation: grDotPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes grDotPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.25); }
}

/* Title */
.gr-hero-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.08;
    color: #ffffff;
    margin: 0 0 24px;
    letter-spacing: -1.5px;
}

.gr-title-gradient {
    display: block;
    background: linear-gradient(90deg, #7ee787 0%, #5fe6d6 60%, #4a9eff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    padding-bottom: 6px;
}

.gr-title-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #7ee787, #5fe6d6);
    border-radius: 4px;
}

/* Subtitle */
.gr-hero-subtext {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
    color: #b8c9d8;
    max-width: 580px;
    margin: 0 0 32px;
}

/* Feature Pills */
.gr-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 38px;
}

.gr-pill {
    display: inline-flex;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #c8d4e2;
    padding: 7px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.gr-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7ee787;
    margin-right: 8px;
    flex-shrink: 0;
}

.gr-pill:hover {
    background: rgba(126, 231, 135, 0.12);
    border-color: rgba(126, 231, 135, 0.35);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Hero CTA Buttons */
.gr-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.gr-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0a1f3d;
    background: linear-gradient(135deg, #7ee787, #5fe6d6);
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 8px 24px rgba(126, 231, 135, 0.25);
    position: relative;
    overflow: hidden;
}

.gr-btn-primary span {
    position: relative;
    z-index: 1;
}

.gr-btn-primary svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.gr-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(126, 231, 135, 0.4);
    color: #0a1f3d;
}

.gr-btn-primary:hover svg {
    transform: translateX(5px);
}

.gr-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    padding: 16px 32px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.35s ease;
}

.gr-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Hero Visual Panel */
.gr-hero-visual {
    position: relative;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding-left: 40px;
}

.gr-visual-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    animation: grCardFloat 6s ease-in-out infinite;
    max-width: 280px;
}

.gr-vc-1 {
    margin-left: 0;
    animation-delay: 0s;
}

.gr-vc-2 {
    margin-left: 60px;
    animation-delay: 1s;
}

.gr-vc-3 {
    margin-left: 20px;
    animation-delay: 2s;
}

@keyframes grCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.gr-vc-label {
    display: block;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #8b97ad;
    margin-bottom: 6px;
}

.gr-vc-value {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #7ee787;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 14px;
}

.gr-vc-bar {
    width: 100%;
    height: 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    position: relative;
}

.gr-vc-bar span {
    display: block;
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, #7ee787, #5fe6d6);
    animation: grBarFill 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transform-origin: left;
}

.gr-vc-bar-alt span {
    background: linear-gradient(90deg, #4a9eff, #5fe6d6);
}

.gr-vc-bar-cyan span {
    background: linear-gradient(90deg, #5fe6d6, #4a9eff);
}

@keyframes grBarFill {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* ==========================================================
   SECTION 2: PRICING BANNER — Centered layout
   ========================================================== */

.gr-pricing-section {
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, #0a1f3d 0%, #143d5c 40%, #1d5c4a 70%, #0a1a0f 100%);
}

.gr-pricing-banner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 44px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    transform: translateY(-50%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border-radius: 4px;
}

.gr-pricing-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7ee787, #5fe6d6, #4a9eff, #7ee787);
    background-size: 200% auto;
    animation: grBorderShift 4s linear infinite;
}

@keyframes grBorderShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.gr-pricing-left {
    flex: 1;
    min-width: 260px;
}

.gr-pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 600;
    color: #7ee787;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.gr-pricing-badge::before {
    content: '';
    width: 20px;
    height: 2px;
    background: #7ee787;
    border-radius: 2px;
}

.gr-pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.gr-amount-main {
    font-family: "Space Grotesk", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1.5px;
    line-height: 1;
}

.gr-amount-period {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #8b97ad;
}

.gr-pricing-note {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #8b97ad;
    margin: 0;
    font-style: italic;
}

.gr-pricing-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(126, 231, 135, 0.3), transparent);
    flex-shrink: 0;
}

.gr-pricing-right {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.gr-pricing-tagline {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #c8d4e2;
    margin: 0;
    font-style: italic;
    line-height: 1.65;
    max-width: 420px;
}

.gr-pricing-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0a1f3d;
    background: linear-gradient(135deg, #7ee787, #5fe6d6);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(126, 231, 135, 0.25);
}

.gr-pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(126, 231, 135, 0.4);
    color: #0a1f3d;
}

.gr-pricing-cta svg {
    transition: transform 0.3s ease;
}

.gr-pricing-cta:hover svg {
    transform: translateX(4px);
}

/* ==========================================================
   SECTION 3: WHAT'S INCLUDED — Compact two-column rows
   ========================================================== */

.gr-included-section {
    padding: 100px 0 120px;
    background: linear-gradient(160deg, #0a1f3d 0%, #123a52 40%, #1d5c4a 70%, #0a0e17 100%);
    position: relative;
    overflow: hidden;
}

.gr-included-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(126, 231, 135, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(95, 230, 214, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 0%, transparent 80%);
            mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 0%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

.gr-included-section .container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
}

/* Header */
.gr-included-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.gr-included-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 600;
    color: #7ee787;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(126, 231, 135, 0.08);
    border: 1px solid rgba(126, 231, 135, 0.2);
    margin-bottom: 18px;
}

.gr-included-tag::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7ee787;
    box-shadow: 0 0 10px rgba(126, 231, 135, 0.8);
    animation: grDotPulse 2s ease-in-out infinite;
}

.gr-included-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #eef3fa;
    margin: 0 0 16px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.gr-included-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #a9b7cc;
    margin: 0;
}

/* Cards Grid — two-column row style */
.gr-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1160px;
    margin: 0 auto;
}

/* ==========================================================
   CARD — Horizontal accent design
   ========================================================== */

.gr-card {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease, 
                background 0.35s ease, border-color 0.35s ease, 
                box-shadow 0.35s ease;
}

.gr-card.gr-card-visible {
    opacity: 1;
    transform: translateY(0);
}

.gr-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1.5px;
    background: linear-gradient(135deg, 
        rgba(126, 231, 135, 0.5), 
        rgba(95, 230, 214, 0.3) 50%,
        rgba(74, 158, 255, 0.5)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gr-card:hover::before {
    opacity: 1;
}

.gr-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(126, 231, 135, 0.2);
    box-shadow: 
        0 16px 36px rgba(0, 0, 0, 0.35),
        0 0 24px rgba(126, 231, 135, 0.08);
}

/* Left accent bar */
.gr-card-accent {
    width: 4px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #7ee787, #5fe6d6, #4a9eff);
    opacity: 0.35;
    transition: opacity 0.35s ease, width 0.35s ease;
}

.gr-card:hover .gr-card-accent {
    opacity: 1;
    width: 6px;
}

.gr-card-content {
    padding: 24px 26px;
    position: relative;
    flex: 1;
}

.gr-card-index {
    display: inline-block;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    color: rgba(126, 231, 135, 0.5);
    letter-spacing: 1px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.gr-card:hover .gr-card-index {
    color: #7ee787;
}

.gr-card-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #eef3fa;
    margin: 0 0 10px;
    line-height: 1.35;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.gr-card:hover .gr-card-title {
    color: #7ee787;
}

.gr-card-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #b8c4d8;
    margin: 0;
    transition: color 0.3s ease;
}

.gr-card:hover .gr-card-text {
    color: #d0dae8;
}

/* ==========================================================
   SECTION 4: WHO IT'S FOR — Horizontal split
   ========================================================== */

.gr-who-section {
    padding: 100px 0;
    background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 30%, #bbf7d0 60%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.gr-who-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.05) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
    animation: grGridPulse 8s ease-in-out infinite;
}

@keyframes grGridPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.gr-who-section .container {
    position: relative;
    z-index: 1;
}

.gr-who-wrapper {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(5, 150, 105, 0.15);
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease;
}

.gr-who-wrapper:hover {
    transform: translateY(-6px);
}

.gr-who-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #059669, #34d399, #10b981, #5fe6d6, #059669);
    background-size: 300% auto;
    animation: grBorderShift 4s linear infinite;
}

.gr-who-accent {
    flex-shrink: 0;
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #059669, #10b981);
    position: relative;
    overflow: hidden;
}

.gr-who-accent::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 60%);
}

.gr-who-icon {
    font-size: 56px;
    position: relative;
    z-index: 1;
    animation: grIconFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes grIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.gr-who-content {
    padding: 48px 48px 48px 44px;
    text-align: left;
}

.gr-who-label {
    display: inline-block;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #059669;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.gr-who-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #064e3b;
    margin: 0 0 16px;
    line-height: 1.2;
}

.gr-who-title span {
    background: linear-gradient(135deg, #059669, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gr-who-text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 24px;
    max-width: 560px;
}

.gr-who-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gr-who-tag {
    display: inline-flex;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #059669;
    padding: 7px 18px;
    border-radius: 50px;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
    transition: all 0.3s ease;
}

.gr-who-tag:hover {
    background: rgba(5, 150, 105, 0.15);
    transform: translateY(-2px);
}

/* ==========================================================
   SECTION 5: CTA BANNER
   ========================================================== */

.gr-cta-section {
    padding: 80px 0;
    background: #ffffff;
}

.gr-cta-banner {
    background: linear-gradient(135deg, #6979c2 0%, #045043 100%);
    border-radius: 24px;
    padding: 56px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    color: #ffffff;
    box-shadow: 0 20px 60px rgba(4, 24, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.gr-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(126, 231, 135, 0.15), transparent 70%);
    border-radius: 50%;
    animation: grCtaFloat 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes grCtaFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.2); }
}

.gr-cta-content {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 280px;
}

.gr-cta-banner h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.25;
}

.gr-cta-banner p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    max-width: 560px;
}

.gr-cta-action {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.gr-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #041800;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.gr-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #7ee787, #5fe6d6);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.gr-cta-btn:hover {
    color: #041800;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(126, 231, 135, 0.4);
}

.gr-cta-btn:hover::before {
    transform: translateX(0);
}

.gr-cta-btn svg {
    transition: transform 0.3s ease;
}

.gr-cta-btn:hover svg {
    transform: translateX(5px);
}

/* ==========================================================
   RESPONSIVE — All Sections
   ========================================================== */

@media (max-width: 1100px) {
    .gr-hero-title {
        font-size: 50px;
    }
    
    .gr-hero-visual {
        padding-left: 0;
    }
    
    .gr-vc-2 { margin-left: 40px; }
    .gr-vc-3 { margin-left: 10px; }
}

@media (max-width: 992px) {
    .gr-hero-title {
        font-size: 44px;
    }
    
    .gr-hero-section {
        padding: 150px 0 80px;
        min-height: auto;
    }
    
    .gr-hero-visual {
        display: none;
    }
    
    .gr-hero-content {
        max-width: 720px;
    }
    
    .gr-pricing-banner {
        padding: 36px 40px;
        transform: translateY(-30%);
    }
    
    .gr-amount-main {
        font-size: 34px;
    }
    
    .gr-included-title {
        font-size: 38px;
    }
    
    .gr-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .gr-who-wrapper {
        flex-direction: column;
    }
    
    .gr-who-accent {
        width: 100%;
        height: 120px;
    }
    
    .gr-who-content {
        padding: 36px 32px;
    }
    
    .gr-who-title {
        font-size: 28px;
    }
    
    .gr-cta-banner h2 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .gr-hero-section {
        padding: 130px 0 70px;
    }
    
    .gr-hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .gr-title-gradient::after {
        width: 60px;
        height: 3px;
    }
    
    .gr-hero-subtext {
        font-size: 15px;
    }
    
    .gr-hero-pills {
        gap: 8px;
    }
    
    .gr-pill {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .gr-btn-primary,
    .gr-btn-ghost {
        padding: 14px 26px;
        font-size: 14px;
    }
    
    .gr-pricing-banner {
        padding: 28px 24px;
        transform: translateY(-20%);
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .gr-pricing-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(126, 231, 135, 0.3), transparent);
    }
    
    .gr-amount-main {
        font-size: 28px;
    }
    
    .gr-amount-period {
        font-size: 13px;
    }
    
    .gr-pricing-tagline {
        font-size: 14px;
    }
    
    .gr-included-section {
        padding: 70px 0 90px;
    }
    
    .gr-included-title {
        font-size: 28px;
    }
    
    .gr-included-subtitle {
        font-size: 14.5px;
    }
    
    .gr-card-content {
        padding: 20px 22px;
    }
    
    .gr-card-title {
        font-size: 16px;
    }
    
    .gr-card-text {
        font-size: 13.5px;
    }
    
    .gr-who-section {
        padding: 70px 0;
    }
    
    .gr-who-content {
        padding: 30px 26px;
    }
    
    .gr-who-title {
        font-size: 24px;
    }
    
    .gr-who-text {
        font-size: 15px;
    }
    
    .gr-cta-banner {
        padding: 40px 32px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .gr-cta-banner h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .gr-hero-title {
        font-size: 28px;
    }
    
    .gr-hero-tag {
        font-size: 10px;
        padding: 6px 14px;
        letter-spacing: 1.5px;
    }
    
    .gr-pricing-banner {
        padding: 24px 20px;
    }
    
    .gr-amount-main {
        font-size: 24px;
    }
    
    .gr-pricing-cta {
        padding: 12px 22px;
        font-size: 14px;
    }
    
    .gr-included-title {
        font-size: 24px;
    }
    
    .gr-card-content {
        padding: 18px;
    }
    
    .gr-card-title {
        font-size: 15px;
    }
    
    .gr-who-accent {
        height: 100px;
    }
    
    .gr-who-icon {
        font-size: 44px;
    }
    
    .gr-who-title {
        font-size: 22px;
    }
    
    .gr-cta-banner h2 {
        font-size: 20px;
    }
    
    .gr-cta-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
    .gr-visual-card,
    .gr-who-icon,
    .gr-cta-banner::before,
    .gr-who-wrapper::before,
    .gr-pricing-banner::before,
    .gr-tag-dot,
    .gr-included-tag::before,
    .gr-vc-bar span {
        animation: none !important;
    }
    
    .gr-card {
        opacity: 1;
        transform: none;
    }
}