* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Header */
header {
    background: transparent;
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* Hero Section */
.hero {
    background: 
                url('assets/Banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 0 200px;
    position: relative;
    overflow: visible;
}

.hero-wrapper {
    position: relative;
    height: 250px;
    min-height: 5%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;            
    z-index: 0;
    
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-top: 80px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0px;
}

.hero-text .subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: bold;
    opacity: 0.9;
}

.hero-text p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.85;
}

/* Form Card */
.form-card {
    background: #1f2937;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(31, 41, 55, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: -500px;
    right: 20px;
    z-index: 10;
    width: 100%;
    max-width: 450px;
}

.form-card h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
}

.form-card .form-subtitle {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: white;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #374151;
    background: #ffffff;
    color: white;
    border-radius: 4px;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background: #f97316;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #ea580c;
}

.form-footer {
    margin-top: 20px;
    padding: 20px;
    
    border-radius: 8px;
}

.consent-heading {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.consent-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.consent-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.consent-label {
    color: white;
    font-size: 12px;
    line-height: 1.6;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

.consent-text-line2 {
    display: block;
}

.privacy-link {
    color: #f97316;
    text-decoration: underline;
    cursor: pointer;
}

.privacy-link:hover {
    color: #fb923c;
}

/* Start Building Section */
.start-building {
    background: #ffffff;
    padding: 100px 0 80px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.start-building .section-header {
    text-align: left;
}

.start-building .section-header h2 {
    margin-bottom: -5px;
}

.start-building .section-header h2:last-child {
    margin-top: 0;
}

.section-header h2 {
    font-size: 25px;
    color: #1f2937;
}

.section-header .highlight {
    color: #f97316;
    font-size: 20px;
}

.features .highlight2 {    
    font-size: 14px;
    font-weight: bold;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    max-width: 600px;
}

.feature-item {
    display: flex;
    gap: 10px;
}

.feature-item::before {
    content: '✓';
    color: #f97316;
    font-weight: bold;
    font-size: 18px;
}

.feature-item p {
    color: #4b5563;
    font-size: 14px;
}

/* Server Options */
.server-options {
    padding: 80px 0 100px;
    background: #e9f6fd;
}

.server-options .section-header p {
    color: #6b7280;
    font-size: 14px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    perspective: 1000px;
    height: 100%;
}

.pricing-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover .pricing-card-inner {
    transform: rotateY(180deg);
}

.pricing-card-front,
.pricing-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 8px;
    overflow: hidden;
    transform-style: preserve-3d;
}

.pricing-card-back {
    transform: rotateY(180deg);
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.pricing-card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
    z-index: 0;
}

.pricing-card-back > * {
    position: relative;
    z-index: 1;
}

.pricing-card.purple .pricing-card-back {
    background-image: url('assets/Purple-Large.png');
}

.pricing-card.orange .pricing-card-back {
    background-image: url('assets/Orange-Large.png');
}

.pricing-card.green .pricing-card-back {
    background-image: url('assets/Green-Large.png');
}

.pricing-card.gold .pricing-card-back {
    background-image: url('assets/Yellow-Large.png');
}

.pricing-card.blue .pricing-card-back {
    background-image: url('assets/Blue-Large.png');
}

.pricing-card-front {
    display: flex;
    flex-direction: column;
    transform: rotateY(0deg);
    backface-visibility: hidden;
}

.pricing-header {
    padding: 20px 20px 40px;
    position: relative;
    color: white;
    min-height: 120px;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    backface-visibility: hidden;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 60px;
    background-image: url('assets/white_server.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.pricing-starting {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-top: 0;
}

.pricing-card.purple .pricing-header {
    background: 
                url('assets/Purple-Top.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pricing-card.orange .pricing-header {
    background: 
                url('assets/OrangeTop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pricing-card.green .pricing-header {
    background: 
                url('assets/GreenTop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pricing-card.gold .pricing-header {
    background: 
                url('assets/YellowTop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pricing-card.blue .pricing-header {
    background: 
                url('assets/BlueTop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pricing-body {
    padding: 0 20px 30px;
    background: white;
    flex: 1;
    position: relative;
    backface-visibility: hidden;
}

.pricing-price-box {
    background: white;
    border-radius: 8px;
    padding: 10px 16px;
    margin: -40px 20px 20px auto;
    position: relative;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: fit-content;
    max-width: 180px;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.pricing-price {
    font-size: 25px;
    font-weight: 700;
    color: #f97316;
    line-height: 1;
    margin: 0;
}

.pricing-period {
    font-size: 14px;
    color: #6b7280;
    margin-top: 5px;
    font-weight: 400;
}

.pricing-body .pricing-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
    margin-top: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.pricing-card-back h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.pricing-card-back p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.pricing-card-back ul {
    list-style: none;
    margin-top: 20px;
}

.pricing-card-back ul li {
    padding: 8px 0;
    color: #ffffff;
    font-size: 14px;
    display: flex;
    align-items: start;
    gap: 8px;
}

.pricing-card-back ul li::before {
    content: '✓';
    color: #ffffff;
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-features {
    list-style: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.pricing-features li {
    padding: 8px 0;
    color: #4b5563;
    font-size: 14px;
    display: flex;
    align-items: start;
    gap: 8px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.pricing-features li::before {
    content: '✓';
    color: #f97316;
    font-weight: bold;
}

/* Additional pricing cards */
.pricing-grid-small {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.pricing-grid-small .pricing-card {
    flex: 0 0 calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
    min-width: 0;
    position: relative;
    min-height: 500px;
}

.pricing-grid-small .pricing-card-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* CTA Section */
.cta-section {
    background-image: url('assets/BG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn-secondary {
    background: #f97316;
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #ea580c;
}

/* How it Works */
.how-it-works {
    padding: 80px 0;
    background: #f7f7f7;
}

.how-it-works .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works .section-header h2 {
    color: #4b5563;
    font-size: 25px;
    font-weight: 600;
    margin: 0;
}

.steps-wrapper {
    margin-bottom: 60px;
    position: relative;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 25px;
    left: calc(16.67% + 25px);
    width: calc(66.66% - 50px);
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #d1d5db 0px,
        #d1d5db 4px,
        transparent 4px,
        transparent 8px
    );
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.step-number-circle {
    width: 50px;
    height: 50px;
    background: #000000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.step-card {
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    width: 100%;
    max-width: 200px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: block;
}

.step-card-text {
    font-size: 14px;
    color: #4b5563;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    margin-top: 70px;
    flex: 0 0 auto;
    align-self: center;
}

.connector-line {
    flex: 1;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #d1d5db 0px,
        #d1d5db 4px,
        transparent 4px,
        transparent 8px
    );
    max-width: 60px;
}

.connector-arrow {
    width: 24px;
    height: 24px;
    margin: 0 5px;
    flex-shrink: 0;
}

.trial-end-section {
    margin-top: 60px;
    text-align: center;
}

.trial-separator {
    display: none;
}

.trial-end-title {
    font-size: 20px;
    color: #4b5563;
    font-weight: 600;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.trial-end-title::before,
.trial-end-title::after {
    content: '';
    flex: 1;
    max-width: 200px;
    height: 3px;
    background: linear-gradient(
        to right,
        transparent 0%,
        #7ca6da 20%,
        #7ca6da 80%,
        transparent 100%
    );
}

.trial-end-title::before {
    background: linear-gradient(
        to right,
        transparent 0%,
        #d1d5db 20%,
        #d1d5db 80%,
        transparent 100%
    );
}

.trial-end-title::after {
    background: linear-gradient(
        to left,
        transparent 0%,
        #d1d5db 20%,
        #d1d5db 80%,
        transparent 100%
    );
}

.trial-end-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1000px;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trial-end-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.trial-bullet-icon {
    color: #f97316;
    font-size: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* What's Included */
.whats-included {
    padding: 80px 0;
    background: white;
}

.whats-included-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.whats-included-header {
    text-align: left;
}

.whats-included-header h2 {
    font-size: 32px;
    color: #1f2937;
    font-weight: 600;
    margin: 0;
}

.whats-included-subtitle {
    font-size: 16px;
    color: #4b5563;
    font-weight: 500;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-card {
    background: #e0f2fe;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

.benefit-text {
    font-size: 14px;
    color: #1f2937;
    margin: 0;
    line-height: 1.5;
}

.more-icon {
    display: none;
}

/* After the Trial */
.after-trial {
    padding: 80px 0;
    background: white;
}

.after-trial-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.after-trial-header {
    text-align: left;
}

.after-trial-header h2 {
    font-size: 32px;
    color: #1f2937;
    font-weight: 600;
    margin: 0;
}

.after-trial-subtitle {
    font-size: 16px;
    color: #4b5563;
    margin: 0;
    font-weight: 500;
}

.after-trial-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-separator {
    padding: 40px 0;
    background: white;
}

.separator-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.separator-line {
    flex: 1;
    height: 1px;
    background: #bfdbfe;
    max-width: 200px;
}

.separator-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.trial-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.trial-option {
    background: #e0f2fe;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trial-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trial-icon-main {
    width: 80px;
    height: 80px;
    position: relative;
    z-index: 1;
}

.trial-icon-overlay {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    z-index: 2;
}

.trial-icon-overlay-check {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: #f97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    z-index: 2;
}

.trial-option-text {
    font-size: 14px;
    color: #1f2937;
    margin: 0;
    line-height: 1.5;
}

.pricing-note {
    text-align: center;
    margin-top: 20px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note p {
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-question {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    cursor: pointer;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #f97316;
}

.faq-item.active .faq-question {
    border-bottom-color: #f97316;
}

.faq-icon-wrapper {
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #f97316;
    color: #f97316;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    transition: all 0.3s ease;
    position: relative;
}

.faq-icon-circle::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('assets/Plus.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

.faq-item.active .faq-icon-circle {
    background: #f97316;
    border: 2px solid #f97316;
    color: white;
}

.faq-item.active .faq-icon-circle::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('assets/Minus.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;    
}

.faq-question h3 {
    font-size: 16px;
    color: #1f2937;
    font-weight: 500;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: #f97316;
}

.faq-answer {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    padding: 0 0 15px 39px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 15px 0 15px 39px;
}

.faq-answer p {
    margin: 0;
}

/* Final CTA */
.final-cta {
    background-image: url('assets/Btm-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.final-cta h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 16px;
    color: white;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
footer {
    background: #111827;
    padding: 40px 0 20px;
    color: #9ca3af;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 300px;
    height: 100px;
    background-image: url('assets/Btm-logo-BG.png');
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
}

footer > * {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 30px;
    font-size: 14px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #374151;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 968px) {
    .container {
        padding: 0 15px;
    }

    header {
        padding: 15px 0;
    }

    .logo-img {
        height: 35px;
    }

    .form-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 40px auto 0;
        max-width: 100%;
    }

    .hero {
        padding: 100px 0 80px;
        background-attachment: scroll;
    }

    .hero-wrapper {
        height: auto;
    }

    .hero-text {
        margin-top: 60px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text .subtitle {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .start-building {
        padding: 60px 0;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .steps-container::before {
        display: none;
    }

    .step-connector {
        transform: rotate(90deg);
        margin: 10px 0;
        padding: 0;
    }

    .connector-line {
        max-width: 40px;
    }

    .trial-end-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pricing-grid-small {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pricing-grid-small .pricing-card {
        flex: none;
        max-width: 100%;
        min-height: auto;
    }

    .pricing-grid-small .pricing-card-inner {
        position: relative;
        min-height: 500px;
    }

    .steps,
    .process-details {
        grid-template-columns: 1fr;
    }

    .whats-included-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .after-trial-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trial-options {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }

    header {
        padding: 12px 0;
    }

    .logo-img {
        height: 30px;
    }

    .hero {
        padding: 80px 0 60px;
        background-attachment: scroll;
    }

    .hero-wrapper {
        height: auto;
    }

    .hero-text {
        margin-top: 50px;
    }

    .hero-text h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-text .subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 13px;
    }

    .form-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 30px auto 0;
        max-width: 100%;
        padding: 25px 20px;
    }

    .form-card h3 {
        font-size: 18px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 10px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .start-building {
        padding: 50px 0;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .features h2 {
        font-size: 16px;
    }

    .server-options {
        padding: 50px 0;
    }

    .pricing-grid,
    .pricing-grid-small {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-grid-small .pricing-card {
        flex: none;
        max-width: 100%;
        min-height: auto;
    }

    .pricing-grid-small .pricing-card-inner {
        position: relative;
        min-height: 350px;
    }

    .pricing-card-inner {
        min-height: 350px;
    }

    /* Allow tap to flip on mobile */
    .pricing-card:active .pricing-card-inner {
        transform: rotateY(180deg);
    }

    .how-it-works {
        padding: 50px 0;
    }

    .how-it-works .section-header {
        margin-bottom: 40px;
    }

    .how-it-works .section-header h2 {
        font-size: 20px;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .steps-container::before {
        display: none;
    }

    .step-connector {
        transform: rotate(90deg);
        margin: 10px 0;
        padding: 0;
    }

    .connector-line {
        max-width: 30px;
    }

    .step-card {
        max-width: 100%;
        padding: 20px 15px;
    }

    .step-card-icon {
        width: 50px;
        height: 50px;
    }

    .trial-end-section {
        margin-top: 40px;
    }

    .trial-end-title {
        font-size: 18px;
    }

    .trial-end-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .trial-end-list li {
        font-size: 13px;
    }

    .whats-included {
        padding: 50px 0;
    }

    .whats-included-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whats-included-header h2 {
        font-size: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-card {
        padding: 25px 15px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
    }

    .section-separator {
        padding: 30px 0;
    }

    .after-trial {
        padding: 50px 0;
    }

    .after-trial-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .after-trial-header h2 {
        font-size: 20px;
    }

    .after-trial-subtitle {
        font-size: 14px;
    }

    .trial-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .trial-option {
        padding: 25px 15px;
    }

    .trial-icon-main {
        width: 60px;
        height: 60px;
    }

    .pricing-note {
        font-size: 13px;
        margin-top: 20px;
    }

    .faq-section {
        padding: 50px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-answer {
        font-size: 13px;
        padding: 0 0 15px 39px;
    }

    .faq-item.active .faq-answer {
        padding: 15px 0 15px 39px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .cta-section p {
        font-size: 14px;
    }

    .final-cta {
        padding: 60px 0;
    }

    .final-cta h2 {
        font-size: 28px;
    }

    .final-cta p {
        font-size: 14px;
    }

    footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

